You are here

function isotope_permission in Isotope (with Masonry and Packery) 7.2

Same name and namespace in other branches
  1. 7 isotope.module \isotope_permission()

Implements hook_permission().

File

./isotope.module, line 13
Load the isotope library and provide configuration and theme options.

Code

function isotope_permission() {
  return array(
    'administer isotope' => array(
      'title' => t('Administer Isotope Configuration'),
      'description' => t('Set configuration options for Isotope'),
    ),
  );
}