Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
cron_job_refresh_cache_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  'max_execution_time' => Array(
49  'type' => 'int',
50  'default' => 0,
51  'description' => 'the max execution time for each HTTP Request to URL',
52  ),
53  'asset' => Array(
54  'type' => 'assetid',
55  'default' => '',
56  'description' => 'the report asset that we are working on',
57  ),
58  );
59 
60  }//end constructor
61 
62 
63 }//end class
64 ?>