| [ Index ] | PHP Cross Reference of Mambo 4.6.5 |
|
| [ Variables ] [ Functions ] [ Classes ] [ Constants ] [ Statistics ] | ||
[Summary view] [Print] [Text view]
1 <?xml version="1.0" encoding="iso-8859-1"?> 2 <mosinstall type="component" version="4.6"> 3 <name>Newsfeeds</name> 4 <author>Mambo Foundation</author> 5 <creationDate>April 2007</creationDate> 6 <copyright>copyright (C) 2000 - 2007 Mambo Foundation Inc.</copyright> 7 <license>http://www.opensource.org/licenses/gpl-license.php GNU/GPL v.2</license> 8 <authorEmail>core@mambo-foundation.org</authorEmail> 9 <authorUrl>mambo-foundation.org</authorUrl> 10 <version>4.6.x.7</version> 11 <description>This component manages RSS/RDF newsfeeds</description> 12 <administration> 13 <menu>News Feeds</menu> 14 <submenu> 15 <menu link="option=com_newsfeeds">Manage News Feeds</menu> 16 <menu link="option=com_categories&section=com_newsfeeds">Manage Categories</menu> 17 </submenu> 18 <files> 19 <filename>admin.newsfeeds.html.php</filename> 20 <filename>admin.newsfeeds.php</filename> 21 <filename>newsfeeds.class.php</filename> 22 <filename>newsfeeds.xml</filename> 23 <filename>index.html</filename> 24 <filename>toolbar.newsfeeds.html.php</filename> 25 <filename>toolbar.newsfeeds.php</filename> 26 </files> 27 </administration> 28 <files> 29 <filename>newsfeeds.html.php</filename> 30 <filename>newsfeeds.php</filename> 31 <filename>index.html</filename> 32 </files> 33 <install> 34 <queries> 35 <query>CREATE TABLE `mos_newsfeeds` ( 36 `catid` int(11) NOT NULL default '0', 37 `id` int(11) NOT NULL auto_increment, 38 `name` text NOT NULL, 39 `link` text NOT NULL, 40 `filename` varchar(200) default NULL, 41 `published` tinyint(1) NOT NULL default '0', 42 `numarticles` int(11) unsigned NOT NULL default '1', 43 `cache_time` int(11) unsigned NOT NULL default '3600', 44 `checked_out` tinyint(3) unsigned NOT NULL default '0', 45 `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', 46 `ordering` int(11) NOT NULL default '0', 47 PRIMARY KEY (`id`), 48 KEY `published` (`published`) 49 ); 50 </query> 51 </queries> 52 </install> 53 <params> 54 <param name="menu_image" type="imagelist" directory="/images/stories" hide_default="1" default="" label="Menu Image" description="A small image to be placed to the left or right of your menu item, images must be in images/stories/" /> 55 <param name="pageclass_sfx" type="text" size="20" default="" label="Page Class Suffix" description="A suffix to be applied to the css classes of the page, this allows individual page styling" /> 56 <param name="back_button" type="list" default="" label="Back Button" description="Show/Hide a Back Button, that returns you to the previously view page"> 57 <option value="">Use Global</option> 58 <option value="0">Hide</option> 59 <option value="1">Show</option> 60 </param> 61 <param name="page_title" type="radio" default="1" label="Page Title" description="Show/Hide the pages Title"> 62 <option value="0">Hide</option> 63 <option value="1">Show</option> 64 </param> 65 <param name="header" type="text" size="30" default="" label="Page Title" description="Text to display at the top of the page. If left blank, the Menu name will be used instead" /> 66 <param name="@spacer" type="spacer" default="" label="" description="" /> 67 <param name="other_cat_section" type="radio" default="1" label="Category List - Section" description="Show/Hide the List of Categories in List view page"> 68 <option value="0">Hide</option> 69 <option value="1">Show</option> 70 </param> 71 <param name="@spacer" type="spacer" default="" label="" description="" /> 72 <param name="other_cat" type="radio" default="1" label="Category List - Category" description="Show/Hide the List of Categories in Table view page"> 73 <option value="0">Hide</option> 74 <option value="1">Show</option> 75 </param> 76 <param name="cat_description" type="radio" default="1" label="Category Description" description="Show/Hide the Description for the list of other catgeories"> 77 <option value="0">Hide</option> 78 <option value="1">Show</option> 79 </param> 80 <param name="cat_items" type="radio" default="1" label="# Category Items" description="Show/Hide the number of items in each category"> 81 <option value="0">Hide</option> 82 <option value="1">Show</option> 83 </param> 84 <param name="@spacer" type="spacer" default="" label="" description="" /> 85 <param name="description" type="radio" default="1" label="Description" description="Show/Hide the Description below"> 86 <option value="0">Hide</option> 87 <option value="1">Show</option> 88 </param> 89 <param name="description_text" type="textarea" default="" label="Description Text" rows="5" cols="30" description="Description for page"/> 90 <param name="image" type="imagelist" directory="/images/stories" hide_default="1" default="-1" label="Image" description="Image for page, must be located in the /images/stories folder. Default will load web_links.jpg, No image will mean an image is not loaded" /> 91 <param name="image_align" type="radio" default="right" label="Image Align" description="Alignment of the image"> 92 <option value="left">Left</option> 93 <option value="right">Right</option> 94 </param> 95 <param name="@spacer" type="spacer" default="" label="" description="" /> 96 <param name="@spacer" type="spacer" default="" label="" description="" /> 97 <param name="headings" type="radio" default="1" label="Table Headings" description="Show/Hide the Table Headings"> 98 <option value="0">Hide</option> 99 <option value="1">Show</option> 100 </param> 101 <param name="name" type="radio" default="1" label="Name Column" description="Show/Hide the Feed Name column"> 102 <option value="0">Hide</option> 103 <option value="1">Show</option> 104 </param> 105 <param name="articles" type="radio" default="1" label="# Articles Column" description="Show/Hide the # of articles in the feed"> 106 <option value="0">Hide</option> 107 <option value="1">Show</option> 108 </param> 109 <param name="link" type="radio" default="1" label="Link Column" description="Show/Hide the Feed Link column"> 110 <option value="0">Hide</option> 111 <option value="1">Show</option> 112 </param> 113 <param name="@spacer" type="spacer" default="" label="" description="" /> 114 <param name="@spacer" type="spacer" default="" label="" description="" /> 115 <param name="feed_image" type="radio" default="1" label="Feed Image" description="Show/Hide the image of the feed"> 116 <option value="0">Hide</option> 117 <option value="1">Show</option> 118 </param> 119 <param name="feed_descr" type="radio" default="1" label="Feed Description" description="Show/Hide the description text of the feed"> 120 <option value="0">Hide</option> 121 <option value="1">Show</option> 122 </param> 123 <param name="item_descr" type="radio" default="1" label="Item Description" description="Show/Hide the description or intro text of an item"> 124 <option value="0">Hide</option> 125 <option value="1">Show</option> 126 </param> 127 <param name="word_count" type="text" size="6" default="0" label="Word Count" description="Allows you to limit the amount of visible item description text. 0 will show all the text" /> 128 </params> 129 </mosinstall>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed May 23 00:05:01 2012 | Cross-referenced by PHPXref 0.7 |
| Mambo API: Mambo is Free software released under the GNU/General Public License, Version 2 |