RefreshDatabaseCache.php
[Pman.Core] / RefreshDatabaseCache.php
1 <?php
2
3 /**
4  * 
5  * this is technically a cli wrapper for the generator..
6  * 
7  * we will test it on the web initially..
8  * 
9  * 
10  */
11 require_once 'Pman.php';
12
13 class Pman_Core_RefreshDatabaseCache extends Pman
14 {     
15     static $cli_desc = "Refresh the database schema cache";
16    
17     var $cli = false;
18     function getAuth() {
19         
20         
21         $ff = HTML_FlexyFramework::get();
22         if (!empty($ff->cli)) {
23             $this->cli = true;
24             return true;
25         }
26         parent::getAuth(); // load company!
27         $au = $this->getAuthUser();
28         if (!$au || $au->company()->comptype != 'OWNER') {
29             $this->jerr("Not authenticated", array('authFailure' => true));
30         }
31         $this->authUser = $au;
32         return true;
33     
34     
35     }
36      
37     function get($args, $opts=array())
38     {
39         //print_r($opts);exit;
40         
41         
42         // technically it would be good to trash the cached ini files here.. 
43         // however we can not really do that, as the ownships are off..
44         //we can however regen our own files..
45         //DB_DataObject::debugLevel(1);
46         //HTML_FlexyFramework::get()->debug = 1;
47         HTML_FlexyFramework::get()->generateDataobjectsCache(true);
48         
49         die("done!");
50     }
51     
52 }