You are here

function isotope_permission in Isotope (with Masonry and Packery) 7

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

Implements hook_permission().

File

./isotope.module, line 10
Defines the default hooks that the history js module implements.

Code

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