2015-10-07 22:38:14 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="theme-color" content="#35A768">
|
|
|
|
<title><?php echo $this->lang->line('page_title') . ' ' . $company_name; ?></title>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// INCLUDE CSS FILES
|
|
|
|
// ------------------------------------------------------------ ?>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2015-10-07 22:38:14 +03:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
2016-03-07 22:19:55 +02:00
|
|
|
href="<?php echo base_url('assets/ext/bootstrap/css/bootstrap.min.css'); ?>">
|
2015-10-07 22:38:14 +03:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
2016-03-07 22:19:55 +02:00
|
|
|
href="<?php echo base_url('assets/ext/jquery-ui/jquery-ui.min.css'); ?>">
|
2015-10-07 22:38:14 +03:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
2016-03-07 22:19:55 +02:00
|
|
|
href="<?php echo base_url('assets/ext/jquery-qtip/jquery.qtip.min.css'); ?>">
|
2015-10-07 22:38:14 +03:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
2016-03-07 22:19:55 +02:00
|
|
|
href="<?php echo base_url('assets/css/frontend.css'); ?>">
|
2015-10-07 22:38:14 +03:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
2016-03-07 22:19:55 +02:00
|
|
|
href="<?php echo base_url('assets/css/general.css'); ?>">
|
2015-10-07 22:38:14 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// WEBPAGE FAVICON
|
|
|
|
// ------------------------------------------------------------ ?>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2015-10-07 22:38:14 +03:00
|
|
|
<link rel="icon" type="image/x-icon"
|
2016-03-07 22:19:55 +02:00
|
|
|
href="<?php echo base_url('assets/img/favicon.ico'); ?>">
|
2015-10-07 22:38:14 +03:00
|
|
|
|
|
|
|
<link rel="icon" sizes="192x192"
|
2016-03-07 22:19:55 +02:00
|
|
|
href="<?php echo base_url('assets/img/logo.png'); ?>">
|
2015-10-07 22:38:14 +03:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="main" class="container">
|
|
|
|
<div class="wrapper row">
|
|
|
|
<div id="book-appointment-wizard" class="col-xs-12 col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------
|
|
|
|
// FRAME TOP BAR
|
|
|
|
// ------------------------------------------------------ ?>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2015-10-07 22:38:14 +03:00
|
|
|
<div id="header">
|
|
|
|
<span id="company-name"><?php echo $company_name; ?></span>
|
|
|
|
|
|
|
|
<div id="steps">
|
|
|
|
<div id="step-1" class="book-step active-step" title="<?php echo $this->lang->line('step_one_title'); ?>">
|
|
|
|
<strong>1</strong>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="step-2" class="book-step" title="<?php echo $this->lang->line('step_two_title'); ?>">
|
|
|
|
<strong>2</strong>
|
|
|
|
</div>
|
|
|
|
<div id="step-3" class="book-step" title="<?php echo $this->lang->line('step_three_title'); ?>">
|
|
|
|
<strong>3</strong>
|
|
|
|
</div>
|
|
|
|
<div id="step-4" class="book-step" title="<?php echo $this->lang->line('step_four_title'); ?>">
|
|
|
|
<strong>4</strong>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------
|
|
|
|
// CANCEL APPOINTMENT BUTTON
|
|
|
|
// ------------------------------------------------------
|
|
|
|
if ($manage_mode === TRUE) {
|
|
|
|
echo '
|
|
|
|
<div id="cancel-appointment-frame" class="row">
|
|
|
|
<div class="col-xs-12 col-sm-10">
|
|
|
|
<p>' .
|
|
|
|
$this->lang->line('cancel_appointment_hint') .
|
|
|
|
'</p>
|
|
|
|
</div>
|
|
|
|
<div class="col-xs-12 col-sm-2">
|
|
|
|
<form id="cancel-appointment-form" method="post"
|
2016-03-07 21:59:04 +02:00
|
|
|
action="' . site_url('appointments/cancel/' . $appointment_data['hash']) . '">
|
2015-10-07 22:38:14 +03:00
|
|
|
<input type="hidden" name="csrfToken" value="' . $this->security->get_csrf_hash() . '" />
|
|
|
|
<textarea name="cancel_reason" style="display:none"></textarea>
|
|
|
|
<button id="cancel-appointment" class="btn btn-default">' .
|
|
|
|
$this->lang->line('cancel') . '</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------
|
|
|
|
// DISPLAY EXCEPTIONS (IF ANY)
|
|
|
|
// ------------------------------------------------------
|
|
|
|
if (isset($exceptions)) {
|
|
|
|
echo '<div style="margin: 10px">';
|
|
|
|
echo '<h4>' . $this->lang->line('unexpected_issues') . '</h4>';
|
|
|
|
foreach($exceptions as $exception) {
|
|
|
|
echo exceptionToHtml($exception);
|
|
|
|
}
|
|
|
|
echo '</div>';
|
|
|
|
}
|
|
|
|
?>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2015-10-07 22:38:14 +03:00
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------
|
|
|
|
// SELECT SERVICE AND PROVIDER
|
|
|
|
// ------------------------------------------------------ ?>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2015-10-07 22:38:14 +03:00
|
|
|
<div id="wizard-frame-1" class="wizard-frame">
|
|
|
|
<div class="frame-container">
|
|
|
|
<h3 class="frame-title"><?php echo $this->lang->line('step_one_title'); ?></h3>
|
|
|
|
|
|
|
|
<div class="frame-content">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="select-service">
|
|
|
|
<strong><?php echo $this->lang->line('select_service'); ?></strong>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<select id="select-service" class="col-md-4 form-control">
|
|
|
|
<?php
|
|
|
|
// Group services by category, only if there is at least one service
|
|
|
|
// with a parent category.
|
|
|
|
$has_category = FALSE;
|
|
|
|
foreach($available_services as $service) {
|
|
|
|
if ($service['category_id'] != NULL) {
|
|
|
|
$has_category = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($has_category) {
|
|
|
|
$grouped_services = array();
|
|
|
|
|
|
|
|
foreach($available_services as $service) {
|
|
|
|
if ($service['category_id'] != NULL) {
|
|
|
|
if (!isset($grouped_services[$service['category_name']])) {
|
|
|
|
$grouped_services[$service['category_name']] = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
$grouped_services[$service['category_name']][] = $service;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We need the uncategorized services at the end of the list so
|
|
|
|
// we will use another iteration only for the uncategorized services.
|
|
|
|
$grouped_services['uncategorized'] = array();
|
|
|
|
foreach($available_services as $service) {
|
|
|
|
if ($service['category_id'] == NULL) {
|
|
|
|
$grouped_services['uncategorized'][] = $service;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($grouped_services as $key => $group) {
|
|
|
|
$group_label = ($key != 'uncategorized')
|
|
|
|
? $group[0]['category_name'] : 'Uncategorized';
|
|
|
|
|
|
|
|
if (count($group) > 0) {
|
|
|
|
echo '<optgroup label="' . $group_label . '">';
|
|
|
|
foreach($group as $service) {
|
|
|
|
echo '<option value="' . $service['id'] . '">'
|
|
|
|
. $service['name'] . '</option>';
|
|
|
|
}
|
|
|
|
echo '</optgroup>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
foreach($available_services as $service) {
|
|
|
|
echo '<option value="' . $service['id'] . '">'
|
|
|
|
. $service['name'] . '</option>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="select-provider">
|
|
|
|
<strong><?php echo $this->lang->line('select_provider'); ?></strong>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<select id="select-provider" class="col-md-4 form-control"></select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="service-description" style="display:none;"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="command-buttons">
|
|
|
|
<button type="button" id="button-next-1" class="btn button-next btn-primary"
|
|
|
|
data-step_index="1">
|
|
|
|
<?php echo $this->lang->line('next'); ?>
|
|
|
|
<span class="glyphicon glyphicon-forward"></span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------
|
|
|
|
// SELECT APPOINTMENT DATE
|
|
|
|
// ------------------------------------------------------ ?>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2015-10-07 22:38:14 +03:00
|
|
|
<div id="wizard-frame-2" class="wizard-frame" style="display:none;">
|
|
|
|
<div class="frame-container">
|
|
|
|
|
|
|
|
<h3 class="frame-title"><?php echo $this->lang->line('step_two_title'); ?></h3>
|
|
|
|
|
|
|
|
<div class="frame-content row">
|
2016-07-14 22:21:56 +03:00
|
|
|
<div class="col-sm-6">
|
2015-10-07 22:38:14 +03:00
|
|
|
<div id="select-date"></div>
|
|
|
|
</div>
|
|
|
|
|
2016-07-14 22:21:56 +03:00
|
|
|
<div class="col-sm-6">
|
2015-10-07 22:38:14 +03:00
|
|
|
<?php // Available hours are going to be fetched via ajax call. ?>
|
|
|
|
<div id="available-hours"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="command-buttons">
|
|
|
|
<button type="button" id="button-back-2" class="btn button-back btn-default"
|
|
|
|
data-step_index="2">
|
|
|
|
<span class="glyphicon glyphicon-backward"></span>
|
|
|
|
<?php echo $this->lang->line('back'); ?>
|
|
|
|
</button>
|
|
|
|
<button type="button" id="button-next-2" class="btn button-next btn-primary"
|
|
|
|
data-step_index="2">
|
|
|
|
<?php echo $this->lang->line('next'); ?>
|
|
|
|
<span class="glyphicon glyphicon-forward"></span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------
|
|
|
|
// ENTER CUSTOMER DATA
|
|
|
|
// ------------------------------------------------------ ?>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2015-10-07 22:38:14 +03:00
|
|
|
<div id="wizard-frame-3" class="wizard-frame" style="display:none;">
|
|
|
|
<div class="frame-container">
|
|
|
|
|
|
|
|
<h3 class="frame-title"><?php echo $this->lang->line('step_three_title'); ?></h3>
|
|
|
|
|
|
|
|
<div class="frame-content row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="first-name" class="control-label"><?php echo $this->lang->line('first_name'); ?> *</label>
|
|
|
|
<input type="text" id="first-name" class="required form-control" maxlength="100" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="last-name" class="control-label"><?php echo $this->lang->line('last_name'); ?> *</label>
|
|
|
|
<input type="text" id="last-name" class="required form-control" maxlength="250" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email" class="control-label"><?php echo $this->lang->line('email'); ?> *</label>
|
|
|
|
<input type="text" id="email" class="required form-control" maxlength="250" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="phone-number" class="control-label"><?php echo $this->lang->line('phone_number'); ?> *</label>
|
|
|
|
<input type="text" id="phone-number" class="required form-control" maxlength="60" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="address" class="control-label"><?php echo $this->lang->line('address'); ?></label>
|
|
|
|
<input type="text" id="address" class="form-control" maxlength="250" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="city" class="control-label"><?php echo $this->lang->line('city'); ?></label>
|
|
|
|
<input type="text" id="city" class="form-control" maxlength="120" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="zip-code" class="control-label"><?php echo $this->lang->line('zip_code'); ?></label>
|
|
|
|
<input type="text" id="zip-code" class="form-control" maxlength="120" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="notes" class="control-label"><?php echo $this->lang->line('notes'); ?></label>
|
|
|
|
<textarea id="notes" maxlength="500" class="form-control" rows="3"></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<em id="form-message" class="text-danger"><?php echo $this->lang->line('fields_are_required'); ?></em>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="command-buttons">
|
|
|
|
<button type="button" id="button-back-3" class="btn button-back btn-default"
|
|
|
|
data-step_index="3"><span class="glyphicon glyphicon-backward"></span>
|
|
|
|
<?php echo $this->lang->line('back'); ?>
|
|
|
|
</button>
|
|
|
|
<button type="button" id="button-next-3" class="btn button-next btn-primary"
|
|
|
|
data-step_index="3">
|
|
|
|
<?php echo $this->lang->line('next'); ?>
|
|
|
|
<span class="glyphicon glyphicon-forward"></span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------
|
|
|
|
// APPOINTMENT DATA CONFIRMATION
|
|
|
|
// ------------------------------------------------------ ?>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2015-10-07 22:38:14 +03:00
|
|
|
<div id="wizard-frame-4" class="wizard-frame" style="display:none;">
|
|
|
|
<div class="frame-container">
|
|
|
|
<h3 class="frame-title"><?php echo $this->lang->line('step_four_title'); ?></h3>
|
|
|
|
<div class="frame-content row">
|
|
|
|
<div id="appointment-details" class="col-md-6"></div>
|
|
|
|
<div id="customer-details" class="col-md-6"></div>
|
|
|
|
</div>
|
2015-12-30 13:54:33 +02:00
|
|
|
<?php if ($this->settings_model->get_setting('require_captcha') === '1'): ?>
|
2015-10-22 00:29:20 +03:00
|
|
|
<div class="frame-content row">
|
|
|
|
<div class="col-md-6 col-sm-12">
|
|
|
|
<h4 class="captcha-title">
|
2015-12-30 13:54:33 +02:00
|
|
|
CAPTCHA
|
2015-10-22 00:29:20 +03:00
|
|
|
<small class="glyphicon glyphicon-refresh"></small>
|
|
|
|
</h4>
|
2016-03-07 21:59:04 +02:00
|
|
|
<img class="captcha-image" src="<?php echo site_url('captcha'); ?>">
|
2015-10-22 00:29:20 +03:00
|
|
|
<input class="captcha-text" type="text" value="" />
|
2016-01-01 21:18:03 +02:00
|
|
|
<span id="captcha-hint" class="help-block" style="opacity:0"> </span>
|
2015-10-22 00:29:20 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-30 13:54:33 +02:00
|
|
|
<?php endif; ?>
|
2015-10-07 22:38:14 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="command-buttons">
|
|
|
|
<button type="button" id="button-back-4" class="btn button-back btn-default"
|
|
|
|
data-step_index="4">
|
|
|
|
<span class="glyphicon glyphicon-backward"></span>
|
|
|
|
<?php echo $this->lang->line('back'); ?>
|
|
|
|
</button>
|
|
|
|
<form id="book-appointment-form" style="display:inline-block" method="post">
|
|
|
|
<button id="book-appointment-submit" type="button" class="btn btn-success">
|
|
|
|
<span class="glyphicon glyphicon-ok"></span>
|
|
|
|
<?php
|
|
|
|
echo (!$manage_mode) ? $this->lang->line('confirm')
|
|
|
|
: $this->lang->line('update');
|
|
|
|
?>
|
|
|
|
</button>
|
|
|
|
<input type="hidden" name="csrfToken" />
|
|
|
|
<input type="hidden" name="post_data" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------
|
|
|
|
// FRAME FOOTER
|
|
|
|
// ------------------------------------------------------ ?>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2015-10-07 22:38:14 +03:00
|
|
|
<div id="frame-footer">
|
|
|
|
Powered By
|
|
|
|
<a href="http://easyappointments.org" target="_blank">Easy!Appointments</a>
|
|
|
|
|
|
|
|
|
<span id="select-language" class="label label-success">
|
|
|
|
<?php echo ucfirst($this->config->item('language')); ?>
|
|
|
|
</span>
|
2015-11-24 00:46:15 +02:00
|
|
|
<?php if ($this->session->userdata('user_id')): ?>
|
2015-11-24 22:29:32 +02:00
|
|
|
|
|
2016-03-07 21:59:04 +02:00
|
|
|
<a href="<?php echo site_url('backend'); ?>">
|
2015-11-24 00:46:15 +02:00
|
|
|
<?php echo $this->lang->line('backend_section'); ?>
|
|
|
|
</a>
|
|
|
|
<?php endif; ?>
|
2015-10-07 22:38:14 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-22 00:29:20 +03:00
|
|
|
|
2016-04-24 11:36:06 +03:00
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// GLOBAL JAVASCRIPT VARIABLES
|
|
|
|
// ------------------------------------------------------------ ?>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var GlobalVariables = {
|
|
|
|
availableServices : <?php echo json_encode($available_services); ?>,
|
|
|
|
availableProviders : <?php echo json_encode($available_providers); ?>,
|
|
|
|
baseUrl : <?php echo json_encode($this->config->item('base_url')); ?>,
|
|
|
|
manageMode : <?php echo ($manage_mode) ? 'true' : 'false'; ?>,
|
|
|
|
dateFormat : <?php echo json_encode($date_format); ?>,
|
|
|
|
appointmentData : <?php echo json_encode($appointment_data); ?>,
|
|
|
|
providerData : <?php echo json_encode($provider_data); ?>,
|
|
|
|
customerData : <?php echo json_encode($customer_data); ?>,
|
|
|
|
csrfToken : <?php echo json_encode($this->security->get_csrf_hash()); ?>
|
|
|
|
};
|
|
|
|
|
|
|
|
var EALang = <?php echo json_encode($this->lang->language); ?>;
|
|
|
|
var availableLanguages = <?php echo json_encode($this->config->item('available_languages')); ?>;
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// INCLUDE JAVASCRIPT FILES
|
|
|
|
// ------------------------------------------------------------ ?>
|
|
|
|
|
2015-10-07 22:38:14 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2016-03-07 22:19:55 +02:00
|
|
|
src="<?php echo base_url('assets/js/general_functions.js'); ?>"></script>
|
2016-04-24 11:36:06 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
|
|
|
src="<?php echo base_url('assets/ext/jquery/jquery.min.js'); ?>"></script>
|
|
|
|
<script
|
|
|
|
type="text/javascript"
|
|
|
|
src="<?php echo base_url('assets/ext/jquery-ui/jquery-ui.min.js'); ?>"></script>
|
|
|
|
<script
|
|
|
|
type="text/javascript"
|
|
|
|
src="<?php echo base_url('assets/ext/jquery-qtip/jquery.qtip.min.js'); ?>"></script>
|
|
|
|
<script
|
|
|
|
type="text/javascript"
|
|
|
|
src="<?php echo base_url('assets/ext/bootstrap/js/bootstrap.min.js'); ?>"></script>
|
|
|
|
<script
|
|
|
|
type="text/javascript"
|
|
|
|
src="<?php echo base_url('assets/ext/datejs/date.js'); ?>"></script>
|
2016-04-27 22:57:11 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
|
|
|
src="<?php echo base_url('assets/js/frontend_book_api.js'); ?>"></script>
|
2016-04-24 11:36:06 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
|
|
|
src="<?php echo base_url('assets/js/frontend_book.js'); ?>"></script>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// VIEW FILE JAVASCRIPT CODE
|
|
|
|
// ------------------------------------------------------------ ?>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function() {
|
|
|
|
FrontendBook.initialize(true, GlobalVariables.manageMode);
|
|
|
|
GeneralFunctions.enableLanguageSelection($('#select-language'));
|
|
|
|
});
|
|
|
|
</script>
|
2015-10-07 22:38:14 +03:00
|
|
|
|
2016-01-17 14:10:48 +02:00
|
|
|
<?php google_analytics_script(); ?>
|
2015-10-07 22:38:14 +03:00
|
|
|
</body>
|
|
|
|
</html>
|