Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
page_tag_listing_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
30 {
31 
36  function __construct(&$pm)
37  {
38  parent::__construct($pm);
39  $this->vars = Array(
40  'tag_max_size' => Array(
41  'added' => '0.0.1',
42  'type' => 'int',
43  'default' => '10',
44  ),
45  'first_page_only' => Array(
46  'added' => '0.0.1',
47  'type' => 'boolean',
48  'default' => FALSE,
49  'parameters' => Array(
50  'allow_empty' => FALSE,
51  ),
52  ),
53  );
54 
55  }//end constructor
56 
57 
64  function getEventList()
65  {
66  return Array(
67  Array(
68  'event_name' => 'requestKeywords',
69  'broadcast_type_code' => 'content_type',
70  'broadcast_strict_type_code' => FALSE,
71  'options' => Array(
72  'side_of_link' => 'major',
73  'indirect' => TRUE,
74  'is_exclusive' => NULL,
75  'is_dependant' => 1,
76  'value' => '',
77  'link_type' => SQ_LINK_TYPE_2 | SQ_LINK_TYPE_1,
78  ),
79  ),
80  );
81 
82  }//end getEventList()
83 
84 
85 }//end class
86 ?>