Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

<min_contenido_version>4.9.0-beta1</min_contenido_version> <max_contenido_version></max_contenido_version>
Tag nameDescriptionRequired?Example
plugin_nameFull plugin name.yes
Code Block
languagehtml/xml
<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_foldernameName of the plugin folder.yes
uuidThe universal Unique ID.yes
descriptionDescription of the plugins functions.no
authorAuthoryes
copyrightCopyright noticeyes
mailMail address for supportno
websiteWebsite address for supportno
versionVersion of the pluginyesmin_contenido_version

Tag requirements - requirements for new plugins

Tag nameDescriptionAvailable attributesExample
contenidoVersions of CONTENIDOmax_contenido_version
NameDescription
minversionFirst compatible version of CONTENIDO. Required
yes
maxversionLast compatible version of CONTENIDO
no
Code Block
languagehtml/xml
    <requirements php="5.2.3">
        <contenido minversion="4.9.0" />
        <extension name="mysql" />
        <class name="cRegister" />
        <function name="i18n" />
    </requirements>
extensionPHP extensions
NameDescription
nameName of the extension
classPHP classes
NameDescription
nameName of the class
functionPHP functions
NameDescription
nameName of the function

Tag contenido - database specific information

...