2011-08-16 00:05:07 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2011-10-08 15:10:49 +04:00
|
|
|
* Copyright (c) 2011 Marvin Thomas Rabe <m.rabe@echtzeitraum.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_App::register( array( 'order' => 70, 'id' => 'bookmark', 'name' => 'Bookmarks' ));
|
|
|
|
|
|
|
|
OC_App::addNavigationEntry( array( 'id' => 'bookmarks_index', 'order' => 70, 'href' => OC_Helper::linkTo( 'bookmarks', 'index.php' ), 'icon' => OC_Helper::imagePath( 'bookmarks', 'bookmarks.png' ), 'name' => 'Bookmarks' ));
|
|
|
|
|
2011-10-08 15:10:49 +04:00
|
|
|
OC_App::registerPersonal('bookmarks', 'settings');
|