Skip to content
Snippets Groups Projects
Commit 4048097f authored by Satish's avatar Satish
Browse files

Mobile app to works for V7Removed unnecessary data in code

parent f6588c8f
No related branches found
No related tags found
No related merge requests found
{*<!--
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
{*+**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*
********************************************************************************/
-->*}
*************************************************************************************}
{strip}
<div class="modal-dialog modal-lg installationLog">
<div class='modal-content'>
<div class="modal-header" style="background: #596875;color:white;">
<div class="row">
<div class="col-lg-11 col-md-11">
{if $ERROR}
<input type="hidden" name="installationStatus" value="error" />
<h3 class="modal-title" style="color: red">{vtranslate('LBL_INSTALLATION_FAILED', $QUALIFIED_MODULE)}</h3>
{else}
<input type="hidden" name="installationStatus" value="success" />
<h3 class="modal-title">{vtranslate('LBL_SUCCESSFULL_INSTALLATION', $QUALIFIED_MODULE)}</h3>
{/if}
</div>
<div class="col-lg-1 col-md-1">
<button class="close" aria-hidden="true" data-dismiss="modal" type="button" title="{vtranslate('LBL_CLOSE')}">X</button>
</div>
</div>
</div>
<div class="modal-body" id="installationLog">
{if $ERROR}
<p style="color:red;">{vtranslate($ERROR_MESSAGE, $QUALIFIED_MODULE)}</p>
{else}
<div class="row">
<span class="col-sm-12 col-xs-12 font-x-x-large">{vtranslate('LBL_INSTALLATION_LOG', $QUALIFIED_MODULE)}</span>
</div>
<div id="extensionInstallationInfo" class="backgroundImageNone" style="background-color: white;padding: 2%;">
{if $MODULE_ACTION eq "Upgrade"}
{$MODULE_PACKAGE->update($TARGET_MODULE_INSTANCE, $MODULE_FILE_NAME)}
{else}
{$MODULE_PACKAGE->import($MODULE_FILE_NAME, 'false')}
{assign var=TRACKER_UPDATED value={Settings_ExtensionStore_ODExtension_Model::updateTrackDetails($EXTENSION_NAME)}}
{/if}
{assign var=UNLINK_RESULT value={unlink($MODULE_FILE_NAME)}}
</div>
{/if}
</div>
<div class="modal-footer">
<span class="pull-right">
<button class="btn btn-success" id="importCompleted" onclick="location.reload()">{vtranslate('LBL_OK', $QUALIFIED_MODULE)}</button>
</span>
</div>
</div>
</div>
<div class="modal-dialog modal-lg installationLog">
<div class='modal-content'>
<div class="modal-header" style="background: #596875;color:white;">
<div class="row">
<div class="col-lg-11 col-md-11">
{if $ERROR}
<input type="hidden" name="installationStatus" value="error" />
<h3 class="modal-title" style="color: red">{vtranslate('LBL_INSTALLATION_FAILED', $QUALIFIED_MODULE)}</h3>
{else}
<input type="hidden" name="installationStatus" value="success" />
<h3 class="modal-title">{vtranslate('LBL_SUCCESSFULL_INSTALLATION', $QUALIFIED_MODULE)}</h3>
{/if}
</div>
<div class="col-lg-1 col-md-1">
<button class="close" aria-hidden="true" data-dismiss="modal" type="button" title="{vtranslate('LBL_CLOSE')}">X</button>
</div>
</div>
</div>
<div class="modal-body" id="installationLog">
{if $ERROR}
<p style="color:red;">{vtranslate($ERROR_MESSAGE, $QUALIFIED_MODULE)}</p>
{else}
<div class="row">
<span class="col-sm-12 col-xs-12 font-x-x-large">{vtranslate('LBL_INSTALLATION_LOG', $QUALIFIED_MODULE)}</span>
</div>
<div id="extensionInstallationInfo" class="backgroundImageNone" style="background-color: white;padding: 2%;">
{if $MODULE_ACTION eq "Upgrade"}
{$MODULE_PACKAGE->update($TARGET_MODULE_INSTANCE, $MODULE_FILE_NAME)}
{else}
{$MODULE_PACKAGE->import($MODULE_FILE_NAME, 'false')}
{/if}
{assign var=UNLINK_RESULT value={unlink($MODULE_FILE_NAME)}}
</div>
{/if}
</div>
<div class="modal-footer">
<span class="pull-right">
<button class="btn btn-success" id="importCompleted" onclick="location.reload()">{vtranslate('LBL_OK', $QUALIFIED_MODULE)}</button>
</span>
</div>
</div>
</div>
{/strip}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment