You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- namespace Lc\SovBundle\Definition;
-
- class ActionDefinition {
- public const BATCH_DELETE = 'batchDelete';
- public const DELETE = 'delete';
- public const DETAIL = 'detail';
- public const EDIT = 'edit';
- public const INDEX = 'index';
- public const NEW = 'new';
- public const DUPLICATE = 'duplicate';
- public const SORT = 'sort';
- public const INDEX_CHILDREN = 'index_children';
- public const INDEX_PARENT = 'index_parent';
- public const SAVE_AND_ADD_ANOTHER = 'saveAndAddAnother';
- public const SAVE_AND_CONTINUE = 'saveAndContinue';
- public const SAVE_AND_RETURN = 'saveAndReturn';
- }
|