You are here

function twig_menu in Twig Input Filter 7

Implements hook_menu().

File

./twig.module, line 10

Code

function twig_menu() {
  return array(
    'admin/structure/twig/enable-field' => array(
      'title' => t('Enable Twig'),
      'page callback' => '_twig_enable_field',
      'page arguments' => array(
        4,
        5,
      ),
      'access arguments' => array(
        'administer site configuration',
      ),
      'file' => 'twig.admin.inc',
      'type' => MENU_CALLBACK,
    ),
  );
}