當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。