You are here

protected function PluginManager::providerExists in Express 8

Determines if the provider of a definition exists.

Return value

bool TRUE if provider exists, FALSE otherwise.

Overrides DefaultPluginManager::providerExists

File

themes/contrib/bootstrap/src/Plugin/PluginManager.php, line 136
Contains \Drupal\bootstrap\Plugin\PluginManager.

Class

PluginManager
Base class for Bootstrap plugin managers.

Namespace

Drupal\bootstrap\Plugin

Code

protected function providerExists($provider) {
  return $this->themeHandler
    ->themeExists($provider);
}