/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
Objects
/
Views
/
Upload File
HOME
<?php /** * Created by PhpStorm. * User: turgutsaricam * Date: 15/03/2020 * Time: 08:08 * * @since 1.11.0 */ namespace WPCCrawler\Objects\Views; use WPCCrawler\Objects\Views\Base\AbstractViewWithLabel; use WPCCrawler\Objects\Views\Enums\ViewVariableName; /** * Creates an input with a label, whose "maxlength" attribute can be defined. * * @since 1.11.0 */ class MaxLengthInputWithLabel extends AbstractViewWithLabel { public function getKey(): string { return 'form-items.combined.max-length-input-with-label'; } protected function createViewVariableNames(): ?array { return [ViewVariableName::TYPE, ViewVariableName::MAXLENGTH]; } }