90 lines
2.9 KiB
PHP
90 lines
2.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* List of available procedural hook and alter APIs for use in your sub-theme.
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup plugins_alter
|
|
*
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* Allows sub-themes to alter the array used for colorizing text.
|
|
*
|
|
* @param array $texts
|
|
* An associative array containing the text and classes to be matched, passed
|
|
* by reference.
|
|
*
|
|
* @see \Drupal\bootstrap\Bootstrap::cssClassFromString()
|
|
*/
|
|
function hook_bootstrap_colorize_text_alter(array &$texts) {
|
|
// This matches the exact string: "My Unique Button Text".
|
|
// Note: the t() function in D8 returns a TranslatableMarkup object.
|
|
// It must be rendered to a string before it can be added as an array key.
|
|
$texts['matches'][t('My Unique Button Text')->render()] = 'primary';
|
|
|
|
// This would also match the string above, however the class returned would
|
|
// also be the one above; "matches" takes precedence over "contains".
|
|
$texts['contains'][t('Unique')->render()] = 'notice';
|
|
|
|
// Remove matching for strings that contain "apply":
|
|
unset($texts['contains'][t('Apply')->render()]);
|
|
|
|
// Change the class that matches "Rebuild" (originally "warning"):
|
|
$texts['contains'][t('Rebuild')->render()] = 'success';
|
|
}
|
|
|
|
/**
|
|
* Allows sub-themes to alter the array used for associating an icon with text.
|
|
*
|
|
* @param array $texts
|
|
* An associative array containing the text and icons to be matched, passed
|
|
* by reference.
|
|
*
|
|
* @see \Drupal\bootstrap\Bootstrap::glyphiconFromString()
|
|
*/
|
|
function hook_bootstrap_iconize_text_alter(array &$texts) {
|
|
// This matches the exact string: "My Unique Button Text".
|
|
// Note: the t() function in D8 returns a TranslatableMarkup object.
|
|
// It must be rendered to a string before it can be added as an array key.
|
|
$texts['matches'][t('My Unique Button Text')->render()] = 'heart';
|
|
|
|
// This would also match the string above, however the class returned would
|
|
// also be the one above; "matches" takes precedence over "contains".
|
|
$texts['contains'][t('Unique')->render()] = 'bullhorn';
|
|
|
|
// Remove matching for strings that contain "filter":
|
|
unset($texts['contains'][t('Filter')->render()]);
|
|
|
|
// Change the icon that matches "Upload" (originally "upload"):
|
|
$texts['contains'][t('Upload')->render()] = 'ok';
|
|
}
|
|
|
|
/**
|
|
* Allows sub-themes to alter element types that should be rendered as inline.
|
|
*
|
|
* @param array $types
|
|
* The list of element types that should be rendered as inline.
|
|
*
|
|
* @deprecated in bootstrap:8.x-3.21 and is removed from bootstrap:8.x-4.0.
|
|
* This method will be removed when process managers can be sub-classed.
|
|
*
|
|
* @see https://www.drupal.org/project/bootstrap/issues/2868538
|
|
*/
|
|
function hook_bootstrap_inline_element_types_alter(array &$types) {
|
|
// Remove certain types from the list.
|
|
foreach (['number', 'tel'] as $type) {
|
|
$index = array_search($type, $types);
|
|
if ($index !== FALSE) {
|
|
unset($types[$index]);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @} End of "addtogroup".
|
|
*/
|