Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!12068
BC stubs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
BC stubs
issue/drupal-3523163:3523163-10.5.x-add-bc
into
10.5.x
Overview
1
Commits
2
Pipelines
2
Changes
18
Open
nicxvan
requested to merge
issue/drupal-3523163:3523163-10.5.x-add-bc
into
10.5.x
2 weeks ago
Overview
1
Commits
2
Pipelines
2
Changes
17
Expand
Closes
#3523163
0
0
Merge request reports
Compare
10.5.x
version 1
b2349bb6
2 weeks ago
10.5.x (HEAD)
and
latest version
latest version
ff23fbb7
2 commits,
2 weeks ago
version 1
b2349bb6
1 commit,
2 weeks ago
17 files
+
676
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
core/lib/Drupal/Core/Hook/Attribute/Attribute/FormAlter.php
0 → 100644
+
49
−
0
Options
<?php
declare
(
strict_types
=
1
);
namespace
Drupal\Core\Hook\Attribute
;
/**
* Hook attribute for FormAlter.
*
* @see hook_form_alter().
*/
#[\Attribute(\Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
class
FormAlter
extends
Hook
{
/**
* {@inheritdoc}
*/
public
const
PREFIX
=
'form'
;
/**
* {@inheritdoc}
*/
public
const
SUFFIX
=
'alter'
;
/**
* Constructs a FormAlter attribute object.
*
* @param string $form_id
* (optional) The ID of the form that this implementation alters.
* If this is left blank then `form_alter` is the hook that is registered.
* @param string $method
* (optional) The method name. If this attribute is on a method, this
* parameter is not required. If this attribute is on a class and this
* parameter is omitted, the class must have an __invoke() method, which is
* taken as the hook implementation.
* @param string|null $module
* (optional) The module this implementation is for. This allows one module
* to implement a hook on behalf of another module. Defaults to the module
* the implementation is in.
*/
public
function
__construct
(
string
$form_id
=
''
,
public
string
$method
=
''
,
public
?string
$module
=
NULL
,
)
{
parent
::
__construct
(
$form_id
,
$method
,
$module
);
}
}
Loading