public function PollimUIController::hook_menu in Poll Improved 7
Overrides hook_menu() defaults. Main reason for doing this is that parent class hook_menu() is optimized for entity type administration.
Overrides EntityDefaultUIController::hook_menu
File
- ./
pollim.admin.inc, line 21 - Pollim editing UI.
Class
- PollimUIController
- UI controller.
Code
public function hook_menu() {
$items = array();
$id_count = count(explode('/', $this->path));
$wildcard = isset($this->entityInfo['admin ui']['menu wildcard']) ? $this->entityInfo['admin ui']['menu wildcard'] : '%' . $this->entityType;
$items[$this->path] = array(
'title' => 'Improved Polls',
'description' => 'Add edit and update polls.',
'page callback' => 'system_admin_menu_block_page',
'access arguments' => array(
'access administration pages',
),
'file path' => drupal_get_path('module', 'system'),
'file' => 'system.admin.inc',
);
// Change the overview menu type for the list of pollims.
$items[$this->path]['type'] = MENU_LOCAL_TASK;
// Change the add page menu to multiple types of entities
$items[$this->path . '/add'] = array(
'title' => 'Add an Improved Poll',
'description' => 'Add a new Poll',
'page callback' => 'pollim_add_page',
'access callback' => 'pollim_access',
'access arguments' => array(
'edit',
),
'type' => MENU_NORMAL_ITEM,
'weight' => 20,
'file' => 'pollim.admin.inc',
'file path' => drupal_get_path('module', $this->entityInfo['module']),
);
// Add menu items to add each different type of entity.
foreach (pollim_get_types() as $type) {
$items[$this->path . '/add/' . $type->type] = array(
'title' => 'Add ' . $type->label,
'page callback' => 'pollim_form_wrapper',
'page arguments' => array(
pollim_create(array(
'type' => $type->type,
)),
),
'access callback' => 'pollim_access',
'access arguments' => array(
'edit',
'edit ' . $type->type,
),
'file' => 'pollim.admin.inc',
'file path' => drupal_get_path('module', $this->entityInfo['module']),
);
}
// Loading and editing pollim entities
$items[$this->path . '/pollim/' . $wildcard] = array(
'page callback' => 'pollim_form_wrapper',
'page arguments' => array(
$id_count + 1,
),
'access callback' => 'pollim_access',
'access arguments' => array(
'edit',
$id_count + 1,
),
'weight' => 0,
'context' => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE,
'file' => 'pollim.admin.inc',
'file path' => drupal_get_path('module', $this->entityInfo['module']),
);
$items[$this->path . '/pollim/' . $wildcard . '/edit'] = array(
'title' => 'Edit',
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10,
'context' => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE,
);
$items[$this->path . '/pollim/' . $wildcard . '/delete'] = array(
'title' => 'Delete',
'page callback' => 'pollim_delete_form_wrapper',
'page arguments' => array(
$id_count + 1,
),
'access callback' => 'pollim_access',
'access arguments' => array(
'edit',
$id_count + 1,
),
'type' => MENU_LOCAL_TASK,
'context' => MENU_CONTEXT_INLINE,
'weight' => 10,
'file' => 'pollim.admin.inc',
'file path' => drupal_get_path('module', $this->entityInfo['module']),
);
// Menu item for viewing pollims
$items['pollim/' . $wildcard] = array(
//'title' => 'Title',
'title callback' => 'pollim_page_title',
'title arguments' => array(
1,
),
'page callback' => 'pollim_page_view',
'page arguments' => array(
1,
),
'access callback' => 'pollim_access',
'access arguments' => array(
'view',
1,
),
'type' => MENU_CALLBACK,
);
return $items;
}