This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/install/core/tpl/setupConfirmation.tpl
T
2014-09-23 16:06:29 +03:00

123 lines
3.2 KiB
Smarty

<div class="setup-confirmation panel-body body">
<div id="msg-box" class="alert hide"></div>
<form id="nav">
<div class="row">
<table class="table table-striped">
<thead>
<tr>
<th colspan="3">{$langs['labels']['PHP Configuration']}</th>
</tr>
</thead>
<tbody>
{foreach from=$phpConfig key=name item=value}
<tr>
<td class="col-md-4">
{if $langs['labels'][$name] eq ''}
{$name}
{else}
{$langs['labels'][{$name}]}
{/if}
</td>
<td class="col-md-4">{$value['current']}</td>
<td class="col-md-4">
{if $value['acceptable'] eq true}
<span class="ok">
{$langs['labels']['OK']}
</span>
{else}
<span class="remark">
{if $value['isExtension'] eq true}
{assign var="messageName" value="extension"}
{else}
{assign var="messageName" value="option"}
{/if}
{$langs['messages'][{$messageName}]|replace:'{0}':$value['required']}
</span>
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
<table class="table table-striped">
<thead>
<tr>
<th colspan="2">{$langs['labels']['MySQL Configuration']}</th>
</tr>
</thead>
<tbody>
{foreach from=$mysqlConfig key=name item=value}
<tr>
<td class="col-md-4">
{if $langs['labels'][$name] eq ''}
{$name}
{else}
{$langs['labels'][{$name}]}
{/if}
</td>
<td class="col-md-4">{$value['current']}</td>
<td class="col-md-4">
{if $value['acceptable'] eq true}
<span class="ok">
{$langs['labels']['OK']}
</span>
{else}
<span class="remark">
{if $value['isExtension'] eq true}
{assign var="messageName" value="extension"}
{else}
{assign var="messageName" value="option"}
{/if}
{$langs['messages'][{$messageName}]|replace:'{0}':$value['required']}
</span>
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
<div class="cell cell-website pull-right" align="right">
<a target="_blank" href="http://blog.espocrm.com/administration/server-configuration-for-espocrm/" style="font-weight:bold;">{$langs['labels']['Configuration Instructions']}</a>
</div>
<br>
<div class="loading-icon hide"></div>
</div>
</form>
</div>
<footer class="modal-footer">
<button class="btn btn-default" type="button" id="back">{$langs['labels']['Back']}</button>
<button class="btn btn-warning" type="button" id="re-check">{$langs['labels']['Re-check']}</button>
<button class="btn btn-primary" type="button" id="next">{$langs['labels']['Install']}</button>
</footer>
<script>
{literal}
$(function(){
{/literal}
var opt = {
action: 'setupConfirmation',
langs: {$langsJs},
modRewriteUrl: '{$modRewriteUrl}',
apiPath: '{$apiPath}',
serverType: '{$serverType}',
OS: '{$OS}'
}
{literal}
var installScript = new InstallScript(opt);
jQuery('#re-check').click(function(){
installScript.goTo('setupConfirmation');
});
})
{/literal}
</script>