You are here

function cookie_content_blocker_filter_info in Cookie Content Blocker 7

Implements hook_filter_info().

File

./cookie_content_blocker.module, line 65
Contains the main module code for Cookie content blocker.

Code

function cookie_content_blocker_filter_info() {
  return array(
    'cookie_content_blocker_filter' => array(
      'title' => t('Cookie content blocker filter'),
      'description' => t("This filter converts Cookie content blocker's custom HTML tags into markup and handles blocking of wrapped HTML/Text. \n      It is recommended to run this filter last."),
      'process callback' => '_cookie_content_blocker_filter_process',
    ),
  );
}