‪TYPO3CMS  ‪main
Database.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 
24 {
25  public const ‪INSERT = 1;
26  public const ‪UPDATE = 2;
27  public const ‪DELETE = 3;
28  public const ‪MOVE = 4;
29  public const ‪CHECK = 5;
30  public const ‪LOCALIZE = 6;
31  public const ‪VERSIONIZE = 7;
32  public const ‪PUBLISH = 8;
33  public const ‪DISCARD = 9;
34 }
‪TYPO3\CMS\Core\SysLog\Action\Database\CHECK
‪const CHECK
Definition: Database.php:29
‪TYPO3\CMS\Core\SysLog\Action\Database\MOVE
‪const MOVE
Definition: Database.php:28
‪TYPO3\CMS\Core\SysLog\Action
Definition: Cache.php:18
‪TYPO3\CMS\Core\SysLog\Action\Database
Definition: Database.php:24
‪TYPO3\CMS\Core\SysLog\Action\Database\VERSIONIZE
‪const VERSIONIZE
Definition: Database.php:31
‪TYPO3\CMS\Core\SysLog\Action\Database\DISCARD
‪const DISCARD
Definition: Database.php:33
‪TYPO3\CMS\Core\SysLog\Action\Database\DELETE
‪const DELETE
Definition: Database.php:27
‪TYPO3\CMS\Core\SysLog\Action\Database\PUBLISH
‪const PUBLISH
Definition: Database.php:32
‪TYPO3\CMS\Core\SysLog\Action\Database\UPDATE
‪const UPDATE
Definition: Database.php:26
‪TYPO3\CMS\Core\SysLog\Action\Database\LOCALIZE
‪const LOCALIZE
Definition: Database.php:30
‪TYPO3\CMS\Core\SysLog\Action\Database\INSERT
‪const INSERT
Definition: Database.php:25