Reader/Feed.php
[web.Reader] / admin.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,Crm,Core,Admin,',
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_Core' => array(
45     //    'jspacker' => '/home/gitlive/gnome.introspection-doc-generator'
46     //),
47     
48      
49    'Mail' => array(
50         'helo' => 'yourdomain.com'
51     )
52     
53
54 ));