public function Theme::isBootstrap in Express 8
Indicates whether the theme is bootstrap based.
Return value
bool TRUE or FALSE
8 calls to Theme::isBootstrap()
- Theme::drupalSettings in themes/
contrib/ bootstrap/ src/ Theme.php - Retrieves the theme's settings array appropriate for drupalSettings.
- Theme::getPendingUpdates in themes/
contrib/ bootstrap/ src/ Theme.php - Retrieves pending updates for the theme.
- Theme::getProvider in themes/
contrib/ bootstrap/ src/ Theme.php - Retrieves the CDN provider.
- Theme::getProviders in themes/
contrib/ bootstrap/ src/ Theme.php - Retrieves all CDN providers.
- Theme::getSettingPlugin in themes/
contrib/ bootstrap/ src/ Theme.php - Retrieves a theme's setting plugin instance(s).
File
- themes/
contrib/ bootstrap/ src/ Theme.php, line 689 - Contains \Drupal\bootstrap.
Class
- Theme
- Defines a theme object.
Namespace
Drupal\bootstrapCode
public function isBootstrap() {
return $this->bootstrap;
}