Issue #3440304: Allow altering of entity 'revert'/node 'revert revision' access
2 unresolved threads
Closes #3440304
Merge request reports
Activity
added 237 commits
-
c089960e...a9ebc0c6 - 236 commits from branch
project:11.x
- 67df070b - Merge branch '11.x' into 3440304-non-default-revision-revert
-
c089960e...a9ebc0c6 - 236 commits from branch
added 16 commits
-
9a5ba72d...d1a4f6e0 - 14 commits from branch
project:11.x
- 7e7dff33 - Merge branch '11.x' into 3440304-non-default-revision-revert
- d99b8e4b - New approach: only forbid deleting the default revision and reverting the latest one.
-
9a5ba72d...d1a4f6e0 - 14 commits from branch
added 27 commits
-
d99b8e4b...de85d081 - 25 commits from branch
project:11.x
- 97e176bf - Merge branch '11.x' into 3440304-non-default-revision-revert
- 81a7a9ed - Fix CS and a couple of comments.
-
d99b8e4b...de85d081 - 25 commits from branch
added 1 commit
- ab9d4bfa - Update test coverage for the new expectations.
added 1 commit
- 34cf742c - Enforce checking that the latest revision is not the default one for the...
added 3 commits
-
27774d5b...7272dc96 - 2 commits from branch
project:11.x
- dcac64c1 - Merge branch '11.x' into 3440304-non-default-revision-revert
-
27774d5b...7272dc96 - 2 commits from branch
- Resolved by Andrei Mateescu
- Resolved by Andrei Mateescu
294 288 ]; 295 289 } 296 290 291 // Revision status. 292 if ($revision->isDefaultRevision()) { 293 $rowAttributes['class'][] = 'revision-current'; 294 $row['operations']['data']['status']['#markup'] = ' ' . $this->t('<em>Current revision</em>'); 235 } 236 237 $row[] = [ 238 'data' => [ 239 '#type' => 'operations', 240 '#links' => $links, 241 ], 242 ]; 243 221 244 $rows[] = $row; 245 } 222 $row[] = [ 223 'data' => [ 224 '#type' => 'operations', 225 '#links' => $links, 226 '#suffix' => $is_current_revision ? ' ' . $this->t('<em>Current revision</em>') : NULL,
Please register or sign in to reply