public function BootstrapButtonGroupShortcode::process in Bootstrap 3 shortcodes 8
Performs the shortcode processing.
Parameters
array $attributes: Array of attributes.
string $text: The text string to be processed.
string $langcode: The language code of the text to be filtered. Defaults to LANGCODE_NOT_SPECIFIED.
Return value
string The processed text.
Overrides ShortcodeInterface::process
File
- src/
Plugin/ Shortcode/ BootstrapButtonGroupShortcode.php, line 27 - Adds shortcodes for all Bootstrap elements.
Class
- BootstrapButtonGroupShortcode
- @Shortcode( id = "bs_button_group", token = "button_group", title = @Translation("Button Group"), description = @Translation("Bootstrap 3 shortcode"), weight = 50 )
Namespace
Drupal\bs_shortcodes\Plugin\ShortcodeCode
public function process(array $attributes, $content, $langcode = Language::LANGCODE_NOT_SPECIFIED) {
$attributes = $this
->getAttributes(array(
'size' => '',
'vertical' => '',
'justified' => '',
'dropup' => '',
'xclass' => '',
'data' => '',
), $attributes);
$class = 'btn-group';
$class .= $attributes['size'] ? ' btn-group-' . $attributes['size'] : '';
$class .= $attributes['vertical'] != '' ? ' btn-group-vertical' : '';
$class .= $attributes['justified'] != '' ? ' btn-group-justified' : '';
$class .= $attributes['dropup'] != '' ? ' dropup' : '';
$class .= $attributes['xclass'] ? ' ' . $attributes['xclass'] : '';
$data_props = _bs_shortcodes_parse_data_attributes($attributes['data']);
return sprintf('<div class="%s"%s>%s</div>', Html::escape($class), $data_props ? ' ' . $data_props : '', $content);
}