Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
cron_job_metadata_triggers_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
37  function __construct(&$pm)
38  {
39  $this->Asset_Management($pm);
40  $this->vars = Array(
41  'type' => Array(
42  'default' => 'repeating',
43  ),
44  'when' => Array(
45  'default' => 'ET=',
46  ),
47  'ignore_date' => Array(
48  'added' => '0.1',
49  'type' => 'datetime',
50  'default' => '2008-01-01 00:00:00',
51  'parameters' => Array(
52  'allow_null' => TRUE,
53  ),
54  ),
55  'use_cron_last_run' => Array(
56  'added' => '0.2',
57  'type' => 'boolean',
58  'default' => '0',
59  'parameters' => Array(
60  'allow_empty' => false,
61  ),
62  ),
63  );
64 
65  }//end constructor
66 
67 
68 }//end class
69 ?>