Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
use LeadersLinked\Library\Functions;
3
 
4
$notify = '';
5
$messages = $this->flashMessenger()->getInfoMessages();
6
foreach($messages as $message)
7
{
8
    $notify .= "$.fn.showInfo('$message')";
9
}
10
 
11
$messages = $this->flashMessenger()->getSuccessMessages();
12
foreach($messages as $message)
13
{
14
    $notify .= "$.fn.showSuccess('$message')";
15
}
16
 
17
$messages = $this->flashMessenger()->getWarningMessages();
18
foreach($messages as $message)
19
{
20
    $notify .= " $.fn.showWarning('$message')";
21
}
22
 
23
$messages = $this->flashMessenger()->getErrorMessages();
24
foreach($messages as $message)
25
{
26
    $notify .= " $.fn.showError('$message')";
27
}
28
 
29
if($notify) {
30
    $this->inlineScript()->captureStart();
31
    echo " jQuery( document ).ready(function( $ ) { $notify }); ";
32
    $this->inlineScript()->captureEnd();
33
}
34
 
35
$routeCheckSession = $this->url('check-session');
36
 
37
$currentUser    = $this->currentUserHelper();
38
if($currentUser->hasIdentity()) {
39
    $this->inlineScript()->captureStart();
40
    echo <<<EOT
41
    jQuery( document ).ready(function( $ ) {
42
        $.fn.checkSession = function() {
43
            $.ajax({
44
                'dataType'  : 'json',
45
                'accept'    : 'application/json',
46
                'method'    : 'get',
47
                'url'       : '$routeCheckSession',
48
            }).done(function(response) {
49
                if(response['success']) {
50
                    if(response['data']['total_messages'] > 0) {
51
                        $('#badge-message').html(response['data']['total_messages']);
52
                        $('#badge-message').show();
53
                    } else {
54
                        $('#badge-message').hide();
55
                    }
56
 
57
                    if(response['data']['total_notifications'] > 0) {
58
                        $('#badge-notification').html(response['data']['total_notifications']);
59
                        $('#badge-notification').show();
60
                    } else {
61
                        $('#badge-notification').hide();
62
                    }
63
 
64
 
65
    		    } else {
66
                    if(response['data']['url']) {
67
                        window.location.href = response['data']['url'];
68
                    }
69
                }
70
            }).fail(function( jqXHR, textStatus, errorThrown) {
71
            }).always(function() {
72
 
73
                setTimeout(function() {
74
                    $.fn.checkSession();
75
                }, 3000);
76
            })
77
 
78
        }
79
 
80
        setTimeout(function() {
81
            $.fn.checkSession();
82
        }, 3000);
83
 
84
    });
85
EOT;
86
    $this->inlineScript()->captureEnd();
87
}
88
$acl 			= $this->viewModel()->getRoot()->getVariable('acl');
89
 
90
 
91
?>
92
 
93
<!DOCTYPE html>
94
<html>
95
	<head>
3712 efrain 96
		<?php
97
        echo $this->headTitle();
98
        ?>
99
        <link rel="icon" href="<?php echo $this->networkFavicoHelper(); ?>">
100
        <?php
1 www 101
            echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
102
            ->appendHttpEquiv('expires','0')
103
        	->appendHttpEquiv('expires','Tue, 01 Jan 1980 1:00:00 GMT')
104
        	->appendHttpEquiv('pragma', 'no-cache')
105
        	->appendHttpEquiv('Cache-Control', 'no-store')
106
        	->appendHttpEquiv('Cache-Control', 'max-age=0')
107
        	->appendHttpEquiv('Cache-Control', 'no-cache')
108
        	->appendHttpEquiv('charset', 'UTF-8')
109
        	->appendName('viewport', 'width=device-width, initial-scale=1.0');
110
        	//->appendName('description', '')
111
        	//->appendName('author', '{AUTHOR}')
112
        	//->appendName('keywords', '{KEYWORDS}')
113
        	//->appendName('copyright', '{COPYRIGHT}')
114
        	//->appendName('google-signin-client_id', '{GOOGLE_CLIENT_ID');
115
        ?>
116
 		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/animate.css')?>">
117
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/bootstrap.min.css')?>">
118
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome.css')?>">
119
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome-font-awesome.min.css')?>">
120
 
121
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/fontawesome-free/css/all.min.css')?>">
122
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/font-awesome/css/font-awesome.min.css')?>">
123
    	<!--
124
 
125
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/font-awesome.min.css')?>">
126
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/font-awesome/font-awesome.min.css')?>">
127
    	-->
128
 
129
 
130
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick.css')?>">
131
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick-theme.css')?>">
132
 
133
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style.css')?>" />
134
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style-cesa.css')?>" />
135
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive.css')?>" />
136
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css')?>" />
137
 
138
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/nprogress/nprogress.css')?>">
139
 
140
        <?php
141
            echo $this->headStyle();
3639 efrain 142
            echo $this->networkStylesAndColorsHelper();
1 www 143
            echo $this->headLink();
144
            echo $this->headScript();
145
        ?>
146
 
147
   	</head>
148
	<body>
149
    	<div class="wrapper">
150
      		<header>
151
        		<div class="container">
152
          			<div class="header-data">
153
          				<?php if($currentUser->hasIdentity()) : ?>
