|
|
f2e824 |
|
|
|
f2e824 |
/***********************************************************************
|
|
|
f2e824 |
|
|
|
f2e824 |
Copyright (C) 2005-2007 Vincent Garnier and contributors. All rights
|
|
|
f2e824 |
reserved.
|
|
|
f2e824 |
|
|
|
f2e824 |
This file is part of Puntal 2.
|
|
|
f2e824 |
|
|
|
f2e824 |
Puntal 2 is free software; you can redistribute it and/or modify it
|
|
|
f2e824 |
under the terms of the GNU General Public License as published
|
|
|
f2e824 |
by the Free Software Foundation; either version 2 of the License,
|
|
|
f2e824 |
or (at your option) any later version.
|
|
|
f2e824 |
|
|
|
f2e824 |
Puntal 2 is distributed in the hope that it will be useful, but
|
|
|
f2e824 |
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
f2e824 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
f2e824 |
GNU General Public License for more details.
|
|
|
f2e824 |
|
|
|
f2e824 |
You should have received a copy of the GNU General Public License
|
|
|
f2e824 |
along with this program; if not, write to the Free Software
|
|
|
f2e824 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
f2e824 |
MA 02111-1307 USA
|
|
|
f2e824 |
|
|
|
f2e824 |
************************************************************************/?>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
lang="" dir="">
|
|
|
f2e824 |
<head>
|
|
|
f2e824 |
<meta http-equiv="Content-Type" content="text/html; charset=<?php tpl::lang('lang_encoding') ?>" />
|
|
|
f2e824 |
<title></title>
|
|
|
f2e824 |
<link rel="stylesheet" type="text/css" href="<?php tpl::url('forums') ?>style/<?php tpl::user('style') ?>.css" />
|
|
|
f2e824 |
<link rel="stylesheet" type="text/css" href="<?php tpl::url('template') ?>style.css" />
|
|
|
f2e824 |
<link rel="stylesheet" type="text/css" href="<?php tpl::urlFile('lexicon/lexicon.css') ?>" />
|
|
|
f2e824 |
<script type="text/javascript" src="<?php tpl::url('themes') ?>common/js/common.js"></script>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
</head>
|
|
|
f2e824 |
<body>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
tpl::top() ?>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
lexique::totalWords('%s') ?>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
lexique::totalToValidateWords('%s') ?>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
lexique::addLink(
|
|
|
f2e824 |
' - %s',
|
|
|
f2e824 |
' - %s' ) ?>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
lexique::validateLink(
|
|
|
f2e824 |
' - %s',
|
|
|
f2e824 |
' - %s' ) ?>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
lexique::allLink(
|
|
|
f2e824 |
' - %s',
|
|
|
f2e824 |
' - %s' ) ?>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
lexique::letters(
|
|
|
f2e824 |
'%s',
|
|
|
f2e824 |
'%s',
|
|
|
f2e824 |
' - ') ?>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
if ($lexique_mode == 'ajouter') :
|
|
|
f2e824 |
require dirname(__FILE__).'/form_add.php';
|
|
|
f2e824 |
|
|
|
f2e824 |
/* Formulaire de modification d'un mot */
|
|
|
f2e824 |
elseif ($lexique_mode == 'modifier') :
|
|
|
f2e824 |
require dirname(__FILE__).'/form_edit.php';
|
|
|
f2e824 |
|
|
|
f2e824 |
/* Liste complète */
|
|
|
f2e824 |
elseif ($lexique_mode == 'tous') :
|
|
|
f2e824 |
require dirname(__FILE__).'/list_all.php';
|
|
|
f2e824 |
|
|
|
f2e824 |
/* Liste des mots à valider */
|
|
|
f2e824 |
elseif ($lexique_mode == 'valider') :
|
|
|
f2e824 |
require dirname(__FILE__).'/list_validate.php';
|
|
|
f2e824 |
|
|
|
f2e824 |
/* Liste des mots d'une lettre donnée */
|
|
|
f2e824 |
elseif ($lexique_mode == 'lettre') :
|
|
|
f2e824 |
require dirname(__FILE__).'/list_letter.php';
|
|
|
f2e824 |
|
|
|
f2e824 |
endif; ?>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
tpl::bottom() ?>
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
|
|
|
f2e824 |
</body>
|
|
|
f2e824 |
</html>
|