 |
Smarty
The discussions here are for Smarty, a template engine for the PHP programming language. Dedicated server web hosting provided by Guru-host.eu. |
| View previous topic :: View next topic |
| Author |
Message |
zorx Smarty Rookie
Joined: 15 Aug 2011 Posts: 6
|
Posted: Mon Aug 15, 2011 3:05 pm Post subject: Activer une fonction de plugin directement en PHP |
|
|
Bonjour,
Je voudrai savoir si y a moyen d'activer un plugin directement via PHP exemple :
<?php
$smarty->registerPlugin("function","afficher", "afficher");
function afficher ($params, $smarty)
{
$msg='';
if (isset($params['msg']))
$msg = $params['msg'];
return $msg;
}
echo "{afficher msg='salutation'}";
?>
est-ce qu'il y a moyen que ça m'affiche le message "salutation" au lieu de "{afficher msg='salutation'}" ? avec smarty (sans passer par un template)
Cordialement |
|
| Back to top |
|
zorx Smarty Rookie
Joined: 15 Aug 2011 Posts: 6
|
Posted: Mon Aug 15, 2011 3:26 pm Post subject: |
|
|
c'est bon j'ai trouvé, pour ceux qui sont intéressés :
| Code: | echo $smarty->fetch("string:{afficher msg='salutation'}");
|
ps: c'est pour smarty 3 |
|
| Back to top |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|