andre пре 3 месеци
родитељ
комит
3fc56c3826

+ 101 - 0
:n

@@ -0,0 +1,101 @@
+{**********************************************************************
+* KerioEmail product developed. (2017-11-16)
+* *
+*
+*  CREATED BY THURDATA       ->       http://thurdata.com
+*  CONTACT                        ->       contact@thurdata.com
+*
+*
+* This software is furnished under a license and may be used and copied
+* only  in  accordance  with  the  terms  of such  license and with the
+* inclusion of the above copyright notice.  This software  or any other
+* copies thereof may not be provided or otherwise made available to any
+* other person.  No title to and  ownership of the  software is  hereby
+* transferred.
+*
+*
+**********************************************************************}
+
+{**
+* @autor ThurData <info@thurdata.ch>
+*}
+
+<div class="lu-modal show lu-modal--{$rawObject->getModalSize()}" id="confirmationModal" namespace="{$rawObject->getNamespace()}" index="{$rawObject->getId()}">
+    <div class="lu-modal__dialog">
+        <div class="lu-modal__content" id="mgModalContainer">
+            <div class="lu-modal__top lu-top">
+                <div class="lu-top__title lu-type-6">
+                    <span class="lu-text-faded lu-font-weight-normal">
+                        {if $rawObject->isRawTitle()}{$rawObject->getRawTitle()}{elseif $rawObject->getTitle()}{$MGLANG->T('modal', $rawObject->getTitle())}{/if}
+                    </span>
+                </div>
+                <div class="lu-top__toolbar">
+                    <button class="lu-btn lu-btn--xs lu-btn--default lu-btn--icon lu-btn--link lu-btn--plain closeModal" data-dismiss="lu-modal" aria-label="Close" @click='closeModal($event)'>
+                        <i class="lu-btn__icon lu-zmdi lu-zmdi-close"></i>
+                    </button>
+                </div>
+            </div>
+            {assign var="editForms" value=$rawObject->getForms()}
+            {assign var="editForm" value=$editForms|array_pop}
+            <div class="lu-modal__nav">
+                <ul class="lu-nav lu-nav--md lu-nav--h lu-nav--tabs">
+                    {assign var="sectArrKeys" value=$editForm->getSections()|array_keys}
+                    {foreach from=$editForm->getSections() key=sectionID  item=section }
+                        <li class="lu-nav__item {if $sectArrKeys[0] == $sectionID}is-active{/if}">
+                            <a class="lu-nav__link" data-toggle="lu-tab" href="#modalTab{$sectionID}">
+                                <span class="lu-nav__link-text">{$section->getName()}</span>
+                            </a>
+                        </li>
+                    {/foreach}
+                </ul>
+            </div>
+            <div class="lu-modal__body">
+                {if $editForm->haveInternalAlertMessage()}
+                    <div class="lu-alert {if $editForm->getInternalAlertSize() !== ''}lu-alert--{$editForm->getInternalAlertSize()}{/if} lu-alert--{$editForm->getInternalAlertMessageType()} lu-alert--faded modal-alert-top">
+                        <div class="lu-alert__body">
+                            {if $editForm->isInternalAlertMessageRaw()|unescape:'html'}{$editForm->getInternalAlertMessage()}{else}{$MGLANG->T($editForm->getInternalAlertMessage())|unescape:'html'}{/if}
+                        </div>
+                    </div>
+                {/if}
+                {if $editForm->getConfirmMessage()}
+                    {if $editForm->isTranslateConfirmMessage()}
+                        {$MGLANG->T($editForm->getConfirmMessage())|unescape:'html'}
+                    {else}
+                        {$editForm->getConfirmMessage()|unescape:'html'}
+                    {/if}
+                {/if}
+                <form id="{$editForm->getId()}" namespace="{$editForm->getNamespace()}" index="{$editForm->getId()}" mgformtype="{$editForm->getFormType()}">
+                    {foreach from=$editForm->getFields() item=field }
+                        {$field->getHtml()}
+                    {/foreach}
+                    <div class="lu-tab-content">
+                        {assign var="sectArrKeys" value=$editForm->getSections()|array_keys}
+                        {foreach from=$editForm->getSections() key=sectionID  item=section }
+                            <div class="lu-tab-pane {if $sectArrKeys[0] == $sectionID}is-active{/if}" id="modalTab{$sectionID}">
+                                <div class="lu-list-group lu-list-group--simple lu-list-group--p-h-0x list-group--collapse lu-m-b-0x">
+                                    <div class="lu-row">
+                                        {$section->getHtml()}
+                                    </div>
+                                </div>
+                            </div>
+                        {/foreach}
+                    </div>
+                </form>
+            </div>
+            <div class="lu-modal__actions">
+                {foreach from=$rawObject->getActionButtons() item=actionButton}
+                    {$actionButton->getHtml()}
+                {/foreach}
+            </div>
+            {if ($isDebug eq true AND (count($MGLANG->getMissingLangs()) != 0))}{literal}
+                <div class="lu-modal__actions">
+                    <div class="lu-row">
+                        {/literal}{foreach from=$MGLANG->getMissingLangs() key=varible item=value}{literal}
+                            <div class="lu-col-md-12"><b>{/literal}{$varible}{literal}</b> = '{/literal}{$value}{literal}';</div>
+                        {/literal}{/foreach}{literal}
+                    </div>
+                </div>
+            {/literal}{/if}
+        </div>
+    </div>
+</div>

+ 14 - 0
core/UI/Widget/Forms/Fields/Info.php

@@ -0,0 +1,14 @@
+<?php
+
+namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields;
+
+/**
+ * BaseField controler
+ *
+ * @autor ThurData <info@thurdata.ch>
+ */
+class Info extends BaseField
+{
+    protected $id   = 'info';
+    protected $name = 'info';
+}

+ 29 - 0
templates/client/default/ui/core/default/widget/forms/fields/info.tpl

@@ -0,0 +1,29 @@
+{**********************************************************************
+* KerioEmail product developed. (2017-10-30)
+* *
+*
+*  CREATED BY THURDATA       ->       http://thurdata.com
+*  CONTACT                        ->       contact@thurdata.com
+*
+*
+* This software is furnished under a license and may be used and copied
+* only  in  accordance  with  the  terms  of such  license and with the
+* inclusion of the above copyright notice.  This software  or any other
+* copies thereof may not be provided or otherwise made available to any
+* other person.  No title to and  ownership of the  software is  hereby
+* transferred.
+*
+*
+**********************************************************************}
+
+{**
+* @autor ThurData <info@thurdata.ch>
+*}
+
+<div class="lu-form-group">
+    <div class="lu-alert lu-alert--info lu-alert--faded modal-alert-top">
+        <div class="lu-alert__body">
+            Test
+        </div>
+    </div>
+</div>