| | |
| | | // Get supported rights |
| | | $supported = $this->rights_supported(); |
| | | |
| | | // give plugins the opportunity to adjust this list |
| | | $data = $this->rc->plugins->exec_hook('acl_rights_supported', |
| | | array('rights' => $supported, 'folder' => $this->mbox, 'labels' => array())); |
| | | $supported = $data['rights']; |
| | | |
| | | // depending on server capability either use 'te' or 'd' for deleting msgs |
| | | $deleteright = implode(array_intersect(str_split('ted'), $supported)); |
| | | |
| | |
| | | 'other' => preg_replace('/[lrswi'.$deleteright.']/', '', implode($supported)), |
| | | ); |
| | | |
| | | foreach ($items as $key => $val) { |
| | | // give plugins the opportunity to adjust this list |
| | | $data = $this->rc->plugins->exec_hook('acl_rights_simple', |
| | | array('rights' => $items, 'folder' => $this->mbox, 'labels' => array(), 'titles' => array())); |
| | | |
| | | foreach ($data['rights'] as $key => $val) { |
| | | $id = "acl$key"; |
| | | $ul .= html::tag('li', null, |
| | | $input->show('', array( |
| | | 'name' => "acl[$val]", 'value' => $val, 'id' => $id)) |
| | | . html::label(array('for' => $id, 'title' => $this->gettext('longacl'.$key)), |
| | | $this->gettext('acl'.$key))); |
| | | . html::label(array('for' => $id, 'title' => $data['titles'][$key] ?: $this->gettext('longacl'.$key)), |
| | | $data['labels'][$key] ?: $this->gettext('acl'.$key))); |
| | | } |
| | | |
| | | $out .= "\n" . html::tag('ul', $attrib, $ul, html::$common_attrib); |
| | | |
| | | $this->rc->output->set_env('acl_items', $items); |
| | | $this->rc->output->set_env('acl_items', $data['rights']); |
| | | |
| | | return $out; |
| | | } |
| | |
| | | // Get supported rights and build column names |
| | | $supported = $this->rights_supported(); |
| | | |
| | | // give plugins the opportunity to adjust this list |
| | | $data = $this->rc->plugins->exec_hook('acl_rights_supported', |
| | | array('rights' => $supported, 'folder' => $this->mbox, 'labels' => array())); |
| | | $supported = $data['rights']; |
| | | |
| | | // depending on server capability either use 'te' or 'd' for deleting msgs |
| | | $deleteright = implode(array_intersect(str_split('ted'), $supported)); |
| | | |
| | |
| | | 'delete' => $deleteright, |
| | | 'other' => preg_replace('/[lrswi'.$deleteright.']/', '', implode($supported)), |
| | | ); |
| | | |
| | | // give plugins the opportunity to adjust this list |
| | | $data = $this->rc->plugins->exec_hook('acl_rights_simple', |
| | | array('rights' => $items, 'folder' => $this->mbox, 'labels' => array())); |
| | | $items = $data['rights']; |
| | | } |
| | | |
| | | // Create the table |
| | |
| | | // Create table header |
| | | $table->add_header('user', $this->gettext('identifier')); |
| | | foreach (array_keys($items) as $key) { |
| | | $label = $this->gettext('shortacl'.$key); |
| | | $label = $data['labels'][$key] ?: $this->gettext('shortacl'.$key); |
| | | $table->add_header(array('class' => 'acl'.$key, 'title' => $label), $label); |
| | | } |
| | | |
| | |
| | | $config['fieldmap']['uid'] = $uid_field; |
| | | |
| | | // search in UID and name fields |
| | | $config['search_fields'] = array_values($config['fieldmap']); |
| | | // $name_field can be in a form of <field>:<modifier> (#1490591) |
| | | $name_field = preg_replace('/:.*$/', '', $name_field); |
| | | $search = array_unique(array($name_field, $uid_field)); |
| | | |
| | | $config['search_fields'] = $search; |
| | | $config['required_fields'] = array($uid_field); |
| | | |
| | | // set search filter |