andre 5 месяцев назад
Родитель
Сommit
c0776eff72
1 измененных файлов с 63 добавлено и 0 удалено
  1. 63 0
      templates/client/default/ui/core/default/widget/modals/infoModal.tpl

+ 63 - 0
templates/client/default/ui/core/default/widget/modals/infoModal.tpl

@@ -0,0 +1,63 @@
+{**********************************************************************
+* 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>
+            <div class="lu-modal__body">
+                <div class="lu-row">
+                    <div class="lu-col-md-12">
+                        {foreach from=$rawObject->getForms() item=form }
+                            {$form->getHtml()}
+                        {/foreach}
+                    </div>
+                </div>
+            </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>