Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
paint_layout_page_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
30 {
31 
32 
38  {
39  Asset_Management::__construct($pm);
40 
41  $this->vars['types'] = Array(
42  'added' => '0.1',
43  'type' => 'serialise',
44  'default' => Array(),
45  );
46 
47  }//end constructor
48 
49 
56  function getEventList()
57  {
58  return Array(
59  Array(
60  'event_name' => 'requestKeywords',
61  'broadcast_type_code' => 'content_type',
62  'broadcast_strict_type_code' => FALSE,
63  'options' => Array(
64  'side_of_link' => 'major',
65  'indirect' => TRUE,
66  'exclusive' => NULL,
67  'dependant' => 1,
68  'is_exclusive' => NULL,
69  'is_dependant' => 1,
70  'value' => '',
71  'link_type' => SQ_LINK_TYPE_2 | SQ_LINK_TYPE_1,
72  ),
73  ),
74  );
75 
76  }//end getEventList()
77 
78 
79 }//end class
80 
81 ?>