You are here

language_selection_page_body.tpl.php in Language Selection Page 6

The template file of the module

Variables used:

  • $data: array of links in each language enabled.

File

themes/language_selection_page_body.tpl.php
View source
<?php

/**
 * @file
 * The template file of the module
 *
 * Variables used:
 *  - $data: array of links in each language enabled.
 *
 */
?>
<div class="language_selection_page_body">
  <div class="language_selection_page_body_inner">
    <p><?php

print t('Hello');
?>,</p>
    <p><?php

print t('You are coming from');
?> <?php

print $data['from_link']['html'];
?></p>
    <p><?php

print t('You should go to');
?>:</p>
    <?php

print $data['links']['html'];
?>
  </div>
</div>