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