Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Template/Compiler/Tag/PasswordBoxRow.php
<?php

namespace XF\Template\Compiler\Tag;

use
XF\Template\Compiler;
use
XF\Template\Compiler\Syntax\Tag;

class
PasswordBoxRow extends AbstractFormElement
{
    public function
compile(Tag $tag, Compiler $compiler, array $context, $inlineExpected)
    {
        return
$this->compileTextInput('PasswordBox', $tag->name == 'passwordboxrow', $tag, $compiler, $context);
    }
}