You are here

public function RoomsBookingUIController::hook_menu in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 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

modules/rooms_booking/rooms_booking.admin.inc, line 23
Rooms editing UI.

Class

RoomsBookingUIController
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' => 'Bookings',
    'description' => 'Add edit and update bookings.',
    'page callback' => 'system_admin_menu_block_page',
    'access arguments' => array(
      'access administration pages',
    ),
    'file path' => drupal_get_path('module', 'system'),
    'file' => 'system.admin.inc',
    'weight' => 10,
  );

  // Change the add page menu to multiple types of entities.
  $items[$this->path . '/add'] = array(
    'title' => 'Add a Booking',
    'description' => 'Add a new Booking',
    'page callback' => 'rooms_booking_add_page',
    'access callback' => '_rooms_booking_add_access',
    'type' => MENU_NORMAL_ITEM,
    'weight' => 20,
    'file' => 'rooms_booking.admin.inc',
    'file path' => drupal_get_path('module', $this->entityInfo['module']),
  );

  // Add menu items to add each different type of room.
  foreach (rooms_booking_get_types() as $type) {
    $items[$this->path . '/add/' . $type->type] = array(
      'title' => 'Add @booking_type',
      'title arguments' => array(
        '@booking_type' => $type->label,
      ),
      'page callback' => 'rooms_booking_create_form_wrapper',
      'page arguments' => array(
        $type->type,
      ),
      'access callback' => 'rooms_booking_access',
      'access arguments' => array(
        'create',
        rooms_booking_create(array(
          'type' => $type->type,
          'uid' => 0,
        )),
      ),
      'file' => 'rooms_booking.admin.inc',
      'file path' => drupal_get_path('module', $this->entityInfo['module']),
    );
  }

  // Loading and editing Rooms entities.
  $items[$this->path . '/booking/' . $wildcard] = array(
    'page callback' => 'rooms_booking_form_wrapper',
    'page arguments' => array(
      $id_count + 1,
    ),
    'access callback' => 'rooms_booking_access',
    'access arguments' => array(
      'update',
      $id_count + 1,
    ),
    'weight' => 0,
    'context' => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE,
    'file' => 'rooms_booking.admin.inc',
    'file path' => drupal_get_path('module', $this->entityInfo['module']),
  );
  $items[$this->path . '/booking/' . $wildcard . '/edit'] = array(
    'title' => 'Edit',
    'type' => MENU_DEFAULT_LOCAL_TASK,
    'weight' => -10,
    'context' => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE,
  );
  $items[$this->path . '/booking/' . $wildcard . '/delete'] = array(
    'title' => 'Delete',
    'page callback' => 'rooms_booking_delete_form_wrapper',
    'page arguments' => array(
      $id_count + 1,
    ),
    'access callback' => 'rooms_booking_access',
    'access arguments' => array(
      'delete',
      $id_count + 1,
    ),
    'type' => MENU_LOCAL_TASK,
    'context' => MENU_CONTEXT_INLINE,
    'weight' => 10,
    'file' => 'rooms_booking.admin.inc',
    'file path' => drupal_get_path('module', $this->entityInfo['module']),
  );

  // Menu item for viewing rooms.
  $items['booking/' . $wildcard] = array(
    'title callback' => 'rooms_booking_page_title',
    'title arguments' => array(
      1,
    ),
    'page callback' => 'rooms_booking_page_view',
    'page arguments' => array(
      1,
    ),
    'access callback' => 'rooms_booking_access',
    'access arguments' => array(
      'view',
      1,
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}