2011-08-16 00:05:07 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2012-02-22 19:04:17 +04:00
|
|
|
* Copyright (c) 2011 Marvin Thomas Rabe <mrabe@marvinrabe.de>
|
2011-10-08 15:10:49 +04:00
|
|
|
* 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.
|
2011-08-16 00:05:07 +04:00
|
|
|
*/
|
|
|
|
|
2012-01-29 22:32:33 +04:00
|
|
|
OC::$CLASSPATH['OC_Bookmarks_Bookmarks'] = 'apps/bookmarks/lib/bookmarks.php';
|
2012-03-02 01:58:44 +04:00
|
|
|
OC::$CLASSPATH['OC_Search_Provider_Bookmarks'] = 'apps/bookmarks/lib/search.php';
|
2012-01-29 22:32:33 +04:00
|
|
|
|
|
|
|
$l = new OC_l10n('bookmarks');
|
2012-05-02 02:50:26 +04:00
|
|
|
OCP\App::addNavigationEntry( array( 'id' => 'bookmarks_index', 'order' => 70, 'href' => OCP\Util::linkTo( 'bookmarks', 'index.php' ), 'icon' => OCP\Util::imagePath( 'bookmarks', 'bookmarks.png' ), 'name' => $l->t('Bookmarks')));
|
2011-08-16 00:05:07 +04:00
|
|
|
|
2012-05-02 02:50:26 +04:00
|
|
|
OCP\App::registerPersonal('bookmarks', 'settings');
|
2012-05-01 22:03:41 +04:00
|
|
|
OCP\Util::addscript('bookmarks','bookmarksearch');
|
2012-02-04 01:00:12 +04:00
|
|
|
|
2012-03-02 01:58:44 +04:00
|
|
|
OC_Search::registerProvider('OC_Search_Provider_Bookmarks');
|