0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-25 17:07:57 +00:00
salesagility_SuiteCRM/modules/Administration/Search/ElasticSearch/view.tpl

153 lines
7.2 KiB
Smarty

{*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*}
<h1>{$MOD.LBL_ELASTIC_SEARCH_SETTINGS}</h1>
<p class="text-muted">{$MOD.LBL_ELASTIC_SEARCH_SETTINGS_HELP}</p>
<br/>
<form id="ConfigureSettings"
name="ConfigureSettings"
class="detail-view"
enctype='multipart/form-data'
method="POST"
action="?module=Administration&action=ElasticSearchSettings&do=SaveConfig">
<div class="row">
<div class="panel panel-primary">
<div class="panel-heading">{$MOD.LBL_ELASTIC_SEARCH_GENERAL}</div>
<div class="panel-body tab-content text-center">
<div class="col-md-6">
<div class="form-check">
<input type="checkbox" class="form-check-input"
id="es-enabled" name="enabled"
{if $config.enabled}checked='checked'{/if}>
<label class="form-check-label" for="es-enabled">{$MOD.LBL_ELASTIC_SEARCH_ENABLE}</label>
</div>
</div>
<div class="col-md-6">
<button class="btn btn-primary"
id="es-test-connection"
type="button">{$MOD.LBL_ELASTIC_SEARCH_TEST_CONNECTION}</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="panel panel-primary">
<div class="panel-heading">{$MOD.LBL_ELASTIC_SEARCH_SERVER}</div>
<div class="panel-body tab-content">
<div class="form-group">
<label for="es-host">{$MOD.LBL_ELASTIC_SEARCH_HOST}</label>
<input type="text" class="form-control"
id="es-host" name="host" value="{$config.host}">
<small class="form-text text-muted">e.g. localhost, 192.168.1.1:9200,
mydomain.server.com:9201, https://192.168.1.3:9200
</small>
</div>
<div class="form-group">
<label for="es-user">{$MOD.LBL_ELASTIC_SEARCH_USER}</label>
<input type="text" class="form-control"
id="es-user" name="user" value="{$config.user}">
<label for="es-password">{$MOD.LBL_ELASTIC_SEARCH_PASS}</label>
<input type="password" class="form-control"
id="es-password" name="pass" value="{$config.pass}">
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-primary">
<div class="panel-heading">{$MOD.LBL_ELASTIC_SEARCH_SCHEDULERS}</div>
<div class="panel-body tab-content">
<label>{$MOD.LBL_ELASTIC_SEARCH_SCHEDULERS_HELP}</label>
<ul class="list-group">
{foreach from=$schedulers item=scheduler}
<li class="list-group-item {if $scheduler->status eq 'Inactive'}list-group-item-warning{/if}">
{sugar_link
module=$scheduler->module_name
record=$scheduler->id
label=$scheduler->name
action='DetailView'}
&mdash;
<b>{$scheduler->status}</b>
&mdash;
{if !empty($scheduler->last_run)}
{$MOD.LBL_ELASTIC_SEARCH_SCHEDULERS_LAST_RUN}
{$scheduler->last_run}
(<b>{diff_for_humans datetime=$scheduler->last_run}</b>)
{else}
{$MOD.LBL_ELASTIC_SEARCH_SCHEDULERS_NEVER_RUN}
{/if}
</li>
{foreachelse}
<p class="error">{$MOD.LBL_ELASTIC_SEARCH_SCHEDULERS_NOT_FOUND}</p>
{/foreach}
</ul>
<small class="form-text text-muted">{$MOD.LBL_ELASTIC_SEARCH_SCHEDULERS_DESC}</small>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="panel panel-primary ">
<div class="panel-heading">{$MOD.LBL_ELASTIC_SEARCH_INDEX}</div>
</div>
<div class="panel-body tab-content">
<label>{$MOD.LBL_ELASTIC_SEARCH_INDEX_SCHEDULE_HELP}</label>
<div>
<button class="btn btn-primary" type="button"
id="es-full-index">{$MOD.LBL_ELASTIC_SEARCH_INDEX_SCHEDULE_FULL}</button>
<button class="btn btn-default" type="button"
id="es-partial-index">{$MOD.LBL_ELASTIC_SEARCH_INDEX_SCHEDULE_PART}</button>
</div>
</div>
</div>
</div>
<div>
{$BUTTONS}
</div>
{$JAVASCRIPT}
</form>
<script src="modules/Administration/Search/ElasticSearch/scripts.js"></script>