function Component::getLibraryName

Same name and namespace in other branches
  1. 11.x core/modules/sdc/src/Plugin/Component.php \Drupal\sdc\Plugin\Component::getLibraryName()
  2. 11.x core/lib/Drupal/Core/Plugin/Component.php \Drupal\Core\Plugin\Component::getLibraryName()

The auto-computed library name.

Return value

string The library name.

File

core/modules/sdc/src/Plugin/Component.php, line 89

Class

Component
Simple value object that contains information about the component.

Namespace

Drupal\sdc\Plugin

Code

public function getLibraryName() : string {
    $library_id = $this->getPluginId();
    $library_id = str_replace(':', '--', $library_id);
    return sprintf('sdc/%s', $library_id);
}

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