TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Core\SysLog\Action;
|
||||
|
||||
/**
|
||||
* A class defining possible Cache actions
|
||||
*/
|
||||
class Cache
|
||||
{
|
||||
public const CLEAR = 1;
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Core\SysLog\Action;
|
||||
|
||||
/**
|
||||
* A class defining possible Database actions
|
||||
*/
|
||||
class Database
|
||||
{
|
||||
public const INSERT = 1;
|
||||
public const UPDATE = 2;
|
||||
public const DELETE = 3;
|
||||
public const MOVE = 4;
|
||||
public const CHECK = 5;
|
||||
public const LOCALIZE = 6;
|
||||
public const VERSIONIZE = 7;
|
||||
public const PUBLISH = 8;
|
||||
public const DISCARD = 9;
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Core\SysLog\Action;
|
||||
|
||||
/**
|
||||
* A class defining possible File actions
|
||||
*/
|
||||
class File
|
||||
{
|
||||
public const UPLOAD = 1;
|
||||
public const COPY = 2;
|
||||
public const MOVE = 3;
|
||||
public const DELETE = 4;
|
||||
public const RENAME = 5;
|
||||
public const NEW_FOLDER = 6;
|
||||
|
||||
/*
|
||||
* The constant is not in use but the xlf file tells that 7 represents unzip
|
||||
* @see https://github.com/typo3/typo3/blob/master/typo3/sysext/belog/Resources/Private/Language/locallang.xlf#L267
|
||||
*/
|
||||
public const UNZIP = 7;
|
||||
public const NEW_FILE = 8;
|
||||
public const EDIT = 9;
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Core\SysLog\Action;
|
||||
|
||||
/**
|
||||
* A class defining possible Login actions
|
||||
*/
|
||||
class Login
|
||||
{
|
||||
public const LOGIN = 1;
|
||||
public const LOGOUT = 2;
|
||||
public const ATTEMPT = 3;
|
||||
public const SEND_FAILURE_WARNING_EMAIL = 4;
|
||||
public const PASSWORD_RESET_REQUEST = 5;
|
||||
public const PASSWORD_RESET_ACCOMPLISHED = 6;
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Core\SysLog\Action;
|
||||
|
||||
/**
|
||||
* A class defining possible Setting actions
|
||||
*/
|
||||
class Setting
|
||||
{
|
||||
public const CHANGE = 1;
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* This file is part of the TYPO3 CMS project.
|
||||
*
|
||||
* It is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License, either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*
|
||||
* The TYPO3 project - inspiring people to share!
|
||||
*/
|
||||
|
||||
namespace TYPO3\CMS\Core\SysLog\Action;
|
||||
|
||||
/**
|
||||
* A class defining possible Site actions
|
||||
*/
|
||||
class Site
|
||||
{
|
||||
public const CREATE = 1;
|
||||
public const UPDATE = 2;
|
||||
public const RENAME = 3;
|
||||
public const DELETE = 4;
|
||||
}
|
||||
Reference in New Issue
Block a user