function bootstrap_theme
8.x-3.x bootstrap.theme | bootstrap_theme() |
7.x-3.x template.php | bootstrap_theme(&$existing, $type, $theme, $path) |
Implements hook_theme().
Register theme hook implementations.
The implementations declared by this hook have two purposes: either they specify how a particular render array is to be rendered as HTML (this is usually the case if the theme function is assigned to the render array's #theme property), or they return the HTML that should be returned by an invocation of theme().
See Also
Source ./template.php (line 48)
function bootstrap_theme(&$existing, $type, $theme, $path) {
bootstrap_include($theme, 'includes/registry.inc');
return _bootstrap_theme($existing, $type, $theme, $path);
}