Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
report_links_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
38  function __construct(&$pm)
39  {
40  $this->vars['display_options'] = Array(
41  'added' => '0.1',
42  'type' => 'serialise',
43  'default' => Array(
44  'internal_section' => TRUE,
45  'internal_broken' => TRUE,
46  'internal_working' => TRUE,
47  'external_section' => TRUE,
48  'external_broken' => TRUE,
49  'external_working' => TRUE,
50  'email_section' => TRUE,
51  'email_broken' => TRUE,
52  'email_working' => TRUE,
53  ),
54  );
55  $this->vars['report_broken_links'] = Array(
56  'added' => '0.2',
57  'type' => 'boolean',
58  'default' => FALSE,
59  'parameters' => Array(
60  'allow_empty' => FALSE,
61  ),
62  );
63  $this->vars['report_info'] = Array(
64  'added' => '0.2',
65  'type' => 'text',
66  'default' => '',
67  );
68  $this->vars['statuses'] = Array(
69  'added' => '0.3',
70  'type' => 'serialise',
71  'default' => Array('16'),
72  'description' => 'Statuses that are being listed.',
73  );
74  $this->Asset_Management($pm);
75 
76  }//end constructor
77 
78 
79 }//end class
80 
81 ?>