Issue #2188097 by rcaracaus, olli: 'Comment forms' links to admin/content/comment.
parent
04c9a71dbe
commit
b9f1a8e27c
|
@ -203,12 +203,18 @@ function comment_menu() {
|
|||
* Implements hook_menu_link_defaults().
|
||||
*/
|
||||
function comment_menu_link_defaults() {
|
||||
$links['comment.admin.content'] = array(
|
||||
'link_title' => 'Comment forms',
|
||||
$links['comment.admin.content.comment'] = array(
|
||||
'link_title' => 'Comments',
|
||||
'route_name' => 'comment.admin',
|
||||
'parent' => 'system.admin.structure',
|
||||
'parent' => \Drupal::moduleHandler()->moduleExists('node') ? 'node.admin.content' : 'system.admin',
|
||||
'description' => 'List and edit site comments and the comment approval queue.',
|
||||
);
|
||||
$links['comment.admin.structure.comments'] = array(
|
||||
'link_title' => 'Comment forms',
|
||||
'route_name' => 'comment.bundle_list',
|
||||
'parent' => 'system.admin.structure',
|
||||
'description' => 'Manage fields and displays settings for comment forms.',
|
||||
);
|
||||
|
||||
return $links;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue