You are here

function alinks_permission in Alinks 7

Implementation of hook_permission().

File

./alinks.module, line 10
this module allows users to associates defined text to links

Code

function alinks_permission() {
  return array(
    'administer site configuration' => array(
      'title' => t('administer site configuration'),
    ),
    'edit alinks' => array(
      'title' => t('edit alinks'),
    ),
  );
}