You are here

function popup_maker_menu in Popup Maker - All popup types 7

File

./popup_maker.module, line 5

Code

function popup_maker_menu() {
  $items = array();
  $items['admin/config/content/popup_maker'] = array(
    'title' => 'Popup Maker',
    'description' => 'Edit Popup Maker settings',
    'page callback' => 'popup_maker_settings_view',
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'popup_maker.admin.inc',
  );
  return $items;
}