2009-09-28 05:23:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* All Functions that
|
|
|
|
* are used by admin,
|
|
|
|
* registered here
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
//Registering Admin Options for Watch Video
|
|
|
|
|
|
|
|
if(has_access('admin_access',TRUE))
|
|
|
|
{
|
2009-10-03 10:38:28 +00:00
|
|
|
function show_video_admin_link($data)
|
|
|
|
{
|
|
|
|
echo '<a href="'.ADMIN_BASEURL.'/edit_video.php?video='.$data['videoid'].'">Edit Video</a>';
|
|
|
|
}
|
|
|
|
|
|
|
|
register_anchor_function('show_video_admin_link','watch_admin_options');
|
2009-09-28 05:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|