Blame Extras/Puntal/themes/punbb/__prepend.php

4c79b5
4c79b5
/***********************************************************************
4c79b5

4c79b5
  Copyright (C) 2005-2007 Vincent Garnier and contributors. All rights
4c79b5
  reserved.
4c79b5
  
4c79b5
  This file is part of Puntal 2.
4c79b5

4c79b5
  Puntal 2 is free software; you can redistribute it and/or modify it
4c79b5
  under the terms of the GNU General Public License as published
4c79b5
  by the Free Software Foundation; either version 2 of the License,
4c79b5
  or (at your option) any later version.
4c79b5

4c79b5
  Puntal 2 is distributed in the hope that it will be useful, but
4c79b5
  WITHOUT ANY WARRANTY; without even the implied warranty of
4c79b5
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c79b5
  GNU General Public License for more details.
4c79b5

4c79b5
  You should have received a copy of the GNU General Public License
4c79b5
  along with this program; if not, write to the Free Software
4c79b5
  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
4c79b5
  MA  02111-1307  USA
4c79b5

4c79b5
************************************************************************/
4c79b5

4c79b5
/**
4c79b5
@function startBloc
4c79b5

4c79b5
Affiche le HTML du début d'un bloc.
4c79b5

4c79b5
@param	string	title		Le titre du bloc ('')
4c79b5
@param	string	id			L'identifiant du bloc ('')
4c79b5
*/
4c79b5
function startBloc($title='',$id='')
4c79b5
{
4c79b5
	// un compteur si jamais il y a pas d'identifiant de spécifié	
4c79b5
	static $i;
4c79b5
	
4c79b5
	$id = $id != '' ? $id : $i;
4c79b5
	
4c79b5
	$res = '';
4c79b5
	$res .= "\t".'
'."\n";
4c79b5
	
4c79b5
	if ($title!='')
4c79b5
		$res .= "\t".'

'.$title.'

'."\n";
4c79b5
	
4c79b5
	$res .= 
4c79b5
	"\t\t".'
'."\n".
4c79b5
	"\t\t\t".'
'."\n";
4c79b5
	
4c79b5
	echo $res;
4c79b5
	$i++;
4c79b5
}
4c79b5

4c79b5

4c79b5
/**
4c79b5
@function endBloc
4c79b5

4c79b5
Affiche le HTML de la fin d'un bloc.
4c79b5
*/
4c79b5
function endBloc()
4c79b5
{
4c79b5
	echo 
4c79b5
	"\t\t\t".''."\n".
4c79b5
	"\t\t".''."\n".
4c79b5
	"\t".'';
4c79b5
}
4c79b5

4c79b5

4c79b5
/**
4c79b5
@function headJsIe
4c79b5

4c79b5
Affiche le javascript pour IE.
4c79b5
*/
4c79b5
function headJsIe()
4c79b5
{
4c79b5
	$user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? strtolower($_SERVER['HTTP_USER_AGENT']) : '';
4c79b5
	if (strpos($user_agent, 'msie') !== false && strpos($user_agent, 'windows') !== false && strpos($user_agent, 'opera') === false)
4c79b5
		echo '<script type="text/javascript" src="'.pt_forum_url.'style/imports/minmax.js"></script>';
4c79b5
}
4c79b5

4c79b5
/**
4c79b5
@function startBlocStatic
4c79b5

4c79b5
Affiche le HTML du début d'un bloc.
4c79b5

4c79b5
@param	string	title		Le titre du bloc ('')
4c79b5
@param	string	id			L'identifiant du bloc ('')
4c79b5
*/
4c79b5
function startBlocStatic($title='',$id='')
4c79b5
{
4c79b5
	// un compteur si jamais il y a pas d'identifiant de spécifié	
4c79b5
	static $i;
4c79b5
	
4c79b5
	$id = $id != '' ? $id : $i;
4c79b5
	
4c79b5
	$res = '';
4c79b5
	$res .= "\t".'
'."\n";
4c79b5
	
4c79b5
	if ($title!='')
4c79b5
		$res .= "\t".'

'.$title.'

'."\n";
4c79b5
	
4c79b5
	$res .= 
4c79b5
	"\t\t".'
'."\n".
4c79b5
	"\t\t\t".'
'."\n";
4c79b5
	
4c79b5
	return $res;
4c79b5
	$i++;
4c79b5
}
4c79b5
/**
4c79b5
@function endBlocStatic
4c79b5

4c79b5
Affiche le HTML de la fin d'un bloc.
4c79b5
*/
4c79b5
function endBlocStatic()
4c79b5
{
4c79b5
	return
4c79b5
	"\t\t\t".''."\n".
4c79b5
	"\t\t".''."\n".
4c79b5
	"\t".'';
4c79b5
}
4c79b5

4c79b5
?>