You are here

function drd_server_permission in Drupal Remote Dashboard Server 7.2

Same name and namespace in other branches
  1. 7 drd_server.module \drd_server_permission()

Implements hook_permission().

Return value

array An array of defined permissions by this module.

File

./drd_server.module, line 312
Provides XMLRPC implementation to respond to requests from DRD.

Code

function drd_server_permission() {
  return array(
    'flush cache' => array(
      'title' => t('Flush Cache'),
    ),
  );
}