You are here

function scrolltext_menu in ScrollText 5

Same name and namespace in other branches
  1. 6 scrolltext.module \scrolltext_menu()
  2. 7 scrolltext.module \scrolltext_menu()

Menu callback. Prints a listing of active nodes on the site.

File

./scrolltext.module, line 30
This module used for scrolling text from node title

Code

function scrolltext_menu($may_cache) {
  $items = array();
  $items[] = array(
    'path' => 'admin/settings/scrolltext',
    'title' => t('ScrollText'),
    'callback' => 'drupal_get_form',
    'callback arguments' => array(
      'scrolltext_settings_form',
    ),
    'access' => user_access('administer scrolltext'),
    'description' => t("ScrollText settings"),
  );
  return $items;
}