Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
link_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  'name' => Array(
46  'added' => '0.1',
47  'type' => 'text',
48  'default' => '',
49  'is_admin' => FALSE,
50  'is_contextable'=> TRUE,
51  ),
52  'link_url' => Array(
53  'added' => '0.1',
54  'type' => 'text',
55  'default' => '',
56  'is_admin' => FALSE,
57  ),
58  'link_asset_id' => Array(
59  'added' => '0.1',
60  'type' => 'assetid',
61  'default' => '',
62  ),
63  'link_relation' => Array(
64  'added' => '0.1',
65  'type' => 'text',
66  'default' => '',
67  ),
68  );
69 
70  }//end constructor
71 
72 
73 }//end class
74 ?>