A plugin is a separate package with additional functionality for CONTENIDO which mostly is added to the backend. Plugins are systemwide ressources. |
Since CONTENIDO 4.9 plugins are installed via the Plugin manager.
Beside plugins from the community (so called third party plugins) CONTENIDO itself is released with various default plugins, which can be activated without downloading them.
Plugins must follow a given structure so they can be installed correctly. Once at all, all files of a plugin package are packed to an ZIP archive, which later is unpacked from the installation routine of the plugin manager.
The content of this ZIP file must fit to the following guidelines.
The name of the ZIP archive file must only contain the plugin name, for example: linkchecker.zip
Each plugin must have a XML file which contains metadata for the plugin itself and for the installation in the system. Among other things this file is responsible for the folder name in the plugins directory of CONTENIDO. Most important it contains all relevant entries for some special database tables, so the plugin is accessible in the backend (creating menu entries and so on). These tables are: actions, area, files, frame_files and nav_sub.
The XML is divided into multiple parts - each separated to a XML tag. XML files must be valid against the plugin file schema located at xml/plugin_info.xsd located in the plugin managers plugin directory.
Each plugin must have an UUID to identify it globally. These IDs base on the values for the plugin_name and copyright fields in this file. UUIDs only can be generated on the CONTENIDO website.
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 |
| |
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 address for support | no | |||
website | Website address for support | no | ||
version | Version of the plugin | yes |
Tag name | Description | Available attributes | Example | |||||||
---|---|---|---|---|---|---|---|---|---|---|
contenido | Versions of CONTENIDO |
|
| |||||||
extension | PHP extensions |
| ||||||||
class | PHP classes |
| ||||||||
function | PHP functions |
|
This tag contains database specific information for adding entries to special database tables (mentioned above) to be able to display the plugin in the backend navigation.
Each tag expects attributes which have the same value as their fields in the corresponding database table.
The order of the XML tags must be the same as listed below.
Tag name | Description | Available attributes | Example | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
areas | Managing areas |
|
| |||||||||||
actions | Managing actions |
|
| |||||||||||
frames | Managing frames |
|
| |||||||||||
nav_main | Managing main navigations | none |
| |||||||||||
nav_sub | Managing sub navigations | area, level, navm
|
|
This tag contains information to register own content types.
Tag name | Description | Required? | Example | |
---|---|---|---|---|
type | Content type name | yes |
|
This tag is reserved for further implementations of plugin dependencies. The structure of tags is not final and may change.
These files contain additional statements executed on the installation, uninstall or update of the plugin.
Both files expects one statement per line. Multi line statements are currently not supported and will lead to errors.
Because plugin database tables must have a special prefix, a special keyword "!PREFIX!" is available to replace it accordingly. Statements, which does not contain this placeholder are not executed.
Furthermore, it is only possible to execute the following database operations.
Installation type | Available operations |
---|---|
Installation |
|
Uninstall |
|
Update |
|
The prefix placeholder contains the common database table prefix (per default: "con_") following by the chars "pi" for plugin.
INSERT INTO !PREFIX!_news_log ... gets INSERT INTO con_pi_news_log ... |