You are here

function closeblock_menu in Close Block 6

Same name and namespace in other branches
  1. 7 closeblock.module \closeblock_menu()

Implements hook_menu().

File

./closeblock.module, line 37
Add close button to blocks.

Code

function closeblock_menu() {
  $items = array();
  $items['closeblock/%/%'] = array(
    'title' => 'Closeblock',
    'page callback' => 'closeblock_ajax_callback',
    'page arguments' => array(
      1,
      2,
    ),
    'access arguments' => array(
      'closeblock',
    ),
  );
  return $items;
}