当前位置: 首页>>代码示例>>PHP>>正文


PHP Utilisateur::template方法代码示例

本文整理汇总了PHP中Utilisateur::template方法的典型用法代码示例。如果您正苦于以下问题:PHP Utilisateur::template方法的具体用法?PHP Utilisateur::template怎么用?PHP Utilisateur::template使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Utilisateur的用法示例。


在下文中一共展示了Utilisateur::template方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: erreur_fatale

Erreur : ' . $e->getMessage()));
    header('500 Internal Server Error');
    header('Content-type: text/html; charset=utf-8');
    $template->pparse('root');
    exit(1);
}
// Identification de l'utilisateur
$utilisateur = new Utilisateur();
// Choix du module
if (isset($_GET['mod'])) {
    $mod = $_GET['mod'];
} else {
    $mod = 'index';
}
// Initialisation du moteur de template
$template = new Template('data/templates/' . $utilisateur->template());
$template->set_filenames(array('root' => 'root.tpl', 'index' => 'index.tpl', 'projet' => 'projet.tpl', 'edit_projet' => 'edit_projet.tpl', 'liste_projets' => 'liste_projets.tpl', 'demande' => 'demande.tpl', 'edit_demande' => 'edit_demande.tpl', 'liste_demandes' => 'liste_demandes.tpl', 'versions' => 'versions.tpl', 'connexion' => 'connexion.tpl', 'deconnexion' => 'deconnexion.tpl', 'perso' => 'perso.tpl', 'admin' => 'admin.tpl', 'edit_user' => 'edit_user.tpl'));
$template->set_rootdir('inc');
$template->set_filenames(array('rss' => 'rss.tpl'));
// Fonction d'erreur utilisant le template
$erreur = false;
function erreur_fatale($msg)
{
    global $template;
    $template->assign_block_vars('MSG_ERREUR', array('DESCR' => $msg));
    header('Content-type: text/html; charset=utf-8');
    $template->pparse('root');
    exit(0);
}
// Variables globales, ie communes à tous les modules
$template->assign_var('TITRE', $conf['titre']);
开发者ID:remram44,项目名称:apps,代码行数:31,代码来源:index.php


注:本文中的Utilisateur::template方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。