You are here

function stylizer_permission in Chaos Tool Suite (ctools) 7

Implements hook_permission()

File

stylizer/stylizer.module, line 18
Stylizer module.

Code

function stylizer_permission() {
  return array(
    'administer stylizer' => array(
      'title' => t("Use the Stylizer UI"),
      'description' => t("Allows a user to use the CTools Stylizer UI."),
    ),
  );
}