Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
content_type_code_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
38  function __construct(&$pm)
39  {
40  $this->Asset_Management($pm);
41 
42  $this->vars = Array(
43  'edit_content' => Array(
44  'added' => '0.0.1',
45  'type' => 'text',
46  'default' => '',
47  'update_fn' => '',
48  'description' => 'The raw content of the editor',
49  ),
50  'line_numbers' => Array(
51  'name' => 'Line Number Options',
52  'type' => 'serialise',
53  'description' => 'Whether to use line numbers, and what options to use',
54  'default' => Array(),
55  'protected' => FALSE,
56  ),
57  );
58 
59  }//end constructor
60 
61 
62 }//end class
63 
64 ?>