2013-09-14 19:10:59 +03:00
|
|
|
<script type="text/javascript"
|
2015-01-29 00:53:13 +02:00
|
|
|
src="<?php echo $base_url; ?>/assets/js/backend_settings.js"></script>
|
2013-09-25 18:43:17 +03:00
|
|
|
<script type="text/javascript"
|
2015-01-29 00:53:13 +02:00
|
|
|
src="<?php echo $base_url; ?>/assets/js/working_plan.js"></script>
|
2013-09-18 19:36:29 +03:00
|
|
|
<script type="text/javascript"
|
2015-07-08 01:17:39 +03:00
|
|
|
src="<?php echo $base_url; ?>/assets/ext/jquery-ui/jquery-ui-timepicker-addon.js"></script>
|
2013-09-18 19:36:29 +03:00
|
|
|
<script type="text/javascript"
|
2015-07-08 01:17:39 +03:00
|
|
|
src="<?php echo $base_url; ?>/assets/ext/jquery-jeditable/jquery.jeditable.min.js"></script>
|
2013-09-14 19:10:59 +03:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var GlobalVariables = {
|
2015-05-28 00:47:19 +03:00
|
|
|
'csrfToken': <?php echo json_encode($this->security->get_csrf_hash()); ?>,
|
2013-09-14 19:10:59 +03:00
|
|
|
'baseUrl': <?php echo '"' . $base_url . '"'; ?>,
|
2013-09-23 18:42:36 +03:00
|
|
|
'userSlug': <?php echo '"' . $role_slug . '"'; ?>,
|
2013-09-14 19:10:59 +03:00
|
|
|
'settings': {
|
|
|
|
'system': <?php echo json_encode($system_settings); ?>,
|
|
|
|
'user': <?php echo json_encode($user_settings); ?>
|
2013-09-26 19:06:57 +03:00
|
|
|
},
|
|
|
|
'user' : {
|
|
|
|
'id' : <?php echo $user_id; ?>,
|
|
|
|
'email' : <?php echo '"' . $user_email . '"'; ?>,
|
|
|
|
'role_slug' : <?php echo '"' . $role_slug . '"'; ?>,
|
|
|
|
'privileges': <?php echo json_encode($privileges); ?>
|
2013-09-14 19:10:59 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
BackendSettings.initialize(true);
|
|
|
|
});
|
|
|
|
</script>
|
2013-06-18 19:06:34 +03:00
|
|
|
|
2013-09-18 19:36:29 +03:00
|
|
|
<div id="settings-page" class="row-fluid">
|
2013-09-14 19:10:59 +03:00
|
|
|
<ul class="nav nav-tabs">
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php if ($privileges[PRIV_SYSTEM_SETTINGS]['view'] == TRUE) { ?>
|
2015-07-25 15:15:34 +03:00
|
|
|
<li role="representation" class="general-tab tab"><a><?php echo $this->lang->line('general'); ?></a></li>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php if ($privileges[PRIV_SYSTEM_SETTINGS]['view'] == TRUE) { ?>
|
2015-07-25 15:15:34 +03:00
|
|
|
<li role="representation" class="business-logic-tab tab"><a><?php echo $this->lang->line('business_logic'); ?></a></li>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php if ($privileges[PRIV_USER_SETTINGS]['view'] == TRUE) { ?>
|
2015-07-25 15:15:34 +03:00
|
|
|
<li role="representation" class="user-tab tab"><a><?php echo $this->lang->line('current_user'); ?></a></li>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php } ?>
|
2013-11-22 18:19:52 +02:00
|
|
|
|
2015-07-25 15:15:34 +03:00
|
|
|
<li role="representation" class="about-tab tab"><a><?php echo $this->lang->line('about_ea'); ?></a></li>
|
2013-09-14 19:10:59 +03:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// GENERAL TAB
|
|
|
|
//
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
?>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php $hidden = ($privileges[PRIV_SYSTEM_SETTINGS]['view'] == TRUE) ? '' : 'hidden'; ?>
|
|
|
|
<div id="general" class="tab-content <?php echo $hidden; ?>">
|
2013-09-14 19:10:59 +03:00
|
|
|
<form>
|
|
|
|
<fieldset>
|
|
|
|
<legend>
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('general_settings'); ?>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php if ($privileges[PRIV_SYSTEM_SETTINGS]['edit'] == TRUE) { ?>
|
2015-07-25 15:15:34 +03:00
|
|
|
<button type="button" class="save-settings btn btn-primary btn-sm">
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('save'); ?>
|
2013-12-20 13:12:36 +02:00
|
|
|
</button>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php } ?>
|
2013-09-14 19:10:59 +03:00
|
|
|
</legend>
|
|
|
|
|
2013-10-18 17:56:12 +03:00
|
|
|
<div class="wrapper">
|
2015-07-25 15:15:34 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="company-name"><?php echo $this->lang->line('company_name'); ?> *</label>
|
|
|
|
<input type="text" id="company-name" data-field="company_name" class="required form-control">
|
|
|
|
<span class="help-block">
|
|
|
|
<?php echo $this->lang->line('company_name_hint'); ?>
|
|
|
|
</span>
|
|
|
|
</div>
|
2013-10-18 17:56:12 +03:00
|
|
|
|
2015-07-25 15:15:34 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="company-email"><?php echo $this->lang->line('company_email'); ?> *</label>
|
|
|
|
<input type="text" id="company-email" data-field="company_email" class="required form-control">
|
|
|
|
<span class="help-block">
|
|
|
|
<?php echo $this->lang->line('company_email_hint'); ?>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="company-link"><?php echo $this->lang->line('company_link'); ?> *</label>
|
|
|
|
<input type="text" id="company-link" data-field="company_link" class="required form-control">
|
|
|
|
<span class="help-block">
|
|
|
|
<?php echo $this->lang->line('company_link_hint'); ?>
|
|
|
|
</span>
|
|
|
|
</div>
|
2013-10-18 17:56:12 +03:00
|
|
|
|
|
|
|
|
2015-05-28 00:15:43 +03:00
|
|
|
<a href="<?php echo $this->config->item('base_url'); ?>" target="_blank" class="btn btn-info">
|
2015-07-25 15:15:34 +03:00
|
|
|
<span class="glyphicon glyphicon-calendar"></span>
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('go_to_booking_page'); ?>
|
2013-10-18 17:56:12 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
2013-09-14 19:10:59 +03:00
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// BUSINESS LOGIC TAB
|
|
|
|
//
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
?>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php $hidden = ($privileges[PRIV_SYSTEM_SETTINGS]['view'] == TRUE) ? '' : 'hidden'; ?>
|
|
|
|
<div id="business-logic" class="tab-content <?php echo $hidden; ?>">
|
2013-09-14 19:10:59 +03:00
|
|
|
<form>
|
|
|
|
<fieldset>
|
|
|
|
<legend>
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('business_logic'); ?>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php if ($privileges[PRIV_SYSTEM_SETTINGS]['edit'] == TRUE) { ?>
|
2015-07-25 15:15:34 +03:00
|
|
|
<button type="button" class="save-settings btn btn-primary btn-sm">
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('save'); ?>
|
2013-12-20 13:12:36 +02:00
|
|
|
</button>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php } ?>
|
2013-09-14 19:10:59 +03:00
|
|
|
</legend>
|
|
|
|
|
2013-09-18 19:36:29 +03:00
|
|
|
<div class="row-fluid">
|
2013-10-18 17:56:12 +03:00
|
|
|
<div class="span7 working-plan-wrapper">
|
2013-12-20 19:44:44 +02:00
|
|
|
<h4><?php echo $this->lang->line('working_plan'); ?></h4>
|
2013-09-18 19:36:29 +03:00
|
|
|
<span class="help-block">
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('edit_working_plan_hint'); ?>
|
2013-09-18 19:36:29 +03:00
|
|
|
</span>
|
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
<table class="working-plan table table-striped">
|
2013-09-18 19:36:29 +03:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2013-12-20 19:44:44 +02:00
|
|
|
<th><?php echo $this->lang->line('day'); ?></th>
|
|
|
|
<th><?php echo $this->lang->line('start'); ?></th>
|
|
|
|
<th><?php echo $this->lang->line('end'); ?></th>
|
2013-09-18 19:36:29 +03:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2015-07-25 15:15:34 +03:00
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="monday" />
|
|
|
|
<?php echo $this->lang->line('monday'); ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
2013-09-20 16:58:11 +03:00
|
|
|
<td><input type="text" id="monday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="monday-end" class="work-end" /></td>
|
2013-09-18 19:36:29 +03:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2015-07-25 15:15:34 +03:00
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="tuesday" />
|
|
|
|
<?php echo $this->lang->line('tuesday'); ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
2013-09-20 16:58:11 +03:00
|
|
|
<td><input type="text" id="tuesday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="tuesday-end" class="work-end" /></td>
|
2013-09-18 19:36:29 +03:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2015-07-25 15:15:34 +03:00
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="wednesday" />
|
|
|
|
<?php echo $this->lang->line('wednesday'); ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
2013-09-20 16:58:11 +03:00
|
|
|
<td><input type="text" id="wednesday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="wednesday-end" class="work-end" /></td>
|
2013-09-18 19:36:29 +03:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2015-07-25 15:15:34 +03:00
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="tuesday" />
|
|
|
|
<?php echo $this->lang->line('tuesday'); ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
2013-09-20 16:58:11 +03:00
|
|
|
<td><input type="text" id="thursday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="thursday-end" class="work-end" /></td>
|
2013-09-18 19:36:29 +03:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2015-07-25 15:15:34 +03:00
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="friday" />
|
|
|
|
<?php echo $this->lang->line('friday'); ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
2013-09-20 16:58:11 +03:00
|
|
|
<td><input type="text" id="friday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="friday-end" class="work-end" /></td>
|
2013-09-18 19:36:29 +03:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2015-07-25 15:15:34 +03:00
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="saturday" />
|
|
|
|
<?php echo $this->lang->line('saturday'); ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
2013-09-20 16:58:11 +03:00
|
|
|
<td><input type="text" id="saturday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="saturday-end" class="work-end" /></td>
|
2013-09-18 19:36:29 +03:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2015-07-25 15:15:34 +03:00
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="sunday" />
|
|
|
|
<?php echo $this->lang->line('sunday'); ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
2013-09-20 16:58:11 +03:00
|
|
|
<td><input type="text" id="sunday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="sunday-end" class="work-end" /></td>
|
2013-09-18 19:36:29 +03:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
2013-12-20 19:44:44 +02:00
|
|
|
<h4><?php echo $this->lang->line('book_advance_timeout'); ?></h4>
|
2013-09-18 19:36:29 +03:00
|
|
|
<span class="help-block">
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('book_advance_timeout_hint'); ?>
|
2013-09-18 19:36:29 +03:00
|
|
|
</span>
|
2015-07-25 15:15:34 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="book-advance-timeout"><?php echo $this->lang->line('timeout_minutes'); ?></label>
|
|
|
|
<input type="text" id="book-advance-timeout" data-field="book_advance_timeout" class="form-control" />
|
|
|
|
</div>
|
2013-09-18 19:36:29 +03:00
|
|
|
</div>
|
2013-10-18 17:56:12 +03:00
|
|
|
<div class="span5 breaks-wrapper">
|
2013-12-20 19:44:44 +02:00
|
|
|
<h4><?php echo $this->lang->line('breaks'); ?></h4>
|
2013-09-18 19:36:29 +03:00
|
|
|
|
|
|
|
<span class="help-block">
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('edit_breaks_hint'); ?>
|
2013-09-18 19:36:29 +03:00
|
|
|
</span>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<button type="button" class="add-break btn btn-primary">
|
2015-07-25 15:15:34 +03:00
|
|
|
<span class="glyphicon glyphicon-white glyphicon glyphicon-plus"></span>
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('add_break');?>
|
2013-09-18 19:36:29 +03:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
<table class="breaks table table-striped">
|
2013-09-18 19:36:29 +03:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2013-12-20 19:44:44 +02:00
|
|
|
<th><?php echo $this->lang->line('day'); ?></th>
|
|
|
|
<th><?php echo $this->lang->line('start'); ?></th>
|
|
|
|
<th><?php echo $this->lang->line('end'); ?></th>
|
|
|
|
<th><?php echo $this->lang->line('actions'); ?></th>
|
2013-09-18 19:36:29 +03:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2013-09-14 19:10:59 +03:00
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// USER TAB
|
|
|
|
//
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
?>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php $hidden = ($privileges[PRIV_USER_SETTINGS]['view'] == TRUE) ? '' : 'hidden'; ?>
|
|
|
|
<div id="user" class="tab-content <?php echo $hidden; ?>">
|
2015-07-25 15:15:34 +03:00
|
|
|
<form class="container-fluid">
|
|
|
|
<fieldset class="col-md-5 personal-info-wrapper">
|
2013-09-14 19:10:59 +03:00
|
|
|
<legend>
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('personal_information'); ?>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php if ($privileges[PRIV_USER_SETTINGS]['edit'] == TRUE) { ?>
|
2015-07-25 15:15:34 +03:00
|
|
|
<button type="button" class="save-settings btn btn-primary btn-sm">
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('save'); ?>
|
2013-12-20 13:12:36 +02:00
|
|
|
</button>
|
2013-09-26 19:06:57 +03:00
|
|
|
<?php } ?>
|
2013-09-14 19:10:59 +03:00
|
|
|
</legend>
|
|
|
|
|
|
|
|
<input type="hidden" id="user-id" />
|
|
|
|
|
2015-07-25 15:15:34 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="first-name"><?php echo $this->lang->line('first_name'); ?> *</label>
|
|
|
|
<input type="text" id="first-name" class="form-control required" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="last-name"><?php echo $this->lang->line('last_name'); ?> *</label>
|
|
|
|
<input type="text" id="last-name" class="form-control required" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email"><?php echo $this->lang->line('email'); ?> *</label>
|
|
|
|
<input type="text" id="email" class="form-control required" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="mobile-number"><?php echo $this->lang->line('mobile_number'); ?></label>
|
|
|
|
<input type="text" id="mobile-number" class="form-control" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="phone-number"><?php echo $this->lang->line('phone_number'); ?> *</label>
|
|
|
|
<input type="text" id="phone-number" class="form-control required" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="address"><?php echo $this->lang->line('address'); ?></label>
|
|
|
|
<input type="text" id="address" class="form-control" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="city"><?php echo $this->lang->line('city'); ?></label>
|
|
|
|
<input type="text" id="city" class="form-control" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="state"><?php echo $this->lang->line('state'); ?></label>
|
|
|
|
<input type="text" id="state" class="form-control" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="zip-code"><?php echo $this->lang->line('zip_code'); ?></label>
|
|
|
|
<input type="text" id="zip-code" class="form-control" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="notes"><?php echo $this->lang->line('notes'); ?></label>
|
|
|
|
<textarea id="notes" class="form-control" rows="3"></textarea>
|
|
|
|
</div>
|
2013-09-14 19:10:59 +03:00
|
|
|
</fieldset>
|
|
|
|
|
2015-07-25 15:15:34 +03:00
|
|
|
<fieldset class="col-md-5 miscellaneous-wrapper">
|
2013-12-20 19:44:44 +02:00
|
|
|
<legend><?php echo $this->lang->line('system_login'); ?></legend>
|
2013-09-14 19:10:59 +03:00
|
|
|
|
2015-07-25 15:15:34 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="username"><?php echo $this->lang->line('username'); ?> *</label>
|
|
|
|
<input type="text" id="username" class="form-control required" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="password"><?php echo $this->lang->line('password'); ?></label>
|
|
|
|
<input type="password" id="password" class="form-control" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="retype-password"><?php echo $this->lang->line('retype_password'); ?></label>
|
|
|
|
<input type="password" id="retype-password" class="form-control" />
|
|
|
|
</div>
|
2013-09-14 19:10:59 +03:00
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
<button type="button" id="user-notifications" class="btn" data-toggle="button">
|
2015-07-25 15:15:34 +03:00
|
|
|
<span class="glyphicon glyphicon-envelope"></span>
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('receive_notifications'); ?>
|
2013-09-14 19:10:59 +03:00
|
|
|
</button>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
2013-11-22 18:19:52 +02:00
|
|
|
<?php
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// ABOUT TAB
|
|
|
|
//
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
?>
|
|
|
|
<div id="about" class="tab-content">
|
2013-11-23 21:10:31 +02:00
|
|
|
<h2>Easy!Appointments</h2>
|
2013-11-22 18:19:52 +02:00
|
|
|
<p>
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('about_ea_info'); ?>
|
2013-11-22 18:19:52 +02:00
|
|
|
</p>
|
|
|
|
|
2013-11-23 21:10:31 +02:00
|
|
|
<br>
|
|
|
|
|
2013-11-22 18:19:52 +02:00
|
|
|
<div class="current-version">
|
|
|
|
<?php
|
2013-12-29 15:57:09 +02:00
|
|
|
echo $this->lang->line('current_version') . ' ';
|
|
|
|
echo $this->config->item('ea_version');
|
|
|
|
$release_title = $this->config->item('ea_release_title');
|
|
|
|
if ($release_title != '') {
|
|
|
|
echo ' - ' . $release_title;
|
|
|
|
}
|
2013-11-22 18:19:52 +02:00
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
2013-12-20 19:44:44 +02:00
|
|
|
<h3><?php echo $this->lang->line('support'); ?></h3>
|
2013-11-22 18:19:52 +02:00
|
|
|
<p>
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('about_ea_support'); ?>
|
2013-11-22 18:19:52 +02:00
|
|
|
<br><br>
|
2013-12-20 13:12:36 +02:00
|
|
|
<a href="http://easyappointments.org">
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('official_website'); ?>
|
2013-12-20 13:12:36 +02:00
|
|
|
</a>
|
2013-11-24 19:01:46 +02:00
|
|
|
|
|
2013-11-22 18:19:52 +02:00
|
|
|
<a href="https://groups.google.com/forum/#!forum/easy-appointments">
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('support_group'); ?>
|
2013-12-20 13:12:36 +02:00
|
|
|
</a>
|
2013-11-22 18:19:52 +02:00
|
|
|
|
|
2015-01-15 00:15:27 +02:00
|
|
|
<a href="https://github.com/alextselegidis/easyappointments/issues">
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('project_issues'); ?>
|
2013-12-20 13:12:36 +02:00
|
|
|
</a>
|
2014-01-04 19:25:21 +02:00
|
|
|
|
|
|
|
|
<a href="http://easyappointments.wordpress.com">
|
|
|
|
E!A Blog
|
|
|
|
</a>
|
2015-01-15 00:15:27 +02:00
|
|
|
|
|
|
|
|
<a href="https://plus.google.com/communities/105333709485142846840">
|
|
|
|
<?php echo $this->lang->line('google_plus_community'); ?>
|
|
|
|
</a>
|
2013-11-22 18:19:52 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
2013-12-20 19:44:44 +02:00
|
|
|
<h3><?php echo $this->lang->line('license'); ?></h3>
|
2013-11-22 18:19:52 +02:00
|
|
|
<p>
|
2013-12-20 19:44:44 +02:00
|
|
|
<?php echo $this->lang->line('about_ea_license'); ?>
|
2013-11-22 18:19:52 +02:00
|
|
|
<a href="http://www.gnu.org/copyleft/gpl.html">http://www.gnu.org/copyleft/gpl.html</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
2013-09-13 16:21:03 +03:00
|
|
|
</div>
|