nextcloud/apps/bookmarks/appinfo/app.php

20 lines
844 B
PHP
Raw Normal View History

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>
* 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
*/
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');
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');
OC_Search::registerProvider('OC_Search_Provider_Bookmarks');