mirror of
https://github.com/owncloud/bookmarks.git
synced 2024-11-29 04:24:11 +01:00
24 lines
849 B
PHP
24 lines
849 B
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2011 Marvin Thomas Rabe <mrabe@marvinrabe.de>
|
|
* Copyright (c) 2011 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
OC::$CLASSPATH['OC_Bookmarks_Bookmarks'] = 'apps/bookmarks/lib/bookmarks.php';
|
|
OC::$CLASSPATH['OC_Search_Provider_Bookmarks'] = 'apps/bookmarks/lib/search.php';
|
|
|
|
$l = new OC_l10n('bookmarks');
|
|
OCP\App::addNavigationEntry( array( 'id' => 'bookmarks_index',
|
|
'order' => 70, 'href' => OCP\Util::linkTo( 'bookmarks', 'index.php' ),
|
|
'icon' => OCP\Util::imagePath( 'bookmarks', 'bookmarks.svg' ),
|
|
'name' => $l->t('Bookmarks')
|
|
));
|
|
|
|
OCP\App::registerPersonal('bookmarks', 'settings');
|
|
OCP\Util::addscript('bookmarks', 'bookmarksearch');
|
|
|
|
OC_Search::registerProvider('OC_Search_Provider_Bookmarks');
|