You are here

function views_row_insert_help in Views Row Insert 7

Same name and namespace in other branches
  1. 8 views_row_insert.module \views_row_insert_help()

Implements hook_help().

@inheritdoc

File

./views_row_insert.module, line 13
Views Row Insert module.

Code

function views_row_insert_help($path) {
  switch ($path) {
    case "admin/help#views_row_insert":
      return t("View style plugin, which is capable to insert custom row with html unrestricted markup or blocks content into a view row results.");
      break;
  }
}