diff --git a/src/app/attachment/models/AttachmentModelAbstract.php b/src/app/attachment/models/AttachmentModelAbstract.php index 7e7776361c1ea4432ff8cd5fd2447f7a057fffd8..e555c1a8292d53454916c2cea789517b4c30f668 100755 --- a/src/app/attachment/models/AttachmentModelAbstract.php +++ b/src/app/attachment/models/AttachmentModelAbstract.php @@ -131,14 +131,13 @@ abstract class AttachmentModelAbstract $attachmentTypesXML = $loadedXml->attachment_types; if (count($attachmentTypesXML) > 0) { foreach ($attachmentTypesXML->type as $value) { - if ((string)$value->attributes()->show == 'true') { - $label = defined((string) $value->label) ? constant((string) $value->label) : (string) $value->label; - $attachmentTypes[(string) $value->id] = [ - 'label' => $label, - 'icon' => (string)$value['icon'], - 'sign' => (empty($value['sign']) || (string)$value['sign'] == 'true') ? true : false - ]; - } + $label = defined((string) $value->label) ? constant((string) $value->label) : (string) $value->label; + $attachmentTypes[(string) $value->id] = [ + 'label' => $label, + 'icon' => (string)$value['icon'], + 'sign' => (empty($value['sign']) || (string)$value['sign'] == 'true') ? true : false, + 'show' => (empty($value->attributes()->show) || (string)$value->attributes()->show == 'true') ? true : false + ]; } } } diff --git a/src/app/template/controllers/TemplateController.php b/src/app/template/controllers/TemplateController.php index a0af13c380fe50d31843f4013f7adbed944a2bde..4a55edabb35f213ae30e7726eac4d5036ac7401c 100755 --- a/src/app/template/controllers/TemplateController.php +++ b/src/app/template/controllers/TemplateController.php @@ -80,10 +80,12 @@ class TemplateController $attachmentModelsTmp = AttachmentModel::getAttachmentsTypesByXML(); $attachmentTypes = []; foreach ($attachmentModelsTmp as $key => $value) { - $attachmentTypes[] = [ - 'label' => $value['label'], - 'id' => $key - ]; + if ($value['show']) { + $attachmentTypes[] = [ + 'label' => $value['label'], + 'id' => $key + ]; + } } return $response->withJson([ @@ -355,10 +357,12 @@ class TemplateController $attachmentModelsTmp = AttachmentModel::getAttachmentsTypesByXML(); $attachmentTypes = []; foreach ($attachmentModelsTmp as $key => $value) { - $attachmentTypes[] = [ - 'label' => $value['label'], - 'id' => $key - ]; + if ($value['show']) { + $attachmentTypes[] = [ + 'label' => $value['label'], + 'id' => $key + ]; + } } $entities = EntityModel::getAllowedEntitiesByUserId(['userId' => 'superadmin']);