Source of file Common.php
Size: 3,327 Bytes - Last Modified: 2020-10-24T02:46:31+00:00
/home/travis/build/NextDom/nextdom-core/src/Enums/Common.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | <?php /* This file is part of NextDom. * * NextDom is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NextDom is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NextDom. If not, see <http://www.gnu.org/licenses/>. */ namespace NextDom\Enums; /** * Common string * @package NextDom\Enums */ class Common extends Enum { const ACTION = 'action'; const ACTIVE = 'active'; const ALL = 'all'; const ALWAYS = 'always'; const AUTO = 'auto'; const BATTERY = 'battery'; const CATEGORY = 'category'; const CHANGED = 'changed'; const CLASS_CODE = 'class'; const CLASS_NAME = 'className'; const CMD_ID = 'cmd_id'; const CMD_PARAMETERS = 'cmd_parameters'; const COLOR = 'color'; const COLUMN = 'column'; const CONFIGURATION = 'configuration'; const CORE = 'core'; const CUSTOM = 'custom'; const DASH_VALUE = 'dashvalue'; const DATE = 'date'; const DATETIME = 'datetime'; const DEFAULT = 'default'; const DETAIL = 'detail'; const DISPLAY = 'display'; const DISPLAY_VALUE = 'display_value'; const END = 'end'; const EQLOGIC_ID = 'eqLogic_id'; const EVENT = 'event'; const FUNCTION = 'function'; const GENERIC_TYPE = 'generic_type'; const GLOBAL = 'global'; const GROUP = 'group'; const HUMAN_NAME = 'humanName'; const ICON = 'icon'; const ID = 'id'; const INFO = 'info'; const INVERSE_BINARY = 'invertBinary'; const IS_HISTORIZED = 'isHistorized'; const KEY = 'key'; const KEYS = 'keys'; const HTML = 'html'; const LENGTH_FACTOR = 'lengthfactor'; const LEVEL = 'level'; const LINK = 'link'; const LOCATION = 'location'; const LOGICAL_ID = 'logicalId'; const MARKET = 'market'; const NAME = 'name'; const NODE = 'node'; const NONE = 'none'; const OBJECT_ID = 'object_id'; const OBJECT_HTML = 'objectHtml'; const OPTION = 'option'; const OPTIONS = 'options'; const ORDER = 'order'; const PHP_CLASS = 'phpClass'; const PLUGIN = 'plugin'; const PROFILE = 'profile'; const QUERY = 'query'; const REPLACE = 'replace'; const REPLY_CMD = 'reply_cmd'; const RESULT = 'result'; const SCENARIO_ID = 'scenario_id'; const SCHEDULE = 'schedule'; const START = 'start'; const STATE = 'state'; const STATUS = 'status'; const SUB_PROCESS = 'subprocess'; const SUBTYPE = 'subtype'; const SUMMARY = 'summary'; const TAG = 'tag'; const TEMPLATE = 'template'; const TEST = 'test'; const TIMELINE_ONLY = 'timelineOnly'; const TIMEOUT = 'timeout'; const TRIGGER = 'trigger'; const TYPE = 'type'; const UNITE = 'unite'; const UID = 'uid'; const USED_BY = 'usedBy'; const VALUE = 'value'; const VERSION = 'version'; const VIEW_DATA = 'viewData'; const WIDGET = 'widget'; } |