You are here

function views_gantt_page_alter in Views Gantt 7.2

Implements hook_page_alter().

File

./views_gantt.module, line 364
Module file for Views Gantt

Code

function views_gantt_page_alter(&$page) {
  if (views_gantt_in_dialog()) {
    unset($page['page_top']);
    unset($page['page_bottom']);
    $page['#theme'] = 'views_gantt_page';
  }
}