Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
page_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
39  {
40  Asset_Management::__construct($pm);
41 
42  $this->vars = Array(
43  'name' => Array(
44  'added' => '0.0.1',
45  'type' => 'text',
46  'default' => '',
47  'description' => 'The full name of the page',
48  'update_fn' => '',
49  'is_admin' => FALSE,
50  'is_contextable' => TRUE,
51  ),
52  'short_name' => Array(
53  'added' => '0.0.1',
54  'type' => 'text',
55  'default' => '',
56  'description' => 'The short name of the page (often used in menus)',
57  'update_fn' => '',
58  'is_admin' => FALSE,
59  'is_contextable' => TRUE,
60  ),
61  );
62 
63  }//end constructor
64 
65 
66 }//end class
67 
68 ?>