HTML/FlexyFramework.php
[pear] / HTML / FlexyFramework.php
1 <?php
2 /* vim: set expandtab tabstop=4 shiftwidth=4: */
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2002 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Authors:  Alan Knowles <alan@akbkhome.com>                           |
17 // +----------------------------------------------------------------------+
18 //
19 // $Id: FlexyFramework.php,v 1.8 2003/02/22 01:52:50 alan Exp $
20 //
21 //  Description
22 //  A Page (URL) to Object Mapper
23 //  Cleaned up version.. - for use on new projects -- not BC!! beware!!!
24
25
26 //-----------------------------------------------------------
27 // Debian APACHE - some idiot disabled AcceptPathInfo - it needs adding back.
28 //-----------------------------------------------------------
29
30  
31  
32 // Initialize Static Options
33 require_once 'PEAR.php';
34 require_once 'HTML/FlexyFramework/Page.php';  
35 require_once 'HTML/FlexyFramework/Error.php';
36 // better done here..
37 require_once 'DB/DataObject.php';
38
39 // To be removed ?? or made optional or something..
40  
41
42 // remove E_ANAL  
43  
44 error_reporting(E_ALL & ~E_STRICT );
45 //ini_set('display_errors','off');
46 //ini_set('log_errors','off');
47
48 //PEAR::setErrorHandling(PEAR_ERROR_TRIGGER, E_USER_ERROR);
49
50
51
52
53 /**
54 * The URL to Object Mapper
55 *
56 * Usage:
57 * Create a index.php and add these lines.
58 *  
59 * ini_set("include_path", "/path/to/application"); 
60 * require_once 'HTML/FlexyFramework.php';
61 * HTML_FlexyFramework::factory(array("dir"=>"/where/my/config/dir/is");
62 *
63 *
64 * the path could include pear's path, if you dont install all the pear 
65 * packages into the development directory.
66 *
67 * It attempts to load a the config file from the includepath, 
68 * looks for ConfigData/default.ini
69 * or ConfigData/{hostname}.ini
70 * if your file is called staging.php rather than index.php 
71 * it will try staging.ini
72 *
73 */
74  
75 class HTML_FlexyFramework {
76     
77     /**
78      * Confirgurable items..
79      * If we set them to 'true', they must be set, otherwise they are optional.
80      */
81     var $project; // base class name
82     var $database; // set to true even if nodatabase=true
83     
84     // optional
85     var $debug = false;
86     var $enable = false; // modules
87     var $disable = false; // modules or permissions
88     var $appName = false;
89     var $appNameShort = false; // appname (which has templates)
90     var $version = false; // give it a version name. (appended to compile dir)
91     var $nodatabase = false; // set to true to block db config and testing.
92     var $fatalAction = false; // page to redirct to on failure. (eg. databse down etc.)
93     var $charset = false; // default UTF8
94     var $dataObjectsCache = true;  // use dataobjects ini cache.. - let's try this as the default behaviour...
95     var $dataObjectsCacheExpires = 72000; // 20 hours..
96     var $languages = false; // language settings -- see _handlelanguage
97     var $projectExtends = false; // if this is an array, it's a fallback of 'Projects' that can be called
98     
99
100     
101     // derived.
102     var $cli = false; // from cli 
103     var $run = false; // from cli
104     var $enableArray = false; // from enable.
105     var $classPrefix = false; // from prject.
106     var $baseDir = false ; // (directory+project)
107     var $rootDir = false ; // (directory that index.php is in!)
108     
109     var $baseURL = false;
110     var $rootURL = false ; // basename($baseURL)
111     
112     var $page = false; // active page..
113     var $timer = false; // the debug timer
114     var $calls = false; // the number of calls made to run!
115     var $start = false; // the start tiem.
116     
117     var $baseRequest = '';
118     var $ext; // the striped extention.
119     
120     var $dataObjectsOriginalIni = ''; // 1 houre..
121     
122     // used to be $_GLOBALS[__CLASS__]
123     
124     static $singleton; 
125     
126     
127     /**
128      * 
129      * Constructor - with assoc. array of props as option
130      * called by index.php usually, and runs the app code,
131      *
132      * uses 'universal construcor' format, so the argument relates directly to properties of this object.
133      * 
134      */
135     
136     
137     function __construct($config)
138     {
139         if (isset(self::$singleton)) {
140             trigger_error("FlexyFramework Construct called twice!", E_ERROR);
141         }
142         
143         self::$singleton = $this;
144         
145         $this->calls = 0;
146
147         $m = explode(' ',microtime());
148         $this->start = $m[0] + $m[1];
149         
150         $config = $this->loadModuleConfig($config);
151         
152         foreach($config as $k=>$v) {
153             $this->$k = $v;
154         }
155         $this->_parseConfig();
156         
157         // echo '<PRE>'; print_r($this);exit;
158         if ($this->cli) {
159             $args = $_SERVER['argv'];
160             array_shift($args );
161             array_shift($args );
162             $this->_run($this->run,false,$args);
163             return;
164         }
165     
166         // handle apache mod_rewrite..
167         // it looks like this might not work anymore..
168         
169         /*
170          *
171 <IfModule mod_rewrite.c>
172 RewriteEngine On
173 RewriteBase /
174 RewriteRule ^/web.hpasite/index\.local.php$ - [L]
175 RewriteCond %{REQUEST_FILENAME} !-f
176 RewriteCond %{REQUEST_FILENAME} !-d
177 RewriteRule ^(.+)$ /web.hpasite/index.local.php [L,NC,E=URL:$1]
178 </IfModule>
179 */ 
180         
181         if (!empty($_SERVER['REDIRECT_STATUS'])  && !empty($_SERVER['REDIRECT_URL'])) {
182           // phpinfo();exit;
183             $sn = $_SERVER['SCRIPT_NAME'];
184             $sublen = strlen(substr($sn , 0,  strlen($sn) - strlen(basename($sn)) -1));
185             //var_dump(array($sn,$subdir,basename($sn)));exit;
186           
187             //var_dump($_SERVER['SCRIPT_NAME'] . substr($_SERVER['REDIRECT_URL'],$sublen));
188             $this->_run($_SERVER['SCRIPT_NAME'] .  substr($_SERVER['REDIRECT_URL'], $sublen),false);
189             return ;
190         }
191         // eg... /web.hpasite/index.local.php/Projects
192          $this->_run($_SERVER['REQUEST_URI'],false);
193             
194         
195     }
196     /**
197      * This is the standard way to get information about the application settings.
198      * $ff = HTML_FlexyFramework::get();
199      * if ($ff->SomeVar[...])....
200      *
201      */
202     static function get()
203     {
204         return self::$singleton;
205     }
206     /*
207      * looks for files in the path and load up the default values for config?
208      */
209     function loadModuleConfig($cfg)
210     {
211         if (empty($cfg['enable'])) {
212             return $cfg;
213         }
214         $proj = $cfg['project'];
215         $rootDir = realpath(dirname($_SERVER["SCRIPT_FILENAME"]));
216
217         foreach(explode(',',$cfg['enable']) as $m) {
218             $cls = $proj.'_'. $m . '_Config';
219
220             if (!file_exists($rootDir . '/'.str_replace('_','/', $cls). '.php')) {
221                 continue;
222             }
223             require_once str_replace('_','/', $cls). '.php';
224             $c = new $cls();
225             if (method_exists($c,'init')) {
226                 $cfg = $c->init($this,$cfg);
227             }
228         }
229         return $cfg;
230     }
231     
232   
233     /**
234      * parse the configuration set by the constructor.
235      * 
236      *
237      */
238   
239     function _parseConfig()
240     {
241         
242         // make sure required values are set.. (anything that is not defaulted to false..)
243         foreach(get_class_vars(__CLASS__) as $k =>$v) {
244             if ($v === false && !isset($this->$k)) {
245                 die("$k is not set");
246             }
247         }
248         
249         
250         // enable modules.
251         if (!empty($this->enable)) {
252             $this->enableArray = explode(',', $this->enable);
253             
254             if (!in_array('Core',$this->enableArray ) &&
255                 !in_array('Core', explode(',', $this->disable ? $this->disable : '')))
256             {
257                 $this->enable = 'Core,'. $this->enable ;
258                 $this->enableArray = explode(',', $this->enable);
259             }
260         }
261         // are we running cli?
262         $this->cli = php_sapi_name() == 'cli'; 
263         
264         // will these work ok with cli?
265         $bits = explode(basename($_SERVER["SCRIPT_FILENAME"]), $_SERVER["SCRIPT_NAME"]);
266         if (!$this->cli) {
267             $bits[0] = str_replace('%2F','/',urlencode($bits[0]));
268             $this->baseURL = $bits[0] . basename($_SERVER["SCRIPT_FILENAME"]);
269             // however this is not correct if we are using rewrite..
270             if (!empty($_SERVER['REDIRECT_STATUS'])  && !empty($_SERVER['REDIRECT_URL'])) {
271                 $this->baseURL = substr($bits[0],0,-1); // without the trailing '/' ??
272                 $this->rootURL = $bits[0] == '/' ? '' : $bits[0];
273                 //$this->baseURL = $this->baseURL == '' ? '/' : $this->baseURL;
274                 
275             }
276             //phpinfo();exit;
277             // is this bit used??
278             //if (empty($_SERVER['SCRIPT_NAME'])) {
279                 
280             //    $this->baseURL = ''; // ??? this is if we replace top level...
281             //}
282         }
283         // if cli - you have to have set baseURL...
284         
285         
286         $this->rootDir = realpath(dirname($_SERVER["SCRIPT_FILENAME"]));
287         $this->baseDir = $this->rootDir .'/'. $this->project;
288         if (empty($this->rootURL)) {
289             $this->rootURL = dirname($this->baseURL); 
290             $this->rootURL = ($this->rootURL == '/') ? '' : $this->rootURL;
291         }
292          
293       
294         //var_dump($this->baseURL);
295         
296         if (!isset($this->database) && isset($this->DB_DataObject['database'])) {
297             $this->database = $this->DB_DataObject['database'];
298         }
299         
300          $this->classPrefix   = str_replace('/', '_', $this->project) . '_';
301         
302         // list the available options..
303         if ($this->cli && empty($_SERVER['argv'][1])) {
304             require_once 'HTML/FlexyFramework/Cli.php';
305             $fcli = new HTML_FlexyFramework_Cli($this);
306             $fcli->cliHelp();
307             exit;
308         }
309         
310         
311         // see if it's a framework assignment.
312         $ishelp = false;
313         if ($this->cli) {
314             require_once 'HTML/FlexyFramework/Cli.php';
315             $fcli = new HTML_FlexyFramework_Cli($this);
316             $res = $fcli->parseDefaultOpts();
317             if ($res === true) {
318                 $ishelp = true;
319             }
320              
321         }
322         
323         
324         $this->run = $this->cli ? $_SERVER['argv'][1] : false;
325      
326         
327         $this->_parseConfigDataObjects();
328         if ($this->dataObjectsCache && !$this->nodatabase) {
329             $this->_configDataObjectsCache();
330         }
331         
332         $this->_parseConfigTemplate();
333         $this->_parseConfigMail();
334  
335         //echo '<PRE>';print_r($this);exit;
336         
337         $this->_exposeToPear();
338                 
339
340         $this->_validateEnv();
341         
342         if ($ishelp) {
343             return;
344         }
345
346         $this->_validateDatabase();
347  
348         $this->_validateTemplate();
349         
350     }
351     /**
352      *
353      *
354      *'languages' => array(
355             'param' => '_lang',
356             'avail' => array('en','zh_HK', 'zh_CN'),
357             'default' => 'en',
358             'cookie' => 'TalentPricing_lang',
359             'localemap' => array(
360                 'en' => 'en_US.utf8',
361                 'zh_HK' => 'zh_TW.utf8',
362                 'zh_CN' => 'zh_CN.utf8',
363             )
364         ),
365     */
366     
367     function _handleLanguages($request)
368     {
369         if (
370             empty($this->languages) ||
371             (
372                     !isset($this->languages['cookie']) && !isset($this->languages['default'])
373             )
374         ) {
375             return;
376         }
377         
378         $cfg = $this->languages;
379         
380         $default = $cfg['default'];
381         
382         if(!empty($_SERVER["HTTP_ACCEPT_LANGUAGE"])){
383             
384             $brower_langs = explode(",", $_SERVER["HTTP_ACCEPT_LANGUAGE"]);
385             
386             foreach ($brower_langs as $bl) {
387                 $l = preg_replace('/;(.*)/', '', $bl);
388                 
389                 $l = str_replace('-', '_', $l);
390                 
391                 if(!in_array($l, $cfg['avail'])){
392                     continue;
393                 }
394                 
395                 $default = $l;
396                 break;
397             }
398         }
399            
400         $lang = isset($_COOKIE[$cfg['cookie']]) ?  $_COOKIE[$cfg['cookie']] : $default;
401
402         // handle languages in request..
403         $bits = explode('/', $request);
404         $redirect_to = false;
405         if (count($bits) && in_array($bits[0],$cfg['avail'])) {
406             // redirect..
407             $lang = array_shift($bits);
408             $redirect_to = implode('/', $bits);
409         }
410         
411          
412         
413         if (isset($_REQUEST[$cfg['param']])) {
414             $lang = $_REQUEST[$cfg['param']];
415         }
416     
417         if (!in_array($lang, $cfg['avail'])) {
418             $lang = $cfg['default'];
419         }
420         if (isset($cfg['localemap'][$lang])) {
421             setlocale(LC_ALL, $cfg['localemap'][$lang]);
422         }
423         setcookie($cfg['cookie'], $lang, 0, '/');
424         
425         $this->locale = $lang;
426         
427         if (!empty($this->HTML_Template_Flexy)) {
428             $this->HTML_Template_Flexy['locale'] = $lang;   //set a language for template engine
429         }
430         if ($redirect_to !== false) {
431             header('Location: ' . $this->rootURL . '/'.$redirect_to );
432             exit;
433          
434         }
435     }
436     
437     function parseDefaultLanguage($http_accept, $deflang = "en") 
438     {
439         if(isset($http_accept) && strlen($http_accept) > 1)  {
440            # Split possible languages into array
441            $x = explode(",",$http_accept);
442            
443            foreach ($x as $val) {
444               #check for q-value and create associative array. No q-value means 1 by rule
445               if(preg_match("/(.*);q=([0-1]{0,1}.\d{0,4})/i",$val,$matches))
446                  $lang[$matches[1]] = (float)$matches[2];
447               else
448                  $lang[$val] = 1.0;
449            }
450            
451            #return default language (highest q-value)
452            $qval = 0.0;
453            foreach ($lang as $key => $value) {
454               if ($value > $qval) {
455                  $qval = (float)$value;
456                  $deflang = $key;
457               }
458            }
459         }
460         return strtolower($deflang);
461      }
462     
463     /**
464      * overlay array properties..
465      */
466     
467     function applyIf($prop, $ar) {
468         if (!isset($this->$prop)) {
469             $this->$prop = $ar;
470             return;
471         }
472         // add only things that where not set!!!.
473         $this->$prop = array_merge($ar,$this->$prop);
474         
475         return;
476         //foreach($ar as $k=>$v) {
477         //    if (!isset($this->$prop->$k)) {
478          //       $this->$prop->$k = $v;
479           //  }
480        // }
481     }
482     
483     /**
484      * DataObject cache 
485      * - if turned on (dataObjectsCache = true) then 
486      *  a) ini file points to a parsed version of the structure.
487      *  b) links.ini is a merged version of the configured link files.
488      * 
489      * This only will force a generation if no file exists at all.. - after that it has to be called manually 
490      * from the core page.. - which uses the Expires time to determine if regeneration is needed..
491      * 
492      * 
493      */
494     
495     function _configDataObjectsCache()
496     {
497         // cli works under different users... it may cause problems..
498         $this->debug(__METHOD__);
499         if (function_exists('posix_getpwuid')) {
500             $uinfo = posix_getpwuid( posix_getuid () ); 
501             $user = $uinfo['name'];
502         } else {
503             $user = getenv('USERNAME'); // windows.
504         }
505         
506         
507
508         $iniCache = ini_get('session.save_path') .'/' . 
509                'dbcfg-' . $user . '/'. str_replace('/', '_', $this->project) ;
510         
511         
512         if ($this->appNameShort) {
513             $iniCache .= '_' . $this->appNameShort;
514         }
515         if ($this->version) {
516             $iniCache .= '.' . $this->version;
517         }
518         if ($this->database === false) {
519             return;
520         }
521         
522         $dburl = parse_url($this->database);
523         if (!empty($dburl['path'])) {
524             $iniCache .= '-'.ltrim($dburl['path'],'/');
525         }
526         
527         $iniCache .= '.ini';
528         $this->debug(__METHOD__ . " : ini cache : $iniCache");
529         
530         $dburl = parse_url($this->database);
531         $dbini = 'ini_'. basename($dburl['path']);
532         $this->debug(__METHOD__ . " : ini file : $dbini");
533         //override ini setting... - store original..
534         if (isset($this->DB_DataObject[$dbini])) {
535             $this->dataObjectsOriginalIni = $this->DB_DataObject[$dbini];
536             ///print_r($this->DB_DataObject);exit;
537         }
538         // 
539         
540         
541         
542         $this->DB_DataObject[$dbini] =   $iniCache;
543         // we now have the configuration file name..
544         
545         
546         if (!file_exists($iniCache) || empty( $this->dataObjectsCacheExpires)) {
547             $this->generateDataobjectsCache(true);
548             return;
549         }
550      
551         
552         
553     }
554     /**
555      *  _generateDataobjectsCache:
556      * 
557      * create xxx.ini and xxx.links.ini 
558      * 
559      * @arg force (boolean) force generation - default false;
560      * 
561      */
562      
563     function generateDataobjectsCache($force = false)
564     {
565         //$this->debug('generateDataobjectsCache: force=' . ($force ? 'yes' : 'no'));
566         if (!$this->dataObjectsCache) { // does not use dataObjects Caching..
567             $this->debug('generateDataobjectsCache', 'dataObjectsCache - empty');
568             return;
569         }
570         
571         $dburl = parse_url($this->database);
572         $dbini = 'ini_'. basename($dburl['path']);
573         
574         
575         $iniCache = $this->DB_DataObject[$dbini];
576         
577         var_Dump($iniCache);exit;
578         if ($force && file_exists($iniCache)) {
579             unlink($iniCache);
580             clearstatcache();
581         }
582         
583         $iniCacheTmp = $iniCache . '.tmp' .md5(rand());  // random to stop two processes using the same file.
584         // has it expired..
585         $force = ($force ? $force : !file_exists($iniCache)) || !$this->dataObjectsCacheExpires;
586         // $this->debug('generateDataobjectsCache: after check : force=' . ($force ? 'yes' : 'no'));
587          // not force or not expired, do not bother..
588         if (!$force) {
589             if ((filemtime($iniCache) + $this->dataObjectsCacheExpires) >time()) {
590                 return;
591             }
592         }
593         
594         
595         
596          //echo "GENERATE?";
597         
598         // force quoting of column names..
599         // unless it forced off..
600         if (!isset($this->DB_DataObject['quote_identifiers_tableinfo'] )) { 
601             $this->DB_DataObject['quote_identifiers_tableinfo'] = true;
602         }
603         if (!file_exists(dirname($iniCache))) {
604             if (!mkdir(dirname($iniCache),0700, true)) {
605                 die("Failed to make cache directory : $iniCache\n");
606             }
607         }
608         
609         $this->DB_DataObject[$dbini] = $iniCacheTmp;
610         
611         $dl = DB_DataObject::DebugLevel();
612         $this->_exposeToPear(); // this will reset the debug level...
613         DB_DataObject::DebugLevel($dl);
614         
615         // DB_DataObject::debugLevel(1);      
616         require_once 'HTML/FlexyFramework/Generator.php';
617         $generator = new HTML_FlexyFramework_Generator();
618         $generator->start();
619         
620         HTML_FlexyFramework_Generator::writeCache($iniCacheTmp, $iniCache); 
621         // reset the cache to the correct lcoation.
622         $this->DB_DataObject[$dbini] = $iniCache;
623         
624          
625
626         $this->_exposeToPear();
627         DB_DataObject::DebugLevel($dl);
628
629         //$GLOBALS['_DB_DATAOBJECT']['INI'][$this->database] =   parse_ini_file($iniCache, true);
630         //$GLOBALS['_DB_DATAOBJECT']['SEQUENCE']
631         // clear any dataobject cache..
632          
633         
634         //die("done");
635         
636     }
637     /**
638      * DataObject Configuration:
639      * Always in Project/DataObjects
640      * unless enableArray is available...
641      * 
642      * 
643      * 
644      */
645     function _parseConfigDataObjects()
646     {
647         if ($this->nodatabase && !$this->database) {
648             return;
649         }
650         $dburl = parse_url($this->database);
651         $dbini = 'ini_'. basename($dburl['path']);
652                 
653         $dbinis =  array(); //array(dirname(__FILE__) . '/Pman/DataObjects/pman.ini');
654         $dbreq =  array(); //array( dirname(__FILE__) . '/Pman/DataObjects/');
655         $dbcls =  array(); //array('Pman_DataObjects_');
656
657         $project = explode('/',$this->project)[0]; 
658         
659         if (!empty($this->enableArray)) {
660                 
661             $tops = array_merge( array($project), empty($this->projectExtends) ? array() : $this->projectExtends);
662             
663             foreach($tops as $td) {
664                     
665                 $bd = $this->rootDir .'/'.$td;
666                 foreach($this->enableArray as $m) {
667                     // look in Pman/MODULE/DataObjects/*
668                      if (file_exists($bd.'/'.$m.'/DataObjects')) {
669                         $dbinis[] = $bd.'/'.$m.'/DataObjects/'. strtolower($project).'.ini';
670                         $dbcls[] = $td.'_'. $m . '_DataObjects_';
671                         $dbreq[] = $bd.'/'.$m.'/DataObjects';
672                         continue;
673                     }
674                     // look in MODULE/DataObjects ?? DO WE SUPPORT THIS ANYMORE???
675                     if (file_exists($bd.'/../'.$m.'/DataObjects')) {
676                         $dbinis[] = $bd.'/../'.$m.'/DataObjects/'. strtolower($project).'.ini';
677                         $dbcls[] = $td. '_DataObjects_';
678                         $dbreq[] = $bd.'/../'.$m.'/DataObjects';
679                     }
680                         
681                         
682                       
683                 }
684             }     
685         } else {
686             
687             if (isset($this->DB_DataObject['schema_location'])) {
688                 $dbinis[] = $this->DB_DataObject['schema_location'] .'/'.basename($dburl['path']).'.ini';
689             } else {
690                 $dbinis[] = $this->baseDir.'/DataObjects/'.basename($dburl['path']).'.ini';
691             }
692             // non modular.
693             
694             $dbcls[] = $project .'_DataObjects_';
695             $dbreq[] = $this->baseDir.'/DataObjects';
696         }
697             
698         
699         $this->applyIf('DB_DataObject', array(   
700         
701             'class_location' =>  implode(PATH_SEPARATOR,$dbreq),
702             'class_prefix' =>  implode(PATH_SEPARATOR,$dbcls),
703             'database'        => $this->database,    
704             ///'require_prefix' => 
705          //   'schema_location' => dirname(__FILE__) . '/Pman/DataObjects/',
706              $dbini=> implode(PATH_SEPARATOR,$dbinis),
707          
708            //   'debug' => 5,
709         ));
710       //  print_r($this->DB_DataObject);exit;
711     }
712     /**
713      Set up thetemplate
714      * 
715      */
716     function _parseConfigTemplate()
717     {
718         
719         // compile.
720         if (function_exists('posix_getpwuid')) {
721             $uinfo = posix_getpwuid( posix_getuid () ); 
722          
723             $user = $uinfo['name'];
724         } else {
725             $user = getenv('USERNAME'); // windows.
726         }
727         
728         $compileDir = ini_get('session.save_path') .'/' . 
729             $user . '_compiled_templates_' . $this->project;
730         
731         if ($this->appNameShort) {
732             $compileDir .= '_' . $this->appNameShort;
733         }
734         if ($this->version) {
735             $compileDir .= '.' . $this->version;
736         }
737         
738         // templates. -- all this should be cached!!!
739         $src = array();
740          
741         
742         if ($this->appNameShort && !in_array('Core', explode(',', $this->disable ? $this->disable : ''))) {
743             // in app based version, template directory is in Core
744             
745             $src = array(  
746                 $this->baseDir . '/Core/templates'
747             );
748         }
749         
750         if(!empty($this->projectExtends)){
751             foreach ($this->projectExtends as $e){
752                 $add = $this->rootDir . '/' . $e .'/templates';
753                 if (!in_array($add,$src) && file_exists($add)) {
754                     $src[] = $add;
755                 }
756             }
757         }
758         
759         $src[] = $this->baseDir . '/templates';
760         
761         
762         
763         if (!empty($this->enableArray)) {
764              
765             
766             foreach($this->enableArray as $m) {
767                 $add = $this->baseDir . '/' . $m .'/templates';
768                 if (!in_array($add,$src) && file_exists($add) && $this->appNameShort != $m) {
769                     $src[] = $add;
770                 }
771                 
772             }
773             if (!empty($this->projectExtends)  )  {
774                 foreach ($this->projectExtends as $extend){
775                     foreach($this->enableArray as $m) {
776                         $add = $this->rootDir . '/' . $extend . '/' . $m .'/templates';
777                         if (!in_array($add,$src) && file_exists($add) && $this->appNameShort != $m) {
778                             $src[] = $add;
779                         }
780                     }
781                 }
782     
783             }
784         }
785          
786         
787         if ($this->appNameShort) {
788             $src[] =  $this->baseDir . '/'. $this->appNameShort. '/templates';
789         }
790         
791         // images may come from multiple places: - if we have multiple template directories.?
792         // how do we deal with this..?
793         // images/ << should always be mapped to master!
794         // for overridden appdir ones we will have to se rootURL etc.
795         
796         $url_rewrite = 'images/:'. $this->rootURL . '/'. $this->project. '/templates/images/';
797         
798         $this->applyIf('HTML_Template_Flexy', array(
799             'templateDir' => implode(PATH_SEPARATOR, $src),
800             'compileDir' => $compileDir,
801             'multiSource' => true,
802             'forceCompile' => 0,
803             'url_rewrite' => $url_rewrite,
804             'filters' => 'Php,SimpleTags', /// for non-tokenizer version?
805             'debug' => $this->debug ? 1 : 0,
806             'useTokenizer' => 1,
807              
808             
809         
810         
811         ));
812     } 
813     
814     function _parseConfigMail()
815     {
816         $this->applyIf('HTML_Template_Flexy', array(
817            'debug' => 0,
818            'driver' => 'smtp',
819            'host' => 'localhost',
820            'port' => 25,
821         ));
822     }
823     function _exposeToPear()
824     {
825         $cls = array_keys(get_class_vars(__CLASS__));
826         $base = array();
827         
828         // anything that get's set, that's not in our default properties
829         // is assumed to be an option set .
830         foreach(get_object_vars($this) as $k=>$v) {
831             if (in_array($k,$cls)) {
832                 $base[$k] = $v;
833                 continue;
834             }
835             $options = &PEAR::getStaticProperty($k,'options');
836             $options = $v;
837         }
838         $options = &PEAR::getStaticProperty('HTML_FlexyFramework','options');
839         $options = $base;
840          //   apply them..
841     }
842     
843     
844     function _validateEnv() 
845     {
846         /* have I been initialized */
847         
848         
849         if (get_magic_quotes_gpc() && !$this->cli) {
850             $this->fatalError(
851                 "magic quotes is enabled add the line<BR>
852                    php_value magic_quotes_gpc 0<BR>
853                    to your .htaccess file <BR>
854                    (Apache has to be configured to &quot;AllowOverride Options AuthConfig&quot; for the directory)
855                    ");
856                 
857         }
858         // set up error handling - 
859         $this->error = new HTML_FlexyFramework_Error();
860         
861         /// fudge work around bugs in PEAR::setErrorHandling(,)
862         $GLOBALS['_PEAR_default_error_mode'] = PEAR_ERROR_CALLBACK;
863         $GLOBALS['_PEAR_default_error_options'] = array($this->error,'raiseError');
864         
865         
866         
867         if ($this->debug) {
868             require_once 'Benchmark/Timer.php'; 
869             $this->timer = new BenchMark_Timer(true);
870             register_shutdown_function(function() { echo $this->timer->getOutput(); });
871         }
872
873     }
874     
875     function _validateDatabase()
876     {
877         //echo "<PRE>"; print_r($this);
878
879         if ($this->nodatabase) {
880             return;
881         }
882         $options = &PEAR::getStaticProperty('DB_DataObject','options');
883         $dd = empty($options['dont_die']) ? false : true;
884         $options['dont_die'] = true;
885         
886         // database is the only setting - we dont support mult databses?
887           
888             
889         $x = new DB_Dataobject;
890         $x->_database = $this->database;
891         if (PEAR::isError($err = $x->getDatabaseConnection())) {
892                                 
893
894                 $this->fatalError("Configuration or Database Error: could not connect to Database, <BR>
895                     Please check the value given to HTML_FlexyFramework, or run with debug on!<BR>
896                      <BR> ".$err->toString());
897         }
898         // reset dont die!
899         $options['dont_die'] = $dd ;
900         
901         
902     }
903     function _validateTemplate()
904     {
905         // check that we have a writeable directory for flexy's compiled templates.
906         
907         if (empty($this->HTML_Template_Flexy['compileDir'])) {
908             return;
909         }
910         
911         if ( !file_exists($this->HTML_Template_Flexy['compileDir']))  {
912             mkdir($this->HTML_Template_Flexy['compileDir'], 0700);
913             @mkdir($this->HTML_Template_Flexy['compileDir'], 0700, true);
914             clearstatcache();
915              
916             if ( !file_exists($this->HTML_Template_Flexy['compileDir']))  {
917             
918                 $this->fatalError("Configuration Error: you specified a directory that does not exist for<BR>
919                     HTML_Template_Flexy => compileDir  {$this->HTML_Template_Flexy['compileDir']}<BR>\n"
920                 );
921             }
922         }
923         
924         if (!is_writeable($this->HTML_Template_Flexy['compileDir'])) {
925             $this->fatalError("Configuration Error: Please make sure the template cache directory is writeable<BR>
926                     eg. <BR>
927                     chmod 700 {$this->HTML_Template_Flexy['compileDir']}<BR>
928                     chgrp apache_user  {$this->HTML_Template_Flexy['compileDir']}<BR>\n"
929             );
930         }
931         //echo "<PRE>";print_R($config);
932         
933         
934          
935           
936         
937         
938     }
939   
940   
941    
942         
943     
944     
945     /**
946     * Quality Redirector
947     *
948     * Usage in a page.:
949     * HTML_FlexyFramework::run('someurl/someother',array('somearg'=>'xxx'));
950     * ...do clean up...
951     * exit; <- dont cary on!!!!
952     *
953     * You should really
954     * 
955     * @param   string           redirect to url 
956     * @param   array Args Optional      any data you want to send to the next page..
957     * 
958     *
959     * @return   false
960     * @access   public
961     * @static
962     */
963   
964     
965     static function run($request,$args=array()) 
966     {
967         self::$singleton->_run($request,true,$args);
968         return false;
969     }
970     
971     
972     /**
973     * The main execution loop
974     *
975     * recursivly self called if redirects (eg. return values from page start methods)
976     * 
977     * @param   string from $_REQUEST or redirect from it'self.
978     * @param   boolean isRedirect  = is the request a redirect 
979     *
980     *
981     * @return   false || other    false indicates no page was served!
982     * @access   public|private
983     * @see      see also methods.....
984     */
985   
986     function _run($request,$isRedirect = false,$args = array()) 
987     {
988         
989         // clean the request up.
990         $this->calls++;
991         
992         if ($this->calls > 5) {
993             // to many redirections...
994             trigger_error("FlexyFramework:: too many redirects - backtrace me!",E_USER_ERROR);
995             exit;
996         }
997         
998         $newRequest = $this->_getRequest($request,$isRedirect);
999         
1000          
1001         // find the class/file to load
1002         list($classname,$subRequest) = $this->requestToClassName($newRequest,FALSE);
1003         
1004         
1005         $this->debug("requestToClassName return = CLASSNAME: $classname SUB REQUEST: $subRequest");
1006         
1007         // assume that this was handled by getclassname ?????
1008         if (!$classname) {
1009             return false;
1010         }
1011         
1012         // make page data/object accessable at anypoint in time using  this
1013         // not sure if this is used anymore - or even works..?
1014         $classobj = &PEAR::getStaticProperty('HTML_FlexyFramework', 'page');
1015         
1016         $classobj =  new  $classname();  // normally do not have constructors.
1017         
1018         
1019         $classobj->baseURL = $this->baseURL;
1020         $classobj->rootURL = $this->rootURL;
1021         $classobj->rootDir = $this->rootDir;
1022         $classobj->bootLoader  = $this;
1023         $classobj->request = $newRequest;
1024         $classobj->timer = &$this->timer;
1025         
1026         $this->page = $classobj;
1027         if ($this->cli && !$isRedirect ) { // redirect always just takes redirect args..
1028             require_once 'HTML/FlexyFramework/Cli.php';
1029             $fcli = new HTML_FlexyFramework_Cli($this);
1030             $nargs = $fcli->cliParse($classname);
1031             $args = $nargs === false ? $args : $nargs; /// replace if found.
1032             $classobj->cli_args = $nargs;
1033         }
1034         
1035         // echo '<PRE>'; print_r($this);exit;
1036         // echo "CHECK GET AUTH?";
1037         if (!method_exists($classobj, 'getAuth')) {
1038         //    echo "NO GET AUTH?";
1039             $this->fatalError("class $classname does not have a getAuth Method");
1040             return false;
1041         }
1042         
1043         /* check auth on the page */
1044         if (is_string($redirect = $classobj->getAuth())) {
1045             $this->debug("GOT AUTH REDIRECT".$redirect);
1046             return $this->_run($redirect,TRUE);
1047         }
1048         // used HTML_FlexyFramework::run();
1049                  
1050
1051         if ($redirect === false) {
1052             $this->debug("GOT AUTH FALSE");    
1053             return false; /// Access deined!!! - 
1054         }
1055      
1056         // allow the page to implement caching (for the full page..)
1057         // although normally it should implement caching on the outputBody() method.
1058         
1059         if (method_exists($classobj,"getCache")) {
1060             if ($result = $classobj->getCache()) {
1061                 return $result;
1062             }
1063         }
1064         /* allow redirect from start */
1065         if (method_exists($classobj,"start")) {
1066             if (is_string($redirect = $classobj->start($subRequest,$isRedirect,$args)))  {
1067                 $this->debug("REDIRECT $redirect <BR>");
1068                 return $this->_run($redirect,TRUE);
1069             }
1070             if ($redirect === false) {
1071                 return false;
1072             }
1073         }
1074                 
1075
1076          // used HTML_FlexyFramework::run();
1077         
1078         /* load the modules 
1079          * Modules are common page components like navigation headers etc.
1080          * that can have dynamic code.
1081          * Code has been removed now..
1082          */
1083         
1084         
1085         if ($this->timer) {
1086             $this->timer->setMarker("After $request loadModules Modules"); 
1087         }
1088         
1089         /* output it  - (our base page does not implement output for cli. */
1090         
1091         if ( method_exists($classobj,'output')) {
1092             $classobj->output(); 
1093         }
1094         
1095         
1096         if ($this->timer) {
1097             $this->timer->setMarker("After $request output"); 
1098             $this->timer->stop(); //?? really - yes...
1099            
1100             
1101         }
1102         
1103         if ($this->cli) {
1104             return true;
1105         }
1106         
1107         
1108         exit; /// die here...
1109         
1110     }
1111     
1112     /**
1113     * map the request into an object and run the page.
1114     *
1115     * The core of the work is done here.
1116     * 
1117     * 
1118     * @param   request  the request string
1119     * @param   boolean isRedirect - indicates that it should not attempt to strip the .../index.php from the request.
1120     * 
1121     * @access  private
1122     */
1123   
1124     function _getRequest($request, $isRedirect) 
1125     {
1126         
1127          
1128         if ($this->cli) {
1129             return $request;
1130         }
1131         
1132         $startRequest = $request;
1133         $request =@ array_shift(explode('?', $request));
1134         $this->debug("INPUT REQUEST $request<BR>");
1135         if (!$isRedirect) {
1136             // check that request forms contains baseurl????
1137             if (!empty($_SERVER['REDIRECT_STATUS'])  && !empty($_SERVER['REDIRECT_URL'])) {
1138                // phpinfo();exit;
1139                 $sn = $_SERVER['SCRIPT_NAME'];
1140                 $sublen = strlen(substr($sn , 0,  strlen($sn) - strlen(basename($sn)) -1 ));
1141                  //var_dump(array($sn,$subdir,basename($sn)));exit;
1142                 $subreq =  $_SERVER['SCRIPT_NAME'];
1143                 $request = substr($_SERVER['REDIRECT_URL'],$sublen);
1144                 
1145                  
1146             } else {
1147                   
1148              
1149                 $subreq = substr($request,0, strlen($this->baseURL));
1150                 if ($subreq != substr($this->baseURL,0,strlen($subreq))) {
1151                     $this->fatalError(
1152                         "Configuration error: Got base of $subreq which does not 
1153                             match configuration of: $this->baseURL} ");
1154                 }
1155                 $request = substr($request,strlen($this->baseURL));
1156                 
1157             }
1158             
1159              
1160         }
1161        // var_Dump(array('req'=>$request,'subreq'=>$subreq));
1162         
1163         // strip front
1164         // echo "REQUEST WAS: $request<BR>";
1165         // $request = preg_replace('/^'.preg_quote($base_url,'/').'/','',trim($request));
1166         // echo "IS NOW: $request<BR>";
1167         // strip end
1168         // strip valid html stuff
1169         //$request = preg_replace('/\/[.]+/','',$request);
1170         
1171
1172         $request = preg_replace('/^[\/]*/','',$request);
1173         $request = preg_replace('/\?.*$/','',$request);
1174         $request = preg_replace('/[\/]*$/','',$request);
1175         $this->baseRequest = $request;
1176         $request = str_replace('&','',$request); // any other invalid characters???
1177         $request = preg_replace('/\.([a-z]+)$/','',$request);
1178         $this->ext = substr($this->baseRequest , strlen($request));
1179         
1180         // REDIRECT ROO to index.php! for example..
1181         
1182         if (!$request && !$isRedirect) {
1183             if ($this->baseURL && (strlen($startRequest) < strlen($this->baseURL))) {
1184                 // needs to handle https + port
1185                 $http = ((!empty($_SERVER["HTTPS"]) && $_SERVER["HTTPS"]  == 'on')) ? 'https' : 'http';
1186                 $sp = '';
1187                 if (!empty($_SERVER['SERVER_PORT'])) {
1188                     if ((($http == 'http') && ($_SERVER['SERVER_PORT'] == 80)) || (($http == 'https') && ($_SERVER['SERVER_PORT'] == 443))) {
1189                         // standard ports..
1190                     } else {
1191                         $sp .= ':'.((int) $_SERVER['SERVER_PORT']);
1192                     }
1193                 }
1194                 $host = !empty($_SERVER["HTTP_X_FORWARDED_HOST"]) ? $_SERVER["HTTP_X_FORWARDED_HOST"] : $_SERVER["HTTP_HOST"];
1195                 header('Location: '.$http.'://'.$host .$sp . $this->baseURL);
1196  
1197                 exit;
1198             }
1199             $request = "";
1200         }
1201        // var_dump(array($startRequest,$request, $this->baseRequest));
1202         
1203         $this->debug("OUTPUT REQUEST $request<BR>");
1204         
1205         $this->_handleLanguages($request);
1206
1207         
1208         return $request;
1209     }
1210     
1211    
1212     
1213     
1214     /**
1215     * get the Class name and filename to load
1216     *
1217     * Parses the request and converts that into a File + Classname
1218     * if the class doesnt exist it will attempt to find a file below it, and
1219     * call that one with the data.
1220     * Used by the module loader to determine the location of the modules
1221     *   
1222     * @param   request  the request string
1223     * @param   boolean showError - if false, allows you to continue if the class doesnt exist.
1224     * 
1225     *
1226     * @return   array classname, filepath
1227     * @access   private
1228     * @static
1229     */
1230   
1231     function requestToClassName($request,$showError=TRUE) 
1232     {
1233        // if ($request == "error") {
1234        //     return array("HTML_FlexyFramework_Error","");
1235        // }
1236         
1237         // special classes ::
1238         if ($this->cli && in_array($request, array('DataObjects'))) {
1239             require_once 'HTML/FlexyFramework/'. $request . '.php';
1240             return array('HTML_FlexyFramework_'. $request,'');
1241         }
1242         
1243         
1244         $request_array=explode("/",$request);
1245         $original_request_array = $request_array;
1246         $sub_request_array = array();
1247         $l = count($request_array)-1;
1248         if ($l > 10) { // ?? configurable?
1249             //PEAR::raiseError("Request To Long");
1250             $this->fatalError("Request To Long - " . $request);
1251         }
1252
1253         
1254         $classname='';
1255         // tidy up request array
1256         
1257         if ($request_array) {
1258             foreach(array_keys($request_array) as $i) {
1259                 $request_array[$i] = preg_replace('/[^a-z0-9]/i','_',urldecode($request_array[$i]));
1260             }
1261         }
1262         //echo "<PRE>"; print_r($request_array);
1263         // technically each module should do a check here... similar to this..
1264         
1265         
1266         for ($i=$l;$i >-1;$i--) {
1267             $location = implode('/',$request_array) . ".php";
1268             if ($location == '.php') {
1269                 $this->debug("SKIP first path check, as request str is empty");
1270                 break;
1271             }
1272             
1273             $this->debug("baseDIR = {$this->baseDir}");
1274             
1275             $floc = "{$this->baseDir}/$location";
1276             $this->debug("CHECK LOCATION = $location");
1277             
1278             
1279             
1280             if (!empty($location) && $location != '.php' && @file_exists($floc )) {             // hide? error???
1281                 require_once $floc ;
1282                 $classname = $this->classPrefix . implode('_',$request_array);
1283                 $this->debug("FOUND FILE - SET CLASS = $classname <BR>");
1284                 break;
1285             } 
1286             
1287             // in here check the 'projectExtends' versions..?
1288             
1289             if(!empty($this->projectExtends)){
1290                 $this->debug("Trying project Extends<BR>");
1291                 $has_extend_class = false;
1292                 
1293                 foreach ($this->projectExtends as $e){
1294                     $floc = "{$this->rootDir}/{$e}/$location";
1295                     $this->debug("Trying file: $floc");
1296                     if (!empty($location) && @file_exists($floc)) {             // hide? error???
1297                         require_once $floc ;
1298                         $classname = $e . '_' . implode('_',$request_array);
1299                         $has_extend_class = true;
1300                         $this->debug("FOUND FILE - SET CLASS = $classname <BR>");
1301                         break;
1302                     } 
1303                 }
1304                 
1305                 if(!empty($has_extend_class)){
1306                     break;
1307                 }
1308                 
1309             }
1310             
1311             
1312             $this->debug("$floc  - !!FOUND NOT FILE!!");
1313             
1314             $sub_request_array[] = $original_request_array[$i];
1315             unset($request_array[$i]);
1316             unset($original_request_array[$i]);
1317         }
1318          
1319         // is this really needed here!
1320         
1321         $classname = preg_replace('/[^a-z0-9]/i','_',$classname);
1322         $this->debug("CLASSNAME is '$classname'");
1323         // got it ok.
1324         if ($classname && class_exists($classname)) {
1325             $this->debug("using $classname");
1326             //print_r($sub_request_array);
1327             return array($classname,implode('/',array_reverse($sub_request_array)));
1328         }
1329         // stop looping..
1330         if ($showError) {
1331             $this->fatalError("INVALID REQUEST: \n $request FILE:".$this->baseDir. "/{$location}  CLASS:{$classname}");
1332             
1333         } 
1334         
1335         
1336         $this->debug("Try base {$this->baseDir}.php");   
1337         // try {project name}.php
1338         // this used to be silenced @ - if this fails we are usually pretty fried..
1339         
1340         if (file_exists($this->baseDir.'.php')) {
1341             
1342             
1343             $classname = str_replace('/', '_', $this->project); //   basename($this->baseDir);
1344             
1345             $this->debug("FOUND {$this->baseDir} requring and checking class $classname");   
1346             require_once $this->baseDir.'.php';
1347             $this->debug("require success");
1348             
1349             if (!class_exists($classname)) {
1350                 $this->fatalError( "{$this->baseDir}.php did not contain class $classname");
1351             }
1352         }
1353         // got projectname.php
1354         if ($classname && class_exists($classname)) {
1355             $this->debug("using $classname");
1356             //print_r($sub_request_array);
1357              
1358             return array($classname,implode('/',array_reverse($sub_request_array)));
1359         }    
1360             
1361         
1362         $this->fatalError( "can not find {$this->baseDir}.php"); // dies..
1363               
1364      
1365     }
1366     
1367     /**
1368     * ensure Single CLi process 
1369     * usage:
1370     * HTML_FlexyFramework::ensureSingle(__FILE__, $this);
1371     * @param string filename of running class
1372     * @param object class
1373     */
1374       
1375     static function ensureSingle($sig, $class) 
1376     {
1377         //echo "check single: $sig / ". get_class($class) ."\n";
1378         $ff = HTML_FlexyFramework::get();
1379         if (function_exists('posix_getpwuid')) {
1380             $uinfo = posix_getpwuid( posix_getuid () ); 
1381             $user = $uinfo['name'];
1382         } else {
1383             $user = getenv('USERNAME'); // windows.
1384         }
1385         $fdir = ini_get('session.save_path') .'/' . 
1386                 $user . '_cli_' . $ff->project ;
1387      
1388         
1389         if (!file_exists($fdir)) {
1390             mkdir($fdir, 0777);
1391         }
1392         
1393         $lock = $fdir.'/'. md5($sig) . '.' . get_class($class);
1394         //echo "check single: lock : $lock\n";
1395         if (!file_exists($lock)) {
1396             file_put_contents($lock, getmypid());
1397             //echo "check single: lock : DOES NOT EXIST\n";
1398             return true;
1399         }
1400         $oldpid = file_get_contents($lock);
1401         if (!file_exists('/proc/' . $oldpid)) {
1402             
1403             file_put_contents($lock, getmypid());
1404           //  echo "check single: lock : PROC NOT EXIST\n";
1405             return true;
1406         }
1407         // file exists, but process might not be the same..
1408         $name = array_pop(explode('_', get_class($class)));
1409         $cmd = file_get_contents('/proc/' . $oldpid.'/cmdline');
1410         if (!preg_match('/php/i',$cmd) || !preg_match('/'.$name.'/i',$cmd)) {
1411             file_put_contents($lock, getmypid());
1412             //echo "check single: lock : CMDLINE !have PHP \n";
1413             return true;
1414         }
1415         die("process " . $sig . " already running\n");
1416         
1417     }
1418     /**
1419      * removes the lock for the applicaiton - use with care...
1420      *
1421      *
1422      */
1423     static function ensureSingleClear($sig, $class)
1424     {
1425         $ff = HTML_FlexyFramework::get();
1426         if (function_exists('posix_getpwuid')) {
1427             $uinfo = posix_getpwuid( posix_getuid () ); 
1428             $user = $uinfo['name'];
1429         } else {
1430             $user = getenv('USERNAME'); // windows.
1431         }
1432         $fdir = ini_get('session.save_path') .'/' . 
1433                 $user . '_cli_' . $ff->project ;
1434      
1435         
1436         if (!file_exists($fdir)) {
1437             mkdir($fdir, 0777);
1438         }
1439         $lock = $fdir.'/'. md5($sig);
1440         if (!file_exists($lock)) {
1441             
1442             return true;
1443         }
1444         unlink($lock);;
1445     }
1446     
1447     
1448     /**
1449     * Debugging 
1450     * 
1451     * @param   string  text to output.
1452     * @access   public
1453     */
1454   
1455     function debug($output) {
1456        
1457         if (empty($this->debug)) {  
1458             return;
1459         }
1460         echo $this->cli ? 
1461               "HTML_FlexyFramework::debug  - ".$output."\n" 
1462             : "<B>HTML_FlexyFramework::debug</B> - ".$output."<BR>\n";
1463     
1464     }
1465     /**
1466     * Raises a fatal error. - normally only used when setting up to help get the config right.
1467     * 
1468     * can redirect to fatal Action page.. - hoepfully not issued before basic vars are set up..
1469     * 
1470     * @param   string  text to output.
1471     * @access   public
1472     */
1473     
1474     function fatalError($msg,$showConfig = 0) 
1475     {
1476         
1477         
1478          if ($this->fatalAction) {
1479             HTML_FlexyFramework::run($this->fatalAction,$msg);
1480             exit;
1481         }
1482         
1483         echo $this->cli ? $msg ."\n" : "<H1>$msg</H1>configuration information<PRE>";
1484         if ($showConfig) {
1485             
1486             print_r($this);
1487         }
1488         $ff = HTML_FlexyFramework::get();
1489         $ff->debug($msg);
1490         exit;
1491     }    
1492 }
1493
1494