Blame view

sources/apps/reader/appinfo/app.php 434 Bytes
42e4f8d60   Kload   add all apps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?php
  OC::$CLASSPATH['OC_ReaderSearchProvider'] = 'reader/lib/search.php';
  
  OCP\App::register(array(
    'order' => 20,
    'id' => 'reader',
    'name' => 'reader'));
  
  OCP\App::addNavigationEntry( array(
   'id' => 'reader_index',
   'order' => 20,
   'href' => OCP\Util::linkTo('reader', 'index.php'),
   'icon' => OCP\Util::imagePath( 'reader', 'reader.png' ),
   'name'=>'Reader'));
   
  OC_Search::registerProvider('OC_ReaderSearchProvider');
  
  
  ?>