PHP Classes

File: web/SSO/modules/core/templates/frontpage_auth.tpl.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/core/templates/frontpage_auth.tpl.php   Download  
File: web/SSO/modules/core/templates/frontpage_auth.tpl.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 894 bytes
 

Contents

Class file image Download
<?php

$this
->data['header'] = $this->t('{core:frontpage:page_title}');
$this->includeAtTemplateBase('includes/header.php');

?>

<?php
if ($this->data['isadmin']) {
    echo
'<p class="float-r youareadmin">' . $this->t('{core:frontpage:loggedin_as_admin}') . '</p>';
} else {
    echo
'<p class="float-r youareadmin"><a href="' . $this->data['loginurl'] . '">' . $this->t('{core:frontpage:login_as_admin}') . '</a></p>';
}
?>


   
<!-- <h2><?php echo $this->t('{core:frontpage:useful_links_header}'); ?></h2> -->
<ul>
<?php
   
foreach ($this->data['links_auth'] AS $link) {
        echo
'<li><a href="' . htmlspecialchars($link['href']) . '">' . $this->t($link['text']) . '</a>';
        if (isset(
$link['deprecated']) && $link['deprecated']) {
            echo
' <b>' . $this->t('{core:frontpage:deprecated}') . '</b>';
        }
        echo
'</li>';
    }
?>
</ul>

   

       
<?php $this->includeAtTemplateBase('includes/footer.php'); ?>