function html_title_views_plugins_field_alter in HTML Title 8
Implements hook_views_plugins_field_alter().
File
- ./
html_title.module, line 24 - HTML Title module to enable limited HTML tags in title.
Code
function html_title_views_plugins_field_alter(&$definitions) {
if (isset($definitions['node_html_title'])) {
// Update the provider to node so when this module is uninstalled, the
// view is not removed and still works.
$definitions['node_html_title']['provider'] = 'node';
}
}