news/appinfo/app.php

33 строки
1.2 KiB
PHP
Исходник Обычный вид История

2012-04-28 18:27:29 +04:00
<?php
/**
* ownCloud - News app (feed reader)
*
* @author Alessandro Cosentino
* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
2012-05-08 23:57:08 +04:00
OC::$CLASSPATH['OC_News_Item'] = 'apps/news/lib/item.php';
OC::$CLASSPATH['OC_News_Feed'] = 'apps/news/lib/feed.php';
2012-04-28 18:27:29 +04:00
2012-05-08 23:57:08 +04:00
$l = new OC_l10n('news');
2012-04-28 18:27:29 +04:00
2012-05-08 23:57:08 +04:00
OCP\App::registerAdmin('news','settings');
OCP\App::register( array( 'order' => 70, 'id' => 'news', 'name' => 'News' ));
OCP\App::addNavigationEntry( array( 'id' => 'news', 'order' => 74, 'href' => OC_Helper::linkTo( 'news', 'index.php' ), 'icon' => OC_Helper::imagePath( 'news', 'example.png' ), 'name' => 'News'));
2012-04-28 18:27:29 +04:00