You are here

ctools_access_ruleset.inc in Chaos Tool Suite (ctools) 6

Same filename and directory in other branches
  1. 7 ctools_access_ruleset/plugins/export_ui/ctools_access_ruleset.inc

File

ctools_access_ruleset/plugins/export_ui/ctools_access_ruleset.inc
View source
<?php

$plugin = array(
  'schema' => 'ctools_access_ruleset',
  'access' => 'administer ctools access ruleset',
  'menu' => array(
    'menu item' => 'ctools-rulesets',
    'menu title' => 'Custom access rulesets',
    'menu description' => 'Add, edit or delete custom access rulesets for use with Panels and other systems that utilize CTools content plugins.',
  ),
  'title singular' => t('ruleset'),
  'title singular proper' => t('Ruleset'),
  'title plural' => t('rulesets'),
  'title plural proper' => t('Rulesets'),
  'handler' => array(
    'class' => 'ctools_access_ruleset_ui',
    'parent' => 'ctools_export_ui',
  ),
  'use wizard' => TRUE,
  'form info' => array(
    'order' => array(
      'basic' => t('Basic information'),
      'context' => t('Contexts'),
      'rules' => t('Rules'),
    ),
  ),
);