Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Component.php

function Component::getLibraryName

The auto-computed library name.

Return value

string The library name.

File

core/lib/Drupal/Core/Plugin/Component.php, line 86

Class

Component
Simple value object that contains information about the component.

Namespace

Drupal\Core\Plugin

Code

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

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal