You are here

function ctools_permission in Chaos Tool Suite (ctools) 7

Implements hook_permission().

File

./ctools.module, line 670
CTools primary module file.

Code

function ctools_permission() {
  return array(
    'use ctools import' => array(
      'title' => t('Use CTools importer'),
      'description' => t('The import functionality allows users to execute arbitrary PHP code, so extreme caution must be taken.'),
      'restrict access' => TRUE,
    ),
  );
}