public function prependTo(Element $container) { $container->prepend($this); return $this; }
public function __construct($html) { parent::__construct('', ['innerHtml' => $html]); }
private function _processBlock(TextReader $reader, Element $container, $blockType, $langType) { $langType = $blockType == 'SRC' ? $langType : 'plain'; $block = new CodeBlockElement(['lang' => $langType]); $container->append($block); $blockContent = $this->_readBlock($reader, $blockType); $block->setCode($blockContent); }
public function __construct($text) { parent::__construct('', ['text' => $text]); }