Full ELMS Learning Network documentation
function video_filter_menu
cis7 video_filter.module | video_filter_menu() |
cle7 video_filter.module | video_filter_menu() |
elmsmedia7 video_filter.module | video_filter_menu() |
icor7 video_filter.module | video_filter_menu() |
meedjum_blog7 video_filter.module | video_filter_menu() |
mooc7 video_filter.module | video_filter_menu() |
Implements hook_menu().
File
- sites/
all/ modules/ ulmus/ video_filter/ video_filter.module, line 368 - Video filter is a highly flexible and easy extendable filter module to embed any type of video in your site using a simple tag.
Code
function video_filter_menu() {
$items = array();
$items['video_filter/dashboard/%'] = array(
'title' => 'Videofilter',
'description' => 'Dashboard',
'page callback' => 'video_filter_dashboard_page',
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
'page arguments' => array(2),
'theme callback' => '_video_filter_dashboard_theme',
);
return $items;
}