You are here

public function ShortcutSet::resetLinkWeights in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/shortcut/src/Entity/ShortcutSet.php \Drupal\shortcut\Entity\ShortcutSet::resetLinkWeights()

Resets the link weights in a shortcut set to match their current order.

This function can be used, for example, when a new shortcut link is added to the set. If the link is added to the end of the array and this function is called, it will force that link to display at the end of the list.

Return value

$this The shortcut set.

Overrides ShortcutSetInterface::resetLinkWeights

File

core/modules/shortcut/src/Entity/ShortcutSet.php, line 112

Class

ShortcutSet
Defines the Shortcut set configuration entity.

Namespace

Drupal\shortcut\Entity

Code

public function resetLinkWeights() {
  $weight = -50;
  foreach ($this
    ->getShortcuts() as $shortcut) {
    $shortcut
      ->setWeight(++$weight);
    $shortcut
      ->save();
  }
  return $this;
}