You are here

function views_foundation_help in Views Foundation 7

Same name and namespace in other branches
  1. 7.4 views_foundation.module \views_foundation_help()

Implements hook_help().

File

./views_foundation.module, line 36
Views Foundation module file.

Code

function views_foundation_help($path, $arg) {
  switch ($path) {
    case 'admin/help#views_foundation':

      // Return the module README.txt
      return check_markup(file_get_contents(dirname(__FILE__) . "/README.txt"));
  }
}