function html_title_views_api in HTML Title 6
Same name and namespace in other branches
- 7 html_title.module \html_title_views_api()
Implementation hook_views_api()
File
- ./
html_title.module, line 104 - This module enables limited HTML to be used in node titles. It strips title markup from RSS feeds to eliminate unsightly markup in feed readers.
Code
function html_title_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'html_title') . '/views',
);
}