Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
cron_job_regenerate_report_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
41  {
42  Asset_Management::__construct($pm);
43 
44  $this->vars = Array(
45  'type' => Array(
46  'default' => 'repeating',
47  ),
48  'when' => Array(
49  'default' => 'TI='.time().',15,60',
50  'description' => 'encoded when str for cron job, default is repeating time interval',
51  ),
52  'asset' => Array(
53  'type' => 'assetid',
54  'default' => '',
55  'description' => 'the report asset that we are working on',
56  ),
57  );
58 
59  }//end constructor
60 
61 
62 }//end class
63 ?>