Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15337 | Rev 16822 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
$notify = '';
3
$messages = $this->flashMessenger()->getInfoMessages();
4
foreach($messages as $message)
5
{
6
    $notify .= "$.fn.showInfo('$message')";
7
}
8
 
9
$messages = $this->flashMessenger()->getSuccessMessages();
10
foreach($messages as $message)
11
{
12
    $notify .= "$.fn.showSuccess('$message')";
13
}
14
 
15
$messages = $this->flashMessenger()->getWarningMessages();
16
foreach($messages as $message)
17
{
18
    $notify .= " $.fn.showWarning('$message')";
19
}
20
 
21
$messages = $this->flashMessenger()->getErrorMessages();
22
foreach($messages as $message)
23
{
24
    $notify .= " $.fn.showError('$message')";
25
}
26
 
27
if($notify) {
28
    $this->inlineScript()->captureStart();
29
    echo " jQuery( document ).ready(function( $ ) { $notify }); ";
30
    $this->inlineScript()->captureEnd();
31
}
32
 
33
 
34
?>
35
<!DOCTYPE html>
36
<html lang="es">
37
	<head>
38
		<?php
39
        echo $this->headTitle();
15350 efrain 40
        ?>
41
        <link rel="icon" href="<?php echo $this->networkFavicoHelper(); ?>">
42
        <?php
1 www 43
        echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
44
            ->appendHttpEquiv('expires','0')
45
        	->appendHttpEquiv('expires','Tue, 01 Jan 1980 1:00:00 GMT')
46
        	->appendHttpEquiv('pragma', 'no-cache')
47
        	->appendHttpEquiv('Cache-Control', 'no-store')
48
        	->appendHttpEquiv('Cache-Control', 'max-age=0')
49
        	->appendHttpEquiv('Cache-Control', 'no-cache')
50
        	->appendHttpEquiv('charset', 'UTF-8')
51
        	->appendName('viewport', 'width=device-width, initial-scale=1.0');
52
        ?>
53
 
54
	    <!-- Google Font: Source Sans Pro -->
55
		<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
56
        <!-- Font Awesome -->
57
		<link rel="stylesheet" href="<?php echo $this->basePath('plugins/fontawesome-free/css/all.min.css') ?>">
58
        <!-- icheck bootstrap -->
59
      	<link rel="stylesheet" href="<?php echo $this->basePath('plugins/icheck-bootstrap/icheck-bootstrap.min.css') ?>">
60
        <!-- Theme style -->
61
      	<link rel="stylesheet" href="<?php echo $this->basePath('css/adminlte.min.css') ?>">
62
  	    <!-- App style -->
63
      	<link rel="stylesheet" href="<?php echo $this->basePath('css/app.css') ?>">
64
 
65
        <?php
66
        echo $this->headStyle();
15337 efrain 67
        echo $this->networkStylesAndColorsHelper();
1 www 68
        echo $this->headLink();
69
        echo $this->headScript();
70
        ?>
71
    </head>
72
    <body class="hold-transition login-page">
73
    	<!-- /.login-box -->
74
    	<div class="login-box">
75
			<?php echo $this->content ?>
76
    	</div>
77
        <!-- /.login-box -->
78
 
79
        <!-- jQuery -->
80
    	<script src="<?php echo $this->basePath('plugins/jquery/jquery.min.js') ?>"></script>
81
        <!-- Bootstrap 4 -->
82
		<script src="<?php echo $this->basePath('plugins/bootstrap/js/bootstrap.bundle.min.js') ?>"></script>
83
        <!-- AdminLTE App -->
84
    	<script src="<?php echo $this->basePath('js/adminlte.min.js') ?>"></script>
85
 
86
    	<!--  Aplicacion -->
87
    	<script src="<?php echo $this->basePath('plugins/bootstrap-notify/bootstrap-notify.min.js') ?>"></script>
88
    	<script src="<?php echo $this->basePath('js/app.js') ?>"></script>
89
		<?php
90
        echo $this->inlineScript();
91
        ?>
92
 
93
    </body>
94
</html>