Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 11564 Rev 11565
Línea 1... Línea 1...
1
<?php
1
<?php
2
$currentUser    = $this->currentUserHelper();
2
$currentUserHelper    = $this->currentUserHelper();
3
$user = $currentUser->getUser();
3
$user = $currentUserHelper->getUser();
4
$company = $currentUser->getCompany();
4
$company = $currentUserHelper->getCompany();
Línea 5... Línea 5...
5
 
5
 
6
$notify = '';
6
$notify = '';
7
$messages = $this->flashMessenger()->getInfoMessages();
7
$messages = $this->flashMessenger()->getInfoMessages();
8
foreach ($messages as $message) {
8
foreach ($messages as $message) {
Línea 119... Línea 119...
119
	echo $this->headLink();
119
	echo $this->headLink();
120
	echo $this->headScript();
120
	echo $this->headScript();
121
	?>
121
	?>
Línea 122... Línea -...
122
	
-
 
-
 
122
	
123
 
123
 
124
    
124
     <?php if ($currentUserHelper->hasIdentity()) :  ?>
125
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/icons.css') ?>" />
125
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/icons.css') ?>" />
126
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/smiley/assets/sprites/emojione.sprites.css') ?>" />
126
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/smiley/assets/sprites/emojione.sprites.css') ?>" />
127
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery-ui.css') ?>" />
127
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery-ui.css') ?>" />
128
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery.ui.plupload.css') ?>" />
128
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery.ui.plupload.css') ?>" />
129
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style-cesa.css') ?>" />
-
 
-
 
129
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style-cesa.css') ?>" />
Línea 130... Línea 130...
130
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/chat.css') ?>" />
130
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/chat.css') ?>" />
Línea 131... Línea 131...
131
 
131
	<?php endif; ?>
132
	
132
	
Línea 144... Línea 144...
144
				<?php echo $this->content ?>
144
				<?php echo $this->content ?>
145
			</section>
145
			</section>
Línea 146... Línea 146...
146
			
146
			
147
			
-
 
148
			<?php 
147
			
149
			echo '<pre>';
-
 
150
			var_dump(get_object_vars($this));
148
			<?php 
-
 
149
			if ($currentUserHelper->hasIdentity()) {
-
 
150
			    echo $this->chatHelper($user->id); 
Línea 151... Línea 151...
151
			echo '</pre>';
151
			}
152
			//echo $this->chatHelper($currentUser->id) ?>
152
			?>
153
			
153
			
154
			<!-- /.content -->
154
			<!-- /.content -->
Línea 166... Línea 166...
166
	<script src="<?php echo $this->basePath('js/app.js') ?>"></script>
166
	<script src="<?php echo $this->basePath('js/app.js') ?>"></script>
167
	<?php
167
	<?php
168
	echo $this->inlineScript();
168
	echo $this->inlineScript();
169
	?>
169
	?>
Línea 170... Línea -...
170
	
-
 
-
 
170
	
171
	
171
	<?php if ($currentUserHelper->hasIdentity()) :  ?>
172
  <script type="text/javascript" src="<?php echo $this->basePath('vendors/smiley/smiley.js') ?>"></script>
172
  <script type="text/javascript" src="<?php echo $this->basePath('vendors/smiley/smiley.js') ?>"></script>
173
  <script type="text/javascript" src="<?php echo $this->basePath('vendors/smiley/js/emojione.min.js') ?>"></script>
-
 
-
 
173
  <script type="text/javascript" src="<?php echo $this->basePath('vendors/smiley/js/emojione.min.js') ?>"></script>
174
 
174
	<?php endif; ?>
Línea 175... Línea 175...
175
</body>
175
</body>
176
 
176