Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
page_rss_feed_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
38  function Page_RSS_Feed_Management(&$pm)
39  {
40  $this->Asset_Management($pm);
41  $this->vars = Array(
42  'rss_types' => Array(
43  'added' => '0.1',
44  'type' => 'selection',
45  'default' => 'rss_1.0',
46  'parameters' => Array(
47  'multiple' => FALSE,
48  'allow_empty' => FALSE,
49  'options' => Array(
50  'rss_1.0' => 'RSS 1.0',
51  'rss_2.0' => 'RSS 2.0',
52  'atom_1.0' => 'Atom 1.0',
53  ),
54  ),
55  ),
56  'num_assets_as_items' => Array(
57  'added' => '0.1',
58  'type' => 'int',
59  'default' => 0,
60  'parameters' => Array(
61  'allow_negative' => FALSE,
62  'allow_empty' => FALSE,
63  ),
64  ),
65  'items' => Array(
66  'added' => '0.1',
67  'type' => 'serialise',
68  'default' => Array(),
69  ),
70  'channel' => Array(
71  'added' => '0.1',
72  'type' => 'serialise',
73  'default' => Array(),
74  ),
75  'image' => Array(
76  'added' => '0.1',
77  'type' => 'serialise',
78  'default' => Array(),
79  ),
80  'http_auth' => Array(
81  'added' => '0.1',
82  'type' => 'boolean',
83  'default' => FALSE,
84  'parameters' => Array(
85  'allow_empty' => FALSE,
86  ),
87  ),
88  );
89 
90  }//end constructor
91 
92 
93 }//end class
94 
95 ?>