You are here

function ueditor_permission in UEditor - 百度编辑器 7.2

Same name and namespace in other branches
  1. 7.3 ueditor.module \ueditor_permission()

Implements hook_permission().

File

./ueditor.module, line 21
Integration ueditor for wysiwyg.

Code

function ueditor_permission() {
  $perms = array(
    'upload file with ueditor' => array(
      'title' => t('Upload file with ueditor'),
    ),
    'administer ueditor' => array(
      'title' => t('Administer ueditor'),
    ),
  );
  return $perms;
}