You are here

function views_custom_conditions_help in Views Custom Conditions 7

Implements hook_help().

File

./views_custom_conditions.module, line 23
Provides an display extender plugin example.

Code

function views_custom_conditions_help($path, $arg) {
  if ($path == 'admin/help#views_custom_conditions') {
    $html = '<p>' . t('This <strong>Views Custom Conditions</strong> module facilitates the site administrator to inject index hint into a views query. ‘Views’ is a powerful and highly flexible module that provides website builders with critical list making abilities. It generates a dynamic SQL query according to views construction for displaying data. So, to implement indexes in these SQL, this module can be really helpful. <br /><br />While using the USE INDEX syntax, administrators/users can tell MySQL which index to prefer when it executes a query. This saves time and makes upto 50 times faster queries.<br /><br />Please consult the README.txt before you install this module.
') . '</p>';
    return $html;
  }
}