Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2271 | Rev 2646 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2271 Rev 2535
Línea 56... Línea 56...
56
//                         $('#badge-message').html(response['data']['total_messages']);
56
//                         $('#badge-message').html(response['data']['total_messages']);
57
//                         $('#badge-message').show();
57
//                         $('#badge-message').show();
58
//                     } else {
58
//                     } else {
59
//                         $('#badge-message').hide();
59
//                         $('#badge-message').hide();
60
//                     }
60
//                     }
61
                    
61
 
62
//                     if(parseInt(response['data']['total_notifications']) > 0) {
62
//                     if(parseInt(response['data']['total_notifications']) > 0) {
63
//                         $('#badge-notification').html(response['data']['total_notifications']);
63
//                         $('#badge-notification').html(response['data']['total_notifications']);
64
//                         $('#badge-notification').show();
64
//                         $('#badge-notification').show();
65
//                     } else {
65
//                     } else {
66
//                         $('#badge-notification').hide();
66
//                         $('#badge-notification').hide();
67
//                     }
67
//                     }
68
                    
68
 
69
                    
69
 
70
//     		    } else {
70
//     		    } else {
71
//                     if(response['data']['url']) {
71
//                     if(response['data']['url']) {
72
//                         window.location.href = response['data']['url'];
72
//                         window.location.href = response['data']['url'];
73
//                     } else {
73
//                     } else {
74
//                         $.fn.showError(response['data']['message'])
74
//                         $.fn.showError(response['data']['message'])
75
//                     }
75
//                     }
76
//                 }
76
//                 }
77
//             }).fail(function( jqXHR, textStatus, errorThrown) {
77
//             }).fail(function( jqXHR, textStatus, errorThrown) {
78
//             }).always(function() {
78
//             }).always(function() {
79
            
79
 
80
//                 setTimeout(function() {
80
//                 setTimeout(function() {
81
//                     $.fn.checkSession();
81
//                     $.fn.checkSession();
82
//                 }, 3000);
82
//                 }, 3000);
83
//             })
83
//             })
84
            
84
 
85
//         }
85
//         }
86
        
86
 
87
//         setTimeout(function() {
87
//         setTimeout(function() {
88
//             $.fn.checkSession();
88
//             $.fn.checkSession();
89
//         }, 3000);
89
//         }, 3000);
90
        
90
 
91
//     });
91
//     });
92
// EOT;
92
// EOT;
93
//   $this->inlineScript()->captureEnd();
93
//   $this->inlineScript()->captureEnd();
94
// }
94
// }
95
$acl = $this->viewModel()->getRoot()->getVariable('acl');
95
$acl = $this->viewModel()->getRoot()->getVariable('acl');
Línea 137... Línea 137...
137
 
137
 
138
 
138
 
139
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style.css') ?>" />
139
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style.css') ?>" />
140
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive.css') ?>" />
140
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive.css') ?>" />
141
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css') ?>" />
141
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css') ?>" />
142
  
142
 
143
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/jquery.mCustomScrollbar.min.css') ?>" />
143
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/jquery.mCustomScrollbar.min.css') ?>" />
144
  
144
 
145
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/nprogress/nprogress.css') ?>">
145
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/nprogress/nprogress.css') ?>">
146
  
146
 
147
  <?php if ($currentUser->hasIdentity()) : ?>
147
  <?php if ($currentUser->hasIdentity()) : ?>
148
    
148
 
149
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/icons.css') ?>" />
149
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/icons.css') ?>" />
150
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/smiley/assets/sprites/emojione.sprites.css') ?>" />
150
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/smiley/assets/sprites/emojione.sprites.css') ?>" />
151
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery-ui.css') ?>" />
151
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery-ui.css') ?>" />
Línea 165... Línea 165...
165
<body>
165
<body>
Línea 166... Línea 166...
166
 
166
 
167
 
167
 
168
  <div class="wrapper">
168
  <div class="wrapper">
169
    <?php echo $this->menuHelper($currentUser->getUserId()) ?>
169
    <?php echo $this->menuHelper($currentUser->getUserId()) ?>
170
	
170
 
171
    <div id="app" style="min-height: 80vh">
171
    <div id="app" style="min-height: 80vh">
Línea 172... Línea 172...
172
      <?php echo $this->content ?>
172
      <?php echo $this->content ?>
173
    </div>
173
    </div>
174
 
174
 
175
    <?php if ($currentUser->hasIdentity()) {
175
    <?php if ($currentUser->hasIdentity()) {
176
      $user = $currentUser->getUser();
176
      $user = $currentUser->getUser();
Línea -... Línea 177...
-
 
177
      echo $this->chatHelper($user->id);
-
 
178
    }
-
 
179
    ?>
-
 
180
 
-
 
181
    <footer>
-
 
182
      <div class="footy-sec mn no-margin">
-
 
183
        <div class="container">
-
 
184
          <?php echo $this->footerHelper() ?>
-
 
185
          <p><img src="<?php echo $this->basePath('images/copy-icon2.png') ?>" alt="">Copyright <?php echo date('Y') ?></p>
-
 
186
          <img class="fl-rgt" src="<?php echo $this->basePath('/images/logo-ll34x34.png') ?>" alt="">
177
      echo $this->chatHelper($user->id);
187
        </div>
178
    }
188
      </div>
179
    ?>
189
    </footer>
180
 
190
 
181
  </div>
191
  </div>