clipbucket/upload/includes/admin.functions.php
Arslan Hassan 3ae9a56773 ADDED:New Player System
ADDED:Live Player Size Editor
ADDED:JQUERYUI
UPDATED:ADS SYSTEM
REMOVED :Unwanted JS files
Added : ClipBucket Modules as Plugins
Added : Jwplayer,ClipBucket and flowplayer
2009-10-03 10:38:28 +00:00

22 lines
No EOL
407 B
PHP

<?php
/**
* All Functions that
* are used by admin,
* registered here
*/
//Registering Admin Options for Watch Video
if(has_access('admin_access',TRUE))
{
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');
}
?>