1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-19 08:52:22 +01:00

Use OC::$server->getNavigationManager()

This commit is contained in:
Thomas Tanghus 2013-09-27 16:37:51 +02:00
parent 8e0b6e45fd
commit 5e38bf07cb

View File

@ -21,14 +21,15 @@ use \OC\AppFramework\Core\API;
$api = new API('contacts');
$api->addNavigationEntry(array(
'id' => 'contacts_index',
\OC::$server->getNavigationManager()->add(array(
'id' => 'contacts',
'order' => 10,
'href' => \OCP\Util::linkToRoute('contacts_index'),
'icon' => \OCP\Util::imagePath( 'contacts', 'contacts.svg' ),
'name' => \OCP\Util::getL10N('contacts')->t('Contacts')
)
);
\OC::$server->getNavigationManager()->setActiveEntry('contacts');
$api->connectHook('OC_User', 'post_createUser', '\OCA\Contacts\Hooks', 'userCreated');
$api->connectHook('OC_User', 'post_deleteUser', '\OCA\Contacts\Hooks', 'userDeleted');