1
|
|
|
<? include('header.php'); ?>
|
|
|
|
|
2
|
|
|
<!--
|
3
|
|
|
ASTPP 3.0
|
4
|
|
|
Add classes
|
5
|
|
|
-->
|
6
|
|
|
<section class="slice color-one">
|
7
|
|
|
<div class="w-section inverse no-padding border_box">
|
8
|
|
|
<div class="container">
|
9
|
|
|
<div class="">
|
10
|
|
|
<!--******************************************-->
|
11
|
|
|
|
12
|
|
|
<!--
|
13
|
|
|
ASTPP 3.0
|
14
|
|
|
Remove hr
|
15
|
|
|
-->
|
16
|
|
|
<!--******************************************-->
|
17
|
|
|
</div>
|
18
|
|
|
</div>
|
19
|
|
|
</div>
|
20
|
|
|
</div>
|
21
|
|
|
</section>
|
22
|
|
|
<section class="page-wrap">
|
23
|
|
|
<div id="toast-container" class="toast-top-right col-md-6" style="display:none;" >
|
24
|
|
|
<div class="toast fa-check toast-success1">
|
25
|
|
|
<button class="toast-close-button">
|
26
|
|
|
<i class="fa fa-close"></i>
|
27
|
|
|
</button>
|
28
|
|
|
<div class="toast-message">
|
29
|
|
|
Success message
|
30
|
|
|
</div>
|
31
|
|
|
</div>
|
32
|
|
|
</div>
|
33
|
|
|
|
34
|
|
|
<div id="toast-container_error" class="toast-top-right col-md-6" style="display:none;z-index:999"> <!-- style="display:none;" -->
|
35
|
|
|
<div class="toast fa fa-times toast-danger1">
|
36
|
|
|
<button class="toast-close-button">
|
37
|
|
|
<i class="fa fa-close"></i>
|
38
|
|
|
</button>
|
39
|
|
|
<div class="toast-message">
|
40
|
|
|
Error message light
|
41
|
|
|
</div>
|
42
|
|
|
</div>
|
43
|
|
|
</div>
|
44
|
|
|
<?php
|
45
|
|
|
$astpp_msg = false;
|
46
|
|
|
$msg_type = "";
|
47
|
|
|
$astpp_err_msg = $this->session->flashdata('astpp_errormsg');
|
48
|
|
|
if ($astpp_err_msg) {
|
49
|
|
|
$astpp_msg = $astpp_err_msg;
|
50
|
|
|
$msg_type = "error";
|
51
|
|
|
}
|
52
|
|
|
|
53
|
|
|
$astpp_notify_msg = $this->session->flashdata('astpp_notification');
|
54
|
|
|
if ($astpp_notify_msg) {
|
55
|
|
|
$astpp_msg = $astpp_notify_msg;
|
56
|
|
|
$msg_type = "notification";
|
57
|
|
|
}
|
58
|
|
|
if ($astpp_msg) {
|
59
|
|
|
?>
|
60
|
|
|
<script>
|
61
|
|
|
var validate_ERR = '<?= $astpp_msg; ?>';
|
62
|
|
|
var ERR_type = '<?= $msg_type; ?>';
|
63
|
|
|
display_astpp_message(validate_ERR,ERR_type);
|
64
|
|
|
</script>
|
65
|
|
|
<?php } ?>
|
66
|
|
|
|
67
|
|
|
<?php
|
68
|
|
|
$class = "active";
|
69
|
|
|
?>
|
70
|
|
|
<div class="sidebar">
|
71
|
|
|
<ul class='sidemenu'>
|
72
|
|
|
<li class="<?php if ($group_title == 'global') { echo $class; } ?>"><a href ='<?php echo base_url(); ?>systems/configuration/global'>Global</a></li>
|
73
|
|
|
<li class="<?php if ($group_title == 'email') { echo $class; } ?>"><a href ='<?php echo base_url(); ?>systems/configuration/email'>Email</a></li>
|
74
|
|
|
<li class="<?php if ($group_title == 'callingcard') { echo $class; } ?>"><a href ='<?php echo base_url(); ?>systems/configuration/callingcard'>Callingcard</a></li>
|
75
|
|
|
<li class="<?php if ($group_title == 'opensips') { echo $class; } ?>"><a href ='<?php echo base_url(); ?>systems/configuration/opensips'>Opensips</a></li>
|
76
|
|
|
<li class="<?php if ($group_title == 'paypal') { echo $class; } ?>"><a href ='<?php echo base_url(); ?>systems/configuration/paypal'>Paypal</a></li>
|
77
|
|
|
<li class="<?php if ($group_title == 'signup') { echo $class; } ?>"><a href ='<?php echo base_url(); ?>systems/configuration/signup'>Signup</a></li>
|
78
|
|
|
</ul>
|
79
|
|
|
|
80
|
|
|
</div>
|
81
|
|
|
|
82
|
|
|
<? start_block_marker('content') ?><? end_block_marker() ?>
|
83
|
|
|
|
84
|
|
|
|
85
|
|
|
<?php include('footer.php'); ?>
|
86
|
|
|
|
87
|
|
|
|
Short opening tags are disabled in PHP’s default configuration. In such a case, all content of this file is output verbatim to the browser without being parsed, or executed.
As a precaution to avoid these problems better use the long opening tag
<?php
.