Reader/Feed.php
[web.Reader] / admin.example.php
1 <?php 
2
3 // alot of this file needs migrating to the Framework..
4
5
6 ini_set('include_path', 
7             dirname(__FILE__). ':' . 
8             dirname(__FILE__).'/pear:' . 
9             ini_get('include_path'));
10
11 define('DB_DATAOBJECT_NO_OVERLOAD', true);
12  
13
14 require_once 'HTML/FlexyFramework.php';
15 new HTML_FlexyFramework( array(
16     'project'=> 'Pman',
17     'debug' => 0,
18     'version' => '2.0',
19    // 'enable' => 'Core,Cms,Admin,Builder,Cash,Documents,Git,Mail',
20     'enable' => 'Reader,Core,Crm,Admin,Cms',
21     
22     'appNameShort' => "Reader",
23     'appName' => "Roo Reader Management Portal",
24     'database' => 'mysql://root:@localhost/pman',
25     //'database' =>  'mysql://root:@localhost/clippingdev',
26     'Pman' => array(
27         'storedir' => '/home/edoc',
28         // need package!
29           
30          
31         //'public_cache_dir' => '/var/www/roojs_cache',
32        // 'public_cache_url' => '/roojs_cache',
33         //'local_autoauth' => 'test@test.com', 
34         //'roo_debug' => true,
35         
36     ),
37      'HTML_Template_Flexy' => array(
38         'templateDir' => implode(PATH_SEPARATOR,  array(
39             dirname(__FILE__) . '/Pman/Core/templates', 
40             dirname(__FILE__) . '/Pman/Reader/templates', 
41          ))
42     ),
43     
44     'Pman_Crm' => array(
45         'server_baseurl' => 'http://localhost/web.Reader/r.php'
46     ),
47      
48     //'Pman_Core' => array(
49     //    'jspacker' => '/home/gitlive/gnome.introspection-doc-generator'
50     //),
51     
52      
53    'Mail' => array(
54         'helo' => 'yourdomain.com'
55     )
56     
57
58 ));