You are here

function css_editor_menu in CSS Editor 7

Implements hook_menu().

File

./css_editor.module, line 18

Code

function css_editor_menu() {
  $items = array();
  $items['admin/config/user-interface/css-editor'] = array(
    'title' => t('CSS Editor'),
    'description' => t('General settings for custom CSS per theme.'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'css_editor_admin_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
  );
  return $items;
}