first commit
This commit is contained in:
77
plugins/fields/editor/editor.xml
Normal file
77
plugins/fields/editor/editor.xml
Normal file
@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<extension type="plugin" group="fields" method="upgrade">
|
||||
<name>plg_fields_editor</name>
|
||||
<author>Joomla! Project</author>
|
||||
<creationDate>2016-03</creationDate>
|
||||
<copyright>(C) 2016 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.7.0</version>
|
||||
<description>PLG_FIELDS_EDITOR_XML_DESCRIPTION</description>
|
||||
<namespace path="src">Joomla\Plugin\Fields\Editor</namespace>
|
||||
<files>
|
||||
<folder>params</folder>
|
||||
<folder plugin="editor">services</folder>
|
||||
<folder>src</folder>
|
||||
<folder>tmpl</folder>
|
||||
</files>
|
||||
<languages>
|
||||
<language tag="en-GB">language/en-GB/plg_fields_editor.ini</language>
|
||||
<language tag="en-GB">language/en-GB/plg_fields_editor.sys.ini</language>
|
||||
</languages>
|
||||
<config>
|
||||
<fields name="params">
|
||||
<fieldset name="basic">
|
||||
<field
|
||||
name="buttons"
|
||||
type="radio"
|
||||
label="PLG_FIELDS_EDITOR_PARAMS_SHOW_BUTTONS_LABEL"
|
||||
layout="joomla.form.field.radio.switcher"
|
||||
default="0"
|
||||
filter="integer"
|
||||
>
|
||||
<option value="0">JHIDE</option>
|
||||
<option value="1">JSHOW</option>
|
||||
</field>
|
||||
|
||||
<field
|
||||
name="hide"
|
||||
type="plugins"
|
||||
label="PLG_FIELDS_EDITOR_PARAMS_BUTTONS_HIDE_LABEL"
|
||||
folder="editors-xtd"
|
||||
multiple="true"
|
||||
layout="joomla.form.field.list-fancy-select"
|
||||
/>
|
||||
|
||||
<field
|
||||
name="width"
|
||||
type="text"
|
||||
label="PLG_FIELDS_EDITOR_PARAMS_WIDTH_LABEL"
|
||||
default="100%"
|
||||
/>
|
||||
|
||||
<field
|
||||
name="height"
|
||||
type="text"
|
||||
label="PLG_FIELDS_EDITOR_PARAMS_HEIGHT_LABEL"
|
||||
default="250px"
|
||||
/>
|
||||
|
||||
<field
|
||||
name="filter"
|
||||
type="list"
|
||||
label="PLG_FIELDS_EDITOR_PARAMS_FILTER_LABEL"
|
||||
class="list"
|
||||
default="\Joomla\CMS\Component\ComponentHelper::filterText"
|
||||
validate="options"
|
||||
>
|
||||
<option value="0">JNO</option>
|
||||
<option value="raw">JLIB_FILTER_PARAMS_RAW</option>
|
||||
<option value="safehtml">JLIB_FILTER_PARAMS_SAFEHTML</option>
|
||||
<option value="\Joomla\CMS\Component\ComponentHelper::filterText">JLIB_FILTER_PARAMS_TEXT</option>
|
||||
</field>
|
||||
</fieldset>
|
||||
</fields>
|
||||
</config>
|
||||
</extension>
|
||||
Reference in New Issue
Block a user