Changeset 4877 in subversion
- Timestamp:
- Jun 24, 2011 2:17:18 PM (2 years ago)
- Location:
- trunk/plugins/acl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/acl/acl.js
r4863 r4877 2 2 * ACL plugin script 3 3 * 4 * @version 0. 24 * @version 0.3 5 5 * @author Aleksander Machniak <alec@alec.pl> 6 6 */ -
trunk/plugins/acl/acl.php
r4863 r4877 4 4 * Folders Access Control Lists Management (RFC4314, RFC2086) 5 5 * 6 * @version 0. 26 * @version 0.3 7 7 * @author Aleksander Machniak <alec@alec.pl> 8 8 * … … 26 26 class acl extends rcube_plugin 27 27 { 28 public $task = 'settings ';28 public $task = 'settings|addressbook'; 29 29 30 30 private $rc; … … 42 42 // Register hooks 43 43 $this->add_hook('folder_form', array($this, 'folder_form')); 44 // kolab_addressbook plugin 45 $this->add_hook('addressbook_form', array($this, 'folder_form')); 44 46 // Plugin actions 45 $this->register_action('plugin.acl', array($this, 'acl_actions')); 47 $this->register_action('plugin.acl', array($this, 'acl_actions')); 46 48 } 47 49 … … 117 119 $this->rc->output->include_script('list.js'); 118 120 $this->include_stylesheet($this->local_skin_path().'/acl.css'); 121 122 // add Info fieldset if it doesn't exist 123 if (!isset($args['form']['props']['fieldsets']['info'])) 124 $args['form']['props']['fieldsets']['info'] = array( 125 'name' => rcube_label('info'), 126 'content' => array()); 119 127 120 128 // Display folder rights to 'Info' fieldset -
trunk/plugins/acl/localization/pl_PL.inc
r4809 r4877 24 24 $labels['acle'] = 'PorzÄ 25 25 dkowanie folderu (Expunge)'; 26 $labels['aclx'] = 'Usuwanie folder (Delete)';26 $labels['aclx'] = 'Usuwanie folderu (Delete)'; 27 27 $labels['acla'] = 'Administracja (Administer)'; 28 28
Note: See TracChangeset
for help on using the changeset viewer.
