Difference between revisions of "ZCS 6.0:Zimlet Developers Guide:Examples:Open All Domains"
(→Download) |
|||
Line 44: | Line 44: | ||
</zimletConfig> | </zimletConfig> | ||
</pre> | </pre> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Useful Links == | == Useful Links == |
Latest revision as of 12:15, 3 November 2020
Contents
ZCS 6.0: Zimlet Developer Guide:Examples:Open all domains
- This article is a Work in Progress, and may be unfinished or missing sections.
![]() |
Introduction | ![]() |
Getting Started | ![]() |
Dev Environment Setup | ![]() |
Developing Zimlets | ![]() |
Advanced Concepts | ![]() |
API Specifications | ![]() |
Example Zimlets |
Description
This zimlet is used when in development to open all allowed domains.
Definition File
<zimlet name="com_zimbra_openalldomains" version="1.0" description="Allows All Domains - Use in development ONLY"> <zimletPanelItem label="openalldomains" icon="openalldomains-panelIcon"> <toolTipText>Open all domains</toolTipText> </zimletPanelItem> </zimlet>
Configuration File
<zimletConfig name="com_zimbra_openalldomains" version="1.0"> <global> <property name="allowedDomains">*</property> </global> </zimletConfig>
Useful Links