Skip to content
Extraits de code Groupes Projets
Valider c22a0017 rédigé par mattab's avatar mattab
Parcourir les fichiers

Allow templates postEvent() calls to also pass parameters. For example this is...

Allow templates postEvent() calls to also pass parameters. For example this is done in the twig template:
```
{{ postEvent("Template.jsGlobalVariables", minDateYear, maxDateYear) }}
```
and you can hook on this event, by doing:
```
    public function addTrackingHostnamesToJs(&$out, $minDateYear, $maxDateYear)
    {
        // printout out the data as a comment for testing
        $out .= "/* " . $minDateYear . " - " . $maxDateYear . " */";
```
parent f2466a58
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -118,8 +118,17 @@ class Twig ...@@ -118,8 +118,17 @@ class Twig
protected function addFunction_postEvent() protected function addFunction_postEvent()
{ {
$postEventFunction = new Twig_SimpleFunction('postEvent', function ($eventName) { $postEventFunction = new Twig_SimpleFunction('postEvent', function ($eventName) {
// get parameters to twig function
$params = func_get_args();
// remove the first value (event name)
array_shift($params);
// make the first value the string that will get output in the template
// plugins can modify this string
$str = ''; $str = '';
Piwik::postEvent($eventName, array(&$str)); $params = array_merge( array( &$str ), $params);
Piwik::postEvent($eventName, $params);
return $str; return $str;
}, array('is_safe' => array('html'))); }, array('is_safe' => array('html')));
$this->twig->addFunction($postEventFunction); $this->twig->addFunction($postEventFunction);
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter