public function TooltipEnabled::alterFormElement in Express 8
The alter method to store the code.
Parameters
\Drupal\bootstrap\Utility\Element $form: The Element object that comprises the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
string $form_id: String representing the name of the form itself. Typically this is the name of the function that generated the form.
Overrides SettingBase::alterFormElement
File
- themes/
contrib/ bootstrap/ src/ Plugin/ Setting/ JavaScript/ Tooltips/ TooltipEnabled.php, line 38 - Contains \Drupal\bootstrap\Plugin\Setting\JavaScript\Tooltips\TooltipEnabled.
Class
- TooltipEnabled
- The "tooltip_enabled" theme setting.
Namespace
Drupal\bootstrap\Plugin\Setting\JavaScript\TooltipsCode
public function alterFormElement(Element $form, FormStateInterface $form_state, $form_id = NULL) {
parent::alterFormElement($form, $form_state, $form_id);
$group = $this
->getGroupElement($form, $form_state);
$group
->setProperty('description', t('Inspired by the excellent jQuery.tipsy plugin written by Jason Frame; Tooltips are an updated version, which don\'t rely on images, use CSS3 for animations, and data-attributes for local title storage. See <a href=":url" target="_blank">Bootstrap tooltips</a> for more documentation.', [
':url' => 'http://getbootstrap.com/javascript/#tooltips',
]));
}