‪TYPO3CMS  10.4
Action.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
21 
25 final class ‪Action extends ‪Enumeration
26 {
28  const ‪ADD = 'add';
29  const ‪DELETE = 'delete';
30  const ‪EDIT = 'edit';
31  const ‪LIST = 'list';
32  const ‪SAVE = 'save';
33  const ‪SAVE_CLOSE = 'saveclose';
34  const ‪SAVE_NEW = 'savenew';
35  const ‪SET_NEXT_EXECUTION_TIME = 'setNextExecutionTime';
36  const ‪STOP = 'stop';
37  const ‪TOGGLE_HIDDEN = 'toggleHidden';
38 }
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\SAVE
‪const SAVE
Definition: Action.php:32
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\__default
‪const __default
Definition: Action.php:27
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\ADD
‪const ADD
Definition: Action.php:28
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\LIST
‪const LIST
Definition: Action.php:31
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\SET_NEXT_EXECUTION_TIME
‪const SET_NEXT_EXECUTION_TIME
Definition: Action.php:35
‪TYPO3\CMS\Scheduler\Task\Enumeration
Definition: Action.php:18
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\TOGGLE_HIDDEN
‪const TOGGLE_HIDDEN
Definition: Action.php:37
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\STOP
‪const STOP
Definition: Action.php:36
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\EDIT
‪const EDIT
Definition: Action.php:30
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\DELETE
‪const DELETE
Definition: Action.php:29
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action
Definition: Action.php:26
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\SAVE_CLOSE
‪const SAVE_CLOSE
Definition: Action.php:33
‪TYPO3\CMS\Core\Type\Enumeration
Definition: Enumeration.php:29
‪TYPO3\CMS\Scheduler\Task\Enumeration\Action\SAVE_NEW
‪const SAVE_NEW
Definition: Action.php:34