Hôtel Les Alizés à Cap Skirring en Casamance - Hôtel de luxe & de charme
Inscription terminée !
![]() |
Vous êtes désormais inscrit à notre newsletter ! |
Nous sommes heureux de vous compter parmi nous. | |
Vous recevrez bientôt de nos nouvelles. | |
L'équipe des "Alizés"
|
Chers Clients,
Chers Fournisseurs,
Chers Confrères,
Chers Amis, Bonjour.
Notre hôtel ne sera pas ouvert durant la présente saison touristique d'hiver 2017-2018.
Cette page tarifaire de notre site internet sera mise à jour dès que nous aurons déterminé os nouveaux tarifs et fixé avec précision la date d’ouverture pour la saison touristique suivante 2018-2019.
Nous vous remercions pour votre compréhension et vous souhaitons de tout cœur une merveilleuse saison de soleil d’hiver.
Jean-Paul & Barbara.
Pour continuer à écouter la musique tout en naviguant, cliquez sur
en haut à droite de cette fenêtre. Pour l'interrompre temporairement, cliquez à gauche sur
, et pour la stopper complètement cliquez sur 



Page 2 sur 12
/* * @package Joomla.Site * @subpackage Templates.protostar * * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * This is a file to add template specific chrome to pagination rendering. * * pagination_list_footer * Input variable $list is an array with offsets: * $list[limit] : int * $list[limitstart] : int * $list[total] : int * $list[limitfield] : string * $list[pagescounter] : string * $list[pageslinks] : string * * pagination_list_render * Input variable $list is an array with offsets: * $list[all] * [data] : string * [active] : boolean * $list[start] * [data] : string * [active] : boolean * $list[previous] * [data] : string * [active] : boolean * $list[next] * [data] : string * [active] : boolean * $list[end] * [data] : string * [active] : boolean * $list[pages] * [{PAGE}][data] : string * [{PAGE}][active] : boolean * * pagination_item_active * Input variable $item is an object with fields: * $item->base : integer * $item->link : string * $item->text : string * * pagination_item_inactive * Input variable $item is an object with fields: * $item->base : integer * $item->link : string * $item->text : string * * This gives template designers ultimate control over how pagination is rendered. * * NOTE: If you override pagination_item_active OR pagination_item_inactive you MUST override them both */ /** * Renders the pagination footer * * @param array $list Array containing pagination footer * * @return string HTML markup for the full pagination footer * * @since 3.0 */ function pagination_list_footer($list) { $html = "\n";
$html .= $list['pageslinks'];
$html .= "\n";
$html .= "\n
";
return $html;
}
/**
* Renders the pagination list
*
* @param array $list Array containing pagination information
*
* @return string HTML markup for the full pagination object
*
* @since 3.0
*/
function pagination_list_render($list)
{
// Calculate to display range of pages
$currentPage = 1;
$range = 1;
$step = 5;
foreach ($list['pages'] as $k => $page)
{
if (!$page['active'])
{
$currentPage = $k;
}
}
if ($currentPage >= $step)
{
if ($currentPage % $step == 0)
{
$range = ceil($currentPage / $step) + 1;
}
else
{
$range = ceil($currentPage / $step);
}
}
$html = '- ';
$html .= $list['start']['data'];
$html .= $list['previous']['data'];
foreach ($list['pages'] as $k => $page)
{
if (in_array($k, range($range * $step - ($step + 1), $range * $step)))
{
if (($k % $step == 0 || $k == $range * $step - ($step + 1)) && $k != $currentPage && $k != $range * $step - $step)
{
$page['data'] = preg_replace('#(