PHP Classes

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

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/core/templates/frontpage_welcome.tpl.php   Download  
File: web/SSO/modules/core/templates/frontpage_welcome.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: 867 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>';
}
?>

<p><?php echo $this->t('{core:frontpage:intro}'); ?></p>


<ul>
<?php
   
foreach ($this->data['links_welcome'] AS $link) {
        echo
'<li><a href="' . htmlspecialchars($link['href']) . '">' . $this->t($link['text']) . '</a></li>';
    }
?>
</ul>
   
   
   
    <h2><?php echo $this->t('{core:frontpage:about_header}'); ?></h2>
        <p><?php echo $this->t('{core:frontpage:about_text}'); ?></p>



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