function ShortcutTestBase::generateShortcutSet

Creates a generic shortcut set.

File

core/modules/shortcut/src/Tests/ShortcutTestBase.php, line 103

Class

ShortcutTestBase
Defines base class for shortcut test cases.

Namespace

Drupal\shortcut\Tests

Code

public function generateShortcutSet($label = '', $id = NULL) {
  $set = ShortcutSet::create([
    'id' => isset($id) ? $id : strtolower($this->randomMachineName()),
    'label' => empty($label) ? $this->randomString() : $label,
  ]);
  $set->save();
  return $set;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.