data = $data; $this->toBeStripped = $toBeStripped; } /** * Wether this section should be stripped on output to smarty php * @return bool */ public function isToBeStripped() { return $this->toBeStripped; } /** * Return buffer content * * @param \Smarty_Internal_Templateparser $parser * * @return string text */ public function to_smarty_php(Smarty_Internal_Templateparser $parser) { return $this->data; } }