You are here

function joomla_permission in Joomla to Drupal 7

Same name and namespace in other branches
  1. 7.2 joomla.module \joomla_permission()

Implementation of hook_permission().

File

./joomla.module, line 45
The joomla module used for migrate Joomla to Drupal.

Code

function joomla_permission() {
  return array(
    'administer joomla' => array(
      'description' => t('Access Joomla Import Settings'),
      'title' => t('Administer Joomla'),
      'restrict access' => TRUE,
    ),
  );
}