Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Excerpt
hiddentrue

dictionary - defines new dictionary.

Overview

This module is used for defining new dictionary. Please see also articles describing defining model using XML and dictionary field.

Module's schema is defined in model.xsd.

Attributes

name

type

required

description

name

string

yes

Name of the dictionary.

Example

Please find below an example of plugin defining one hook module. Lines 8 contains a module which defines new dictionary sampleDictionary.

Code Block
themeEclipse
languagexml
linenumberstrue
<?xml version="1.0" encoding="UTF-8"?>
<plugin plugin="samplePlugin" version="1.0.0" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns="http://schema.qcadoo.org/plugin" 
    xmlns:model="http://schema.qcadoo.org/modules/model" 
    xsi:schemaLocation="http://schema.qcadoo.org/plugin http://schema.qcadoo.org/plugin.xsd http://schema.qcadoo.org/modules/model http://schema.qcadoo.org/modules/model.xsd">

    <model:dictionary name="sampleDictionary" />

</plugin>