Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
log_manager_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
31 {
32 
33 
41  {
42  Asset_Management::__construct($pm);
43 
44  $this->vars = Array(
45  'enabled' => Array(
46  'added' => '0.1',
47  'type' => 'boolean',
48  'default' => TRUE,
49  'parameters' => Array(
50  'allow_empty' => FALSE,
51  ),
52  'description' => 'A flag which enables or disables logging',
53  ),
54  'logs' => Array(
55  'added' => '0.1',
56  'type' => 'serialise',
57  'default' => Array(),
58  'description' => 'Log metadata relating to rotations',
59  ),
60  'log_rotate_time' => Array(
61  'added' => '0.1',
62  'type' => 'int',
63  'default' => '1',
64  'description' => 'Log rotation time',
65  ),
66  );
67 
68 
69  }//end constructor
70 
71 
72 }//end class
73 
74 ?>