TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?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\Attribute;
|
||||
|
||||
/**
|
||||
* Defines a method that is allowed to be used as a user function.
|
||||
*/
|
||||
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::TARGET_FUNCTION)]
|
||||
final readonly class AsAllowedCallable
|
||||
{
|
||||
public const string TAG_NAME = 'security.allowed-callable';
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
<?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\Attribute;
|
||||
|
||||
/**
|
||||
* Service tag to autoconfigure event listeners.
|
||||
*/
|
||||
#[\Attribute(\Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
|
||||
class AsEventListener
|
||||
{
|
||||
public const TAG_NAME = 'event.listener';
|
||||
|
||||
public function __construct(
|
||||
public ?string $identifier = null,
|
||||
public ?string $event = null,
|
||||
public ?string $method = null,
|
||||
public ?string $before = null,
|
||||
public ?string $after = null,
|
||||
) {}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
<?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\Attribute;
|
||||
|
||||
/**
|
||||
* Service tag to autoconfigure file renderers for the RendererRegistry.
|
||||
*/
|
||||
#[\Attribute(\Attribute::TARGET_CLASS)]
|
||||
class AsFileRenderer
|
||||
{
|
||||
public const TAG_NAME = 'fal.file_renderer';
|
||||
|
||||
public function __construct(
|
||||
/**
|
||||
* The priority of the renderer. This way it is possible to
|
||||
* define/overrule a renderer for a specific file type/context,
|
||||
* for example a video renderer for a certain storage/driver type.
|
||||
*
|
||||
* Renderers with a higher priority are asked first whether they
|
||||
* can render a given file. All file renderers shipped with
|
||||
* TYPO3 Core use the default priority of 0.
|
||||
*/
|
||||
public int $priority = 0,
|
||||
) {}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
<?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\Attribute;
|
||||
|
||||
/**
|
||||
* Service tag to autoconfigure module access gates.
|
||||
*/
|
||||
#[\Attribute(\Attribute::TARGET_CLASS)]
|
||||
final readonly class AsModuleAccessGate
|
||||
{
|
||||
public const string TAG_NAME = 'backend.module_access_gate';
|
||||
|
||||
/**
|
||||
* @param non-empty-string $identifier
|
||||
* @param list<non-empty-string> $before
|
||||
* @param list<non-empty-string> $after
|
||||
*/
|
||||
public function __construct(
|
||||
public string $identifier,
|
||||
public array $before = [],
|
||||
public array $after = [],
|
||||
) {}
|
||||
}
|
||||
@@ -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\Attribute;
|
||||
|
||||
/**
|
||||
* Service tag to autoconfigure non-schedulable commands.
|
||||
* This must be used on top of the #[AsCommand] attribute.
|
||||
*/
|
||||
#[\Attribute(\Attribute::TARGET_CLASS)]
|
||||
class AsNonSchedulableCommand
|
||||
{
|
||||
public function __construct(
|
||||
) {}
|
||||
}
|
||||
@@ -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\Attribute;
|
||||
|
||||
/**
|
||||
* Service tag to autoconfigure upgrade wizards
|
||||
*/
|
||||
#[\Attribute(\Attribute::TARGET_CLASS)]
|
||||
class UpgradeWizard
|
||||
{
|
||||
public const TAG_NAME = 'install.upgradewizard';
|
||||
|
||||
public function __construct(
|
||||
public string $identifier
|
||||
) {}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
<?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\Attribute;
|
||||
|
||||
/**
|
||||
* Service tag to mark a message as a webhook-compatible message
|
||||
*/
|
||||
#[\Attribute(\Attribute::TARGET_CLASS)]
|
||||
class WebhookMessage
|
||||
{
|
||||
public const TAG_NAME = 'core.webhook_message';
|
||||
|
||||
public function __construct(
|
||||
public string $identifier,
|
||||
public string $description,
|
||||
public ?string $method = null,
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user