You are here

function _bootstrap_iconize_text in Express 8

Matches a Bootstrap Glyphicon based on a string value.

// Before.
$icon = _bootstrap_iconize_text($string, $default);

// After.
use Drupal\bootstrap\Bootstrap;
$icon = Bootstrap::glyphiconFromString($string, [
  '#markup' => $default,
]);

Parameters

string $string: The string to match classes against.

string $default: The default icon to return if no match is found.

Return value

string The Bootstrap icon matched against the value of $haystack or $default if no match could be made.

Deprecated

Will be removed in a future release.

See also

\Drupal\bootstrap\Bootstrap::glyphiconFromString()

File

themes/contrib/bootstrap/deprecated.php, line 478
This contains deprecated functions that will be removed in a future release.

Code

function _bootstrap_iconize_text($string, $default = '') {
  Bootstrap::deprecated();
  return Bootstrap::glyphiconFromString($string, [
    '#markup' => $default,
  ]);
}