public function StaticLayout::getStylesheetFiles

Returns the list of CSS files associated with this layout.

2 calls to StaticLayout::getStylesheetFiles()
StaticLayout::getAdminStylesheetFiles in drupal/core/modules/layout/lib/Drupal/layout/Plugin/layout/layout/StaticLayout.php
Returns the list of administrative CSS files associated with this layout.
StaticLayout::renderLayout in drupal/core/modules/layout/lib/Drupal/layout/Plugin/layout/layout/StaticLayout.php
Implements Drupal\layout\Plugin\LayoutInterface::renderLayout().

File

drupal/core/modules/layout/lib/Drupal/layout/Plugin/layout/layout/StaticLayout.php, line 48
Definition of Drupal\layout\Plugin\layout\layout\StaticLayout.

Class

StaticLayout
Plugin annotation @Plugin( id = "static_layout", derivative = "Drupal\layout\Plugin\Derivative\Layout" )

Namespace

Drupal\layout\Plugin\layout\layout

Code

public function getStylesheetFiles() {
  $definition = $this
    ->getDefinition();
  return isset($definition['stylesheets']) ? $definition['stylesheets'] : array();
}