Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
cron_job_future_status_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' => 'one_off',
47  ),
48  'status' => Array(
49  'added' => '0.1',
50  'type' => 'int',
51  'default' => 0,
52  'description' => 'The status to change the asset to',
53  ),
54  'dependants_only' => Array(
55  'added' => '0.2',
56  'type' => 'boolean',
57  'default' => FALSE,
58  'parameters' => Array(
59  'allow_empty' => FALSE,
60  ),
61  'description' => 'If the status change should cascade to all children',
62  ),
63  );
64 
65  }//end constructor
66 
67 
68 }//end class
69 ?>