<?php
namespace XF\Template\Compiler\Tag;
use XF\Template\Compiler\Syntax\Tag;
use XF\Template\Compiler;
class EditorRow extends AbstractFormElement
{
public function compile(Tag $tag, Compiler $compiler, array $context, $inlineExpected)
{
return $this->compileTextInput('Editor', $tag->name == 'editorrow', $tag, $compiler, $context);
}
}