source: sipes/modules_contrib/ctools/includes/page-wizard.menu.inc @ a8b1f3f

stableversion-3.0
Last change on this file since a8b1f3f was 2efe680, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se actualizo el modulo

  • Propiedad mode establecida a 100755
File size: 748 octetos
Línea 
1<?php
2
3/**
4 * @file
5 * Contains menu item registration for the page manager page wizards tool.
6 */
7
8function ctools_page_wizard_menu(&$items) {
9  if (!module_exists('page_manager')) {
10    return;
11  }
12
13  $base = array(
14    'access arguments' => array('use page manager'),
15    'file' => 'includes/page-wizard.inc',
16    'type' => MENU_CALLBACK,
17  );
18
19  $items['admin/build/pages/wizard'] = array(
20    'title' => 'Wizards',
21    'page callback' => 'page_manager_page_wizard_list',
22    'page arguments' => array(4),
23    'weight' => -5,
24    'type' => MENU_LOCAL_TASK,
25  ) + $base;
26
27  $items['admin/build/pages/wizard/%'] = array(
28    'title' => 'Wizard',
29    'page callback' => 'page_manager_page_wizard',
30    'page arguments' => array(4),
31  ) + $base;
32}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.