16 lines
238 B
PHP
16 lines
238 B
PHP
|
|
<?
|
||
|
|
namespace ui\form\structure;
|
||
|
|
|
||
|
|
class eInputRulesCommand {
|
||
|
|
const IN = 'in';
|
||
|
|
const ON_KEYUP = 'onkeyup';
|
||
|
|
|
||
|
|
|
||
|
|
const OR = 'or';
|
||
|
|
const AND = 'and';
|
||
|
|
const IS = 'is';
|
||
|
|
const ON = 'on';
|
||
|
|
const NOT = 'not';
|
||
|
|
}
|
||
|
|
|