50 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <extension type="plugin" group="content" method="upgrade">
 | |
| 	<name>plg_content_vote</name>
 | |
| 	<author>Joomla! Project</author>
 | |
| 	<creationDate>2005-11</creationDate>
 | |
| 	<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
 | |
| 	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
 | |
| 	<authorEmail>admin@joomla.org</authorEmail>
 | |
| 	<authorUrl>www.joomla.org</authorUrl>
 | |
| 	<version>3.0.0</version>
 | |
| 	<description>PLG_VOTE_XML_DESCRIPTION</description>
 | |
| 	<namespace path="src">Joomla\Plugin\Content\Vote</namespace>
 | |
| 	<files>
 | |
| 		<folder plugin="vote">services</folder>
 | |
| 		<folder>src</folder>
 | |
| 		<folder>tmpl</folder>
 | |
| 	</files>
 | |
| 	<languages>
 | |
| 		<language tag="en-GB">language/en-GB/plg_content_vote.ini</language>
 | |
| 		<language tag="en-GB">language/en-GB/plg_content_vote.sys.ini</language>
 | |
| 	</languages>
 | |
| 	<config>
 | |
| 		<fields name="params">
 | |
| 			<fieldset name="basic">
 | |
| 				<field
 | |
| 					name="position"
 | |
| 					type="list"
 | |
| 					label="PLG_VOTE_POSITION_LABEL"
 | |
| 					default="top"
 | |
| 					validate="options"
 | |
| 					>
 | |
| 					<option value="top">PLG_VOTE_TOP</option>
 | |
| 					<option value="bottom">PLG_VOTE_BOTTOM</option>
 | |
| 				</field>
 | |
| 				<field
 | |
| 					name="show_total_votes"
 | |
| 					type="radio"
 | |
| 					label="PLG_VOTE_TOTAL_VOTES_LABEL"
 | |
| 					layout="joomla.form.field.radio.switcher"
 | |
| 					default="0"
 | |
| 					filter="integer"
 | |
| 					>
 | |
| 					<option value="0">JHIDE</option>
 | |
| 					<option value="1">JSHOW</option>
 | |
| 				</field>
 | |
| 			</fieldset>
 | |
| 		</fields>
 | |
| 	</config>
 | |
| </extension>
 |