Update to Drupal 8.1.2. For more information, see https://www.drupal.org/project/drupal/releases/8.1.2
This commit is contained in:
parent
9eae24d844
commit
28556d630e
1322 changed files with 6699 additions and 2064 deletions
|
@ -59,6 +59,4 @@ interface LocalActionInterface {
|
|||
*/
|
||||
public function getTitle();
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -218,7 +218,7 @@ class LocalTaskManager extends DefaultPluginManager implements LocalTaskManagerI
|
|||
$definitions[$plugin_id]['base_route'] = $definitions[$task_info['parent_id']]['base_route'];
|
||||
}
|
||||
if ($route_name == $task_info['route_name']) {
|
||||
if(!empty($task_info['base_route'])) {
|
||||
if (!empty($task_info['base_route'])) {
|
||||
$base_routes[$task_info['base_route']] = $task_info['base_route'];
|
||||
}
|
||||
// Tabs that link to the current route are viable parents
|
||||
|
|
|
@ -1097,7 +1097,6 @@ class MenuTreeStorage implements MenuTreeStorageInterface {
|
|||
* is an associative array of information about the menu link, containing
|
||||
* the fields from the $this->table. This array must be ordered
|
||||
* depth-first. MenuTreeStorage::loadTreeData() includes a sample query.
|
||||
*
|
||||
* @param array $parents
|
||||
* An array of the menu link ID values that are in the path from the current
|
||||
* page to the root of the menu tree.
|
||||
|
|
|
@ -32,7 +32,6 @@ interface MenuTreeStorageInterface {
|
|||
*
|
||||
* @param array $definitions
|
||||
* The new menu link definitions.
|
||||
*
|
||||
*/
|
||||
public function rebuild(array $definitions);
|
||||
|
||||
|
|
Reference in a new issue