/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
Objects
/
Views
/
Enums
/
Upload File
HOME
<?php /** * Created by PhpStorm. * User: turgutsaricam * Date: 15/03/2020 * Time: 08:23 * * @since 1.11.0 */ namespace WPCCrawler\Objects\Views\Enums; abstract class ViewVariableName { const NAME = 'name'; const TITLE = 'title'; const INFO = 'info'; const PLACEHOLDER = 'placeholder'; const ID = 'id'; const CLAZZ = 'class'; const TYPE = 'type'; const MAXLENGTH = 'maxlength'; const STEP = 'step'; const OPTIONS = 'options'; const URL_SELECTOR = 'urlSelector'; const DEFAULT_ATTR = 'defaultAttr'; const ROWS = 'rows'; const HAS_EXPORT_BUTTON = 'hasExportButton'; const HAS_IMPORT_BUTTON = 'hasImportButton'; }