Change record status: 
Project: 
Introduced in branch: 
7.x-3.x
Introduced in version: 
7.x-3.1
Description: 

Added Hooks:

See: bootstrap.api.php for more information on how to use them.

  • hook_form_process()
  • hook_form_process_HOOK()
  • hook_pre_render()
  • hook_pre_render_HOOK()

Deprecated Functions:

The following functions have been deprecated and should not be used. They will be completely removed in a future minor release (likely 7.x-3.2).

  • _bootstrap_process_element()
  • _bootstrap_process_fieldset()
  • _bootstrap_pre_render_input()
  • _bootstrap_pre_render_fieldset()

Before in 7.x3.0:

function bootstrap_subtheme_element_info_alter(&$info) {
  $info['fieldset']['#pre_render'][] = 'bootstrap_subtheme_pre_render_fieldset';
}

After in 7.x3.1:

Simply declare a function by implementing one of the new hooks in your sub-theme's template.php file (or include) and it will be automatically detected an injected into the default element info array via bootstrap_element_info_alter()

Impacts: 
Themers