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