You are here

function asset_widget_permission in Asset 7

Implements hook_permission().

File

modules/asset_widget/asset_widget.module, line 389
Code for the Asset widget module.

Code

function asset_widget_permission() {
  return array(
    'access search widget' => array(
      'title' => t('Access assets search widget'),
      'description' => t('Access assets search widget in UI'),
    ),
  );
}