Example #1
0
 public function prependTo(Element $container)
 {
     $container->prepend($this);
     return $this;
 }
Example #2
0
 public function __construct($html)
 {
     parent::__construct('', ['innerHtml' => $html]);
 }
Example #3
0
 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);
 }
Example #4
0
 public function __construct($text)
 {
     parent::__construct('', ['text' => $text]);
 }