Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 712 | Rev 3639 | 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>
37
    <head>
38
    	<?php
39
            echo $this->headTitle();
40
            echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
41
            ->appendHttpEquiv('expires','0')
42
        	->appendHttpEquiv('expires','Tue, 01 Jan 1980 1:00:00 GMT')
43
        	->appendHttpEquiv('pragma', 'no-cache')
44
        	->appendHttpEquiv('Cache-Control', 'no-store')
45
        	->appendHttpEquiv('Cache-Control', 'max-age=0')
46
        	->appendHttpEquiv('Cache-Control', 'no-cache')
47
        	->appendHttpEquiv('charset', 'UTF-8')
48
        	->appendName('viewport', 'width=device-width, initial-scale=1.0');
49
        ?>
50
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/animate.css')?>">
51
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/bootstrap.min.css')?>">
52
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome.css')?>">
53
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome-font-awesome.min.css')?>">
54
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/fontawesome-free/css/all.min.css')?>">
55
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/font-awesome.min.css')?>">
56
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick.css')?>">
57
    	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick-theme.css')?>">
58
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style.css')?>" />
59
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style-cesa.css')?>" />
60
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive.css')?>" />
61
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css')?>" />
62
 
63
 		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/nprogress/nprogress.css')?>">
64
 
65
        <?php
66
            echo $this->headStyle();
67
        ?>
68
       <?php
69
           echo $this->headLink();
70
           echo $this->headScript();
71
        ?>
72
 
73
   	</head>
74
	<body class="sign-in">
75
		<div class="wrapper">
76
 
77
			<div class="sign-in-page">
78
				<?php echo $this->content ?>
79
				<div class="footy-sec">
80
					<div class="container">
81
    					<?php echo $this->footerHelper() ?>
82
						<p><img src="<?php echo $this->basePath('images/copy-icon.png') ?>" alt="">LABEL_COPYRIGHT_YEAR</p>
83
					</div>
84
				</div><!--footy-sec end-->
85
			</div><!--sign-in-page end-->
86
 
87
 
88
		</div><!--theme-layout end-->
89
		<?php
90
            echo $this->inlineScript();
91
        ?>
92
 
93
 
94
    </body>
95
</html>