Stash::set_value PHP Метод

set_value() публичный Метод

Single tag version of set(), for when you need to use a plugin as a tag parameter (always use with parse="inward")
public set_value ( ) : void
Результат void
    public function set_value()
    {
        /* Sample use
           ---------------------------------------------------------
           {exp:stash:set_value name="title" value="{exp:another:tag}" type="snippet" parse="inward"}
           --------------------------------------------------------- */
        $this->EE->TMPL->tagdata = $this->EE->TMPL->fetch_param('value', FALSE);
        if ($this->EE->TMPL->tagdata !== FALSE) {
            return $this->set();
        }
    }