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
!6329
Start deleting ckeditor4
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Start deleting ckeditor4
issue/drupal-3239012:3239012-late-2023-deprecate
into
11.x
Overview
4
Commits
20
Pipelines
18
Changes
17
Closed
quietone
requested to merge
issue/drupal-3239012:3239012-late-2023-deprecate
into
11.x
1 year ago
Overview
4
Commits
20
Pipelines
18
Changes
17
Expand
Closes
#3239012
0
0
Merge request reports
Compare
11.x
version 18
0831f2f8
1 year ago
version 17
11a2e311
1 year ago
version 16
a264759c
1 year ago
version 15
00ca6d7a
1 year ago
version 14
889042f3
1 year ago
version 13
85b87d0a
1 year ago
version 12
0f885014
1 year ago
version 11
e26e9afd
1 year ago
version 10
0c7f49eb
1 year ago
version 9
8710b48f
1 year ago
version 8
65789053
1 year ago
version 7
d32e4409
1 year ago
version 6
0ef38cab
1 year ago
version 5
2c47ba7d
1 year ago
version 4
99a68003
1 year ago
version 3
a5ff8f53
1 year ago
version 2
35ff3932
1 year ago
version 1
1e69cfb8
1 year ago
11.x (base)
and
latest version
latest version
0831f2f8
20 commits,
5 months ago
version 18
0831f2f8
20 commits,
1 year ago
version 17
11a2e311
21 commits,
1 year ago
version 16
a264759c
19 commits,
1 year ago
version 15
00ca6d7a
18 commits,
1 year ago
version 14
889042f3
17 commits,
1 year ago
version 13
85b87d0a
15 commits,
1 year ago
version 12
0f885014
14 commits,
1 year ago
version 11
e26e9afd
12 commits,
1 year ago
version 10
0c7f49eb
11 commits,
1 year ago
version 9
8710b48f
10 commits,
1 year ago
version 8
65789053
9 commits,
1 year ago
version 7
d32e4409
8 commits,
1 year ago
version 6
0ef38cab
7 commits,
1 year ago
version 5
2c47ba7d
6 commits,
1 year ago
version 4
99a68003
5 commits,
1 year ago
version 3
a5ff8f53
4 commits,
1 year ago
version 2
35ff3932
2 commits,
1 year ago
version 1
1e69cfb8
1 commit,
1 year ago
17 files
+
367
−
1731
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/modules/ckeditor5/src/Annotation/CKEditor4To5Upgrade.php deleted
100644 → 0
+
0
−
50
Options
<?php
declare
(
strict_types
=
1
);
namespace
Drupal\ckeditor5\Annotation
;
use
Drupal\Component\Annotation\Plugin
;
/**
* Defines a CKEditor4To5Upgrade annotation object.
*
* Plugin Namespace: Plugin\CKEditor4To5Upgrade.
*
* @see \Drupal\ckeditor5\Plugin\CKEditor5PluginInterface
* @see \Drupal\ckeditor5\Plugin\CKEditor5PluginManagerInterface
* @see plugin_api
*
* @Annotation
*/
class
CKEditor4To5Upgrade
extends
Plugin
{
/**
* The plugin ID.
*
* @var string
*/
public
$id
;
/**
* The CKEditor 4 buttons for which an upgrade path is provided.
*
* @var string[]
*/
public
$cke4_buttons
;
/**
* The CKEditor 4 plugins for whose settings an upgrade path is provided.
*
* @var string[]
*/
public
$cke4_plugin_settings
;
/**
* The CKEditor 5 plugins with configurable subset with upgrade path provided.
*
* @var string[]
*/
public
$cke5_plugin_elements_subset_configuration
;
}
Loading