...
This tag contains meta information about the plugin which also are displayed in frontend. The tag has the attribute "active" which should have the value "1".
Tag name | Description | Required? | Example |
---|
plugin_name | Full plugin name. | yes | Code Block |
---|
| <general active="1">
<plugin_name>Linkchecker</plugin_name>
<plugin_foldername>linkchecker</plugin_foldername>
<uuid>428CB6BC-2DE3-284D-34C9-C30C010F6B20</uuid>
<description>Checks intern and extern links to valid</description>
<author>Frederic Schneider (4fb)</author>
<copyright>four for business AG</copyright>
<mail>frederic.schneider@4fb.de</mail>
<website>http://www.4fb.de</website>
<version>2.0.1</version>
</general> |
|
plugin_foldername | Name of the plugin folder. | yes |
uuid | The universal Unique ID. | yes |
description | Description of the plugins functions. | no |
author | Author | yes |
copyright | Copyright notice | yes |
mail | Mail address for support | no |
website | Website address for support | no |
version | Version of the plugin | yes |
Tag requirements - requirements for new plugins
Tag name | Description | Available attributes | Example |
---|
contenido | Versions of CONTENIDO | Name | Description |
---|
minversion | First compatible version of CONTENIDO. Required | maxversion | Last compatible version of CONTENIDO |
| Code Block |
---|
| <requirements php="5.2.3">
<contenido minversion="4.9.0" />
<extension name="mysql" />
<class name="cRegister" />
<function name="i18n" />
</requirements> |
|
extension | PHP extensions | Name | Description |
---|
name | Name of the extension |
|
class | PHP classes | Name | Description |
---|
name | Name of the class |
|
function | PHP functions | Name | Description |
---|
name | Name of the function |
|
Tag dependencies - dependencies to other plugins
...
This tag contains information for plugin dependencies. The plugin manager checks if uuid is available in the database and if the required plugin is active.
Tag name | Description | Available attributes | Example |
---|
depend | Dependencies to other plugins | Name | Description |
---|
uuid | The universal Unique ID. Required. | minversion | First compatible version of plugin. | maxversion | Last compatible version of plugin. |
| Code Block |
---|
| <dependencies>
<depend uuid="82b117e94bb2cbcbce4e56b79a7d0c23" minversion="1.0.0" maxversion="1.0.1">Smarty Wrapper</depend>
</dependencies> |
|
Tag contenido - database specific information
...
The order of the XML tags must be the same as listed below.
Tag name | Description | Available attributes | Example |
---|
areas | Managing areas | Name | Description |
---|
parent | Name of the parent area or 0 | relevant | Since CONTENIDO 4.9.10: Show this area on menu (1) or not (0). This attribute is optional. Before version 4.9.10, relevant is at all time active. | menuless | Area has left menu frame (0) or not (1) |
| Code Block |
---|
| <areas>
<area parent="linkchecker" relevant="1" menuless="1">lc_whitelist</area>
</areas> |
|
actions | Managing actions | Name | Description |
---|
area | Name of the area |
| Code Block |
---|
| <actions>
<action area="linkchecker">linkchecker</action>
</actions> |
|
frames | Managing frames | Name | Description |
---|
area | Name of the area | filetype | Type of the file (mostly "main") | name | relative path to frame include file | frameId | Number of the frame (from 1 to 4) |
| Code Block |
---|
| <frames>
<frame area="linkchecker" filetype="main" name="linkchecker/includes/include.linkchecker.php" frameId="4" />
</frames> |
|
nav_main | Managing main navigations | Name | Description |
---|
name | Name of the menu (since CONTENIDO 4.9.10) |
| |
|
<nav>locationname<<nav name="menuname">navigation/menuname/main</nav>
</nav_main> |
|
nav_sub | Managing sub navigations | Name | Description |
---|
area | Name of the area | level | Navigation level (0 or 1) | navm | Main navigation ID |
| Code Block |
---|
| <nav_sub>
<nav area="linkchecker" level="0" navm="1">linkchecker/xml/lang_de_DE.xml;navigation/content/linkchecker/main</nav>
</nav_sub> |
|
Tag content_types - registration of own content types
This tag contains information to register own content types.
Tag name | Description | Required? | Example |
---|
type | Content type name | yes | Code Block |
---|
| <content_types>
<type>CMS_NAME</type>
</content_types> |
|
plugin_install.sql, plugin_uninstall.sql and update sql files
...
Furthermore, it is only possible to execute the following database operations.
Installation type | Available operations |
---|
Installation | - CREATE TABLE IF NOT EXISTS
INSERT INTO - UPDATE
- ALTER TABLE
|
Uninstall | |
Update | - UPDATE
- ALTER TABLE
- DELETE FROM
- DROP TABLE
|
The prefix placeholder contains the common database table prefix (per default: "con_") following by the chars "pi" for plugin.
...