You are here

function video_filter_instructions_page in Video Filter 7.3

Creates the instructions page.

1 string reference to 'video_filter_instructions_page'
video_filter_menu in ./video_filter.module
Implements hook_menu().

File

./video_filter.module, line 555

Code

function video_filter_instructions_page() {
  module_invoke('admin_menu', 'suppress');
  $form = drupal_get_form('_video_filter_instructions_form');
  print theme('video_filter_dashboard', array(
    'form' => render($form),
  ));
  exit;
}