-
Notifications
You must be signed in to change notification settings - Fork 1
/
cfarticletitle.xml
33 lines (33 loc) · 1.09 KB
/
cfarticletitle.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<extension type="plugin" group="content" method="upgrade">
<name>Content - Custom Field Article Title</name>
<author>TLWebdesign</author>
<creationDate>2022-08-24</creationDate>
<copyright>(C) 2022 TLWebdesign.nl</copyright>
<license>GNU General Public License version 3 or later; see LICENSE.txt</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.tlwebdesign.nl</authorUrl>
<version>NL</version>
<description>A Joomla content plugin to automatically put an article title in a specified custom field of type text</description>
<files>
<filename plugin="cfarticletitle">cfarticletitle.php</filename>
</files>
<config>
<fields name="params">
<fieldset name="basic">
<field
name="cfname"
type="sql"
label="Custom field"
default=""
query="SELECT name, title FROM #__fields WHERE state = 1 AND type = 'text'"
key_field="name"
value_field="title"
required="true"
>
<option value="">Please select a custom field</option>
</field>
</fieldset>
</fields>
</config>
</extension>