Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
page_multiple_page_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
30 {
31 
32 
37  function __construct(&$pm)
38  {
39  $this->Asset_Management($pm);
40 
41  $this->vars['current_page_ids'] = 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  'is_exclusive' => NULL,
67  'is_dependant' => 1,
68  'value' => '',
69  'link_type' => SQ_LINK_TYPE_2 | SQ_LINK_TYPE_1,
70  ),
71  ),
72  );
73 
74  }//end getEventList()
75 
76 
77 }//end class
78 
79 ?>