You are here

function html_title_views_api in HTML Title 7

Same name and namespace in other branches
  1. 6 html_title.module \html_title_views_api()

Implementation hook_views_api()

File

./html_title.module, line 106
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' => 3,
    'path' => drupal_get_path('module', 'html_title') . '/views',
  );
}