Added 'Manage folders' link to actions menu

This commit is contained in:
Aleksander Machniak (Kolab Systems) 2011-08-09 08:41:16 +02:00
parent 09dbab0a2b
commit ed63a63aba

View file

@ -65,11 +65,22 @@ class kolab_addressbook_ui
'domain' => $this->ID,
'classact' => 'active',
'command' => $command
)));
)));
$this->plugin->api->add_content($content, 'groupoptions');
$idx++;
}
// Link to Settings/Folders
$content = html::tag('li', array('class' => 'separator_above'),
$this->plugin->api->output->button(array(
'label' => 'managefolders',
'type' => 'link',
'classact' => 'active',
'command' => 'folders',
'task' => 'settings',
)));
$this->plugin->api->add_content($content, 'groupoptions');
$this->rc->output->add_label('kolab_addressbook.bookdeleteconfirm',
'kolab_addressbook.bookdeleting');
}