Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3712 | Autoría | Ultima modificación | Ver Log |

<?php

$notify = '';
$messages = $this->flashMessenger()->getInfoMessages();
foreach($messages as $message)
{
    $notify .= "$.fn.showInfo('$message')";
}

$messages = $this->flashMessenger()->getSuccessMessages();
foreach($messages as $message)
{
    $notify .= "$.fn.showSuccess('$message')";
}

$messages = $this->flashMessenger()->getWarningMessages();
foreach($messages as $message)
{
    $notify .= " $.fn.showWarning('$message')";
}

$messages = $this->flashMessenger()->getErrorMessages();
foreach($messages as $message)
{
    $notify .= " $.fn.showError('$message')";
}

if($notify) {
    $this->inlineScript()->captureStart();
    echo " jQuery( document ).ready(function( $ ) { $notify }); ";
    $this->inlineScript()->captureEnd();
}

$routeCheckSession = $this->url('check-session');

$currentUserPlugin    = $this->currentUserHelper();
$acl = $this->viewModel()->getRoot()->getVariable('acl');
?>

<!DOCTYPE html>
<html>

<head>
                <?php 
        echo $this->headTitle();
        ?>
        <link rel="icon" href="<?php echo $this->networkFavicoHelper(); ?>">
        <?php
  echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
    ->appendHttpEquiv('expires', '0')
    ->appendHttpEquiv('expires', 'Tue, 01 Jan 1980 1:00:00 GMT')
    ->appendHttpEquiv('pragma', 'no-cache')
    ->appendHttpEquiv('Cache-Control', 'no-store')
    ->appendHttpEquiv('Cache-Control', 'max-age=0')
    ->appendHttpEquiv('Cache-Control', 'no-cache')
    ->appendHttpEquiv('charset', 'UTF-8')
    ->appendName('viewport', 'width=device-width, initial-scale=1.0');
  //->appendName('description', '')
  //->appendName('author', '{AUTHOR}')
  //->appendName('keywords', '{KEYWORDS}')
  //->appendName('copyright', '{COPYRIGHT}')
  //->appendName('google-signin-client_id', '{GOOGLE_CLIENT_ID');
  ?>
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/animate.css') ?>">
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/bootstrap.css') ?>">
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome.css') ?>">
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome-font-awesome.min.css') ?>">

  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/fontawesome-free/css/all.min.css') ?>">
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/font-awesome/css/font-awesome.min.css') ?>">
  <!-- 
        
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/font-awesome.min.css') ?>">
        <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/font-awesome/font-awesome.min.css') ?>">
        -->


  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick.css') ?>">
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick-theme.css') ?>">



  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style.css') ?>" />
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive.css') ?>" />
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css') ?>" />
  
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/jquery.mCustomScrollbar.min.css') ?>" />
  
  <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/nprogress/nprogress.css') ?>">
  
  <?php if ($currentUserPlugin->hasIdentity()) : ?>
    
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/icons.css') ?>" />
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/smiley/assets/sprites/emojione.sprites.css') ?>" />
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery-ui.css') ?>" />
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery.ui.plupload.css') ?>" />
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style-cesa.css') ?>" />
    <link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/chat.css') ?>" />
  <?php endif; ?>

  <?php
  echo $this->headStyle();
  echo $this->networkStylesAndColorsHelper();
  echo $this->headLink();
  echo $this->headScript();


  ?>

</head>

<body>
  <div class="wrapper">
   <?php if ($currentUserPlugin->hasIdentity()) : 
        $currentUser = $currentUserPlugin->getUser(); 
    ?>
    <?php echo $this->menuHelper($currentUser->id) ?>
    <?php endif; ?>
    <div id="app">
      <?php echo $this->content ?>
    </div>
  </div>
  <!--theme-layout end-->
  
                  <!-- jQuery -->
        <script type="text/javascript" src="<?php echo $this->basePath('vendors/jquery/jquery.min.js') ?>"></script>
        <!-- Bootstrap 4 -->
                <script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap/js/bootstrap.bundle.min.js') ?>"></script>
        <!--  Aplicacion -->
        <script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap-notify/bootstrap-notify.min.js') ?>"></script>

        <script type="text/javascript" src="<?php echo $this->basePath('js/app.js') ?>"></script>
                

  <?php
  echo $this->inlineScript();
  ?>
<?php if ($currentUserPlugin->hasIdentity()) : ?>
  <script type="text/javascript" src="<?php echo $this->basePath('vendors/smiley/smiley.js') ?>"></script>
  <script type="text/javascript" src="<?php echo $this->basePath('vendors/smiley/js/emojione.min.js') ?>"></script>
<?php endif; ?>

</body>
</html>