154
            			<div class="logo">
155
	              			<a href="<?php echo $this->url('dashboard')?>" title=""><img src="<?php echo $this->basePath('images/logo34x34.png') ?>" alt=""/></a>
156
              			</div>
157
              			<?php else : ?>
158
           				<div class="logo pd-btm">
159
							<a href="<?php echo $this->url('home')?>" title=""><img src="<?php echo $this->basePath('images/logo34x34.png') ?>" alt=""></a>
160
						</div>
161
              			<?php endif;?>
162
 
163
 
164
 
165
 
166
            			<?php if($currentUser->hasIdentity()) : ?>
167
 
168
            				<?php echo $this->menuBackendHelper() ?>
169
 
170
            				<div class="menu-btn">
171
        			   			<a href="#" title="">
172
									<i class="fa fa-bars text-primary"></i>
173
								</a>
174
                    		</div>
175
 
176
   				         	<div class="user-account">
177
							  <div class="row">
178
								  <!-- <div class="col"> -->
179
									<a href="#" class="notification">
180
									<i class="fa fa-envelope"></i>
181
										<span id="badge-message" class="badge" style="display: none">0</span>
182
									</a>
183
								  <!-- </div> -->
184
								  <!-- <div class="col"> -->
185
									<a href="#" class="notification">
186
									<i class="fa fa-bolt"></i>
187
										<span id="badge-notification" class="badge" style="display: none">0</span>
188
									</a>
189
								  <!-- </div> -->
190
							  </div>
191
 
192
 
193
   				         		<?php $user = $currentUser->getUser() ?>
194
   				         		<div class="user-info">
195
   				         		<img id="navbar-user-img" src="<?php echo $this->url('storage', ['type' => 'user', 'code' => $user->uuid, 'filename' => $user->image])?>" alt="" />
196
   				         		<i class="la la-sort-down"></i>
197
   				         		</div>
198
   				         		<?php
199
   				         		//echo $this->userInfoHelper()
200
     							?>
201
             					<div class="user-account-settingss" id="users">
202
                			        <h3>LABEL_SETTINGS</h3>
203
                					<ul class="us-links">
204
                  						<li><a href="<?php echo $this->url('account-settings')?>" title="">LABEL_ACCOUNT_SETTING</a></li>
205
                                        <li><a href="<?php echo $this->url('privacy-policy')?>" title="">LABEL_PRIVACY_POLICY</a></li>
206
                                        <li><a href="<?php echo $this->url('cookies')?>" title="">LABEL_COOKIES_POLICY</a></li>
207
                					</ul>
208
 
209
                					<h3 class="tc"><a href="<?php echo $this->url('signout')?>" title="">LABEL_LOGOUT</a></h3>
210
              					</div>
211
              				</div>
212
						<?php else : ?>
213
							<div class="login_register">
214
								<ul>
215
									<li><a href="<?php echo $this->url('home')?>" title="">LABEL_SIGNIN</a></li>
216
								</ul>
217
							</div>
218
						<?php endif ?>
219
					</div>
220
 				</div>
221
      		</header>
222
			<div id="app" style="min-height: 400px">
223
			<?php echo $this->content ?>
224
  			</div>
225
			<footer>
226
        		<div class="footy-sec mn no-margin">
227
        			<div class="container">
228
    		  			<?php echo $this->footerHelper() ?>
229
    		  			<p><img src="<?php echo $this->basePath('images/copy-icon2.png')?>" alt="">Copyright 2019</p>
3777 stevensc 230
						<img class="fl-rgt" src="<?php echo $this->basePath('/images/LL-08.png')?>" alt="">
1 www 231
					</div>
232
		  		</div>
233
		  	</footer>
234
 
235
        </div>
236
        <!--theme-layout end-->
237
 
238
		<script type="text/javascript" src="<?php echo $this->basePath('js/jquery.min.js')?>"></script>
239
        <script type="text/javascript" src="<?php echo $this->basePath('js/popper.js')?>"></script>
240
        <script type="text/javascript" src="<?php echo $this->basePath('js/bootstrap.min.js')?>"></script>
241
        <script type="text/javascript" src="<?php echo $this->basePath('lib/slick/slick.min.js')?>"></script>
242
        <script type="text/javascript" src="<?php echo $this->basePath('js/script.js')?>"></script>
243
        <script type="text/javascript" src="<?php echo $this->basePath('vendors/nprogress/nprogress.js')?>"></script>
244
        <script type="text/javascript" src="<?php echo $this->basePath('vendors/jquery-validation/jquery.validate.min.js')?>"></script>
245
        <script type="text/javascript" src="<?php echo $this->basePath('vendors/jquery-validation/additional-methods.min.js')?>"></script>
246
        <script type="text/javascript" src="<?php echo $this->basePath('vendors/jquery-validation/localization/messages_es.min.js')?>"></script>
247
        <script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap-notify/bootstrap-notify.min.js')?>"></script>
248
        <script type="text/javascript" src="<?php echo $this->basePath('js/leaderslinked.js')?>"></script>
3731 efrain 249
    	<script type="text/javascript" src="<?php echo $this->basePath('js/app.js') ?>"></script>
250
 
1 www 251
		<?php
252
            echo $this->inlineScript();
253
        ?>
254
    </body>
255
</html>