‪TYPO3CMS  ‪main
JsConfirmation.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 
27 final class ‪JsConfirmation extends ‪BitSet
28 {
29  public const ‪TYPE_CHANGE = 0b00000001;
30  public const ‪COPY_MOVE_PASTE = 0b00000010;
31  public const ‪DELETE = 0b00000100;
32  public const ‪FE_EDIT = 0b00001000;
33  private const ‪UNUSED_16 = 0b00010000;
34  private const ‪UNUSED_32 = 0b00100000;
35  private const ‪UNUSED_64 = 0b01000000;
36  public const ‪OTHER = 0b10000000;
37  public const ‪ALL = self::TYPE_CHANGE | self::COPY_MOVE_PASTE | self::DELETE | self::FE_EDIT | self::UNUSED_16 | self::UNUSED_32 | self::UNUSED_64 | ‪self::OTHER;
38 }
‪TYPO3\CMS\Core\Authentication
Definition: AbstractAuthenticationService.php:16
‪TYPO3\CMS\Core\Authentication\JsConfirmation\UNUSED_16
‪const UNUSED_16
Definition: JsConfirmation.php:33
‪TYPO3\CMS\Core\Authentication\JsConfirmation
Definition: JsConfirmation.php:28
‪TYPO3\CMS\Core\Authentication\JsConfirmation\OTHER
‪const OTHER
Definition: JsConfirmation.php:36
‪TYPO3\CMS\Core\Type\BitSet
Definition: BitSet.php:66
‪TYPO3\CMS\Core\Authentication\JsConfirmation\TYPE_CHANGE
‪const TYPE_CHANGE
Definition: JsConfirmation.php:29
‪TYPO3\CMS\Core\Authentication\JsConfirmation\UNUSED_32
‪const UNUSED_32
Definition: JsConfirmation.php:34
‪TYPO3\CMS\Core\Authentication\JsConfirmation\UNUSED_64
‪const UNUSED_64
Definition: JsConfirmation.php:35
‪TYPO3\CMS\Core\Authentication\JsConfirmation\DELETE
‪const DELETE
Definition: JsConfirmation.php:31
‪TYPO3\CMS\Core\Authentication\JsConfirmation\ALL
‪const ALL
Definition: JsConfirmation.php:37
‪TYPO3\CMS\Core\Authentication\JsConfirmation\FE_EDIT
‪const FE_EDIT
Definition: JsConfirmation.php:32
‪TYPO3\CMS\Core\Authentication\JsConfirmation\COPY_MOVE_PASTE
‪const COPY_MOVE_PASTE
Definition: JsConfirmation.php:30