Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
group_clone
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
group_clone
Merge requests
!3
Resolve
#3338187
"Group v3 changes"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Resolve
#3338187
"Group v3 changes"
issue/group_clone-3338187:3338187-group-v3-changes
into
1.0.x
Overview
0
Commits
2
Pipelines
0
Changes
15
Open
Pascal Crott
requested to merge
issue/group_clone-3338187:3338187-group-v3-changes
into
1.0.x
1 year ago
Overview
0
Commits
2
Pipelines
0
Changes
15
Expand
Closes
#3338187
0
0
Merge request reports
Compare
1.0.x
version 2
5582c14d
1 year ago
version 1
5582c14d
1 year ago
1.0.x (HEAD)
and
latest version
latest version
5582c14d
2 commits,
1 year ago
version 2
5582c14d
2 commits,
1 year ago
version 1
5582c14d
2 commits,
1 year ago
15 files
+
291
−
67
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
src/Annotation/GroupRelationshipCloner.php
0 → 100644
+
42
−
0
Options
<?php
declare
(
strict_types
=
1
);
namespace
Drupal\group_clone\Annotation
;
use
Drupal\Component\Annotation\Plugin
;
use
Drupal\Core\Annotation\Translation
;
/**
* Defines a Group relationship cloner annotation object.
*
* Plugin Namespace: Plugin\GroupRelationshipCloner.
*
* @Annotation
*/
final
class
GroupRelationshipCloner
extends
Plugin
{
/**
* The plugin ID.
*
* @var string
*/
public
string
$id
;
/**
* The human-readable name of the action plugin.
*
* @var label
*
* @ingroup plugin_translatable
*/
public
Translation
$label
;
/**
* The group relationship provider base plugin ID this cloner applies to.
*
* @var string
*/
public
string
$content_plugin_id
=
''
;
}
Loading