Versions Compared

Key

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

Excerpt
hiddentrue

view-tab - defines new view's tab.

Overview

This module is used for defining new view's tab. Please see also articles describing view extensions.

Module's schema is defined in view.xsd.

Attributes

name

type

required

description

resource

file

yes

Path to the file containing new view's tab definition.

Example

Please find below an example of plugin defining one view's tab. Lines 8 contains a module which defines new view's tab defined in file src/main/resource/samplePlugin/view/tab.xml.

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:view="http://schema.qcadoo.org/modules/view" 
    xsi:schemaLocation="http://schema.qcadoo.org/plugin http://schema.qcadoo.org/plugin.xsd http://schema.qcadoo.org/modules/view http://schema.qcadoo.org/modules/view.xsd">

    <view:view-tab resource="view/tab.xml" />

</plugin>