mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 19:03:14 +01:00
WIP allow to place custom-fields in tabs: adding cfDisabled="true" to disable automatic adding of custom-fields, e.g. for templates not showing an entry
This commit is contained in:
parent
79b3085ac1
commit
b04318a099
@ -30,6 +30,7 @@ use EGroupware\Api;
|
|||||||
* + id: id of tab
|
* + id: id of tab
|
||||||
* + content: optional namespace (content attribute of template)
|
* + content: optional namespace (content attribute of template)
|
||||||
* + statustext: tooltip of label
|
* + statustext: tooltip of label
|
||||||
|
* - cfDisabled: true: disable adding custom-fields e.g. for templates not showing an entry, false (default): add custom-fields automatic
|
||||||
* - cfTypeFilter: optional type-filter for automatic created custom-fields tabs
|
* - cfTypeFilter: optional type-filter for automatic created custom-fields tabs
|
||||||
* - cfPrivateTab: true: create an extra tab for private custom-fields, false (default): show private ones together with non-private ones
|
* - cfPrivateTab: true: create an extra tab for private custom-fields, false (default): show private ones together with non-private ones
|
||||||
* - cfPrepend: value for prepend tab-attribute for dynamic generated custom-field tabs, default "history"
|
* - cfPrepend: value for prepend tab-attribute for dynamic generated custom-field tabs, default "history"
|
||||||
@ -163,6 +164,11 @@ class Tabbox extends Etemplate\Widget
|
|||||||
{
|
{
|
||||||
$prepend = in_array($prepend, ['true', '1']);
|
$prepend = in_array($prepend, ['true', '1']);
|
||||||
}
|
}
|
||||||
|
// is adding of CFs disabled --> exit
|
||||||
|
if (!empty($this->attrs['cfDisabled']))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// check if template still contains a legacy customfield tab
|
// check if template still contains a legacy customfield tab
|
||||||
$have_legacy_cf_tab = $this->haveLegacyCfTab();
|
$have_legacy_cf_tab = $this->haveLegacyCfTab();
|
||||||
|
Loading…
Reference in New Issue
Block a user