You are here

function custom_pub_help in Custom Publishing Options 6

Same name and namespace in other branches
  1. 8 custom_pub.module \custom_pub_help()
  2. 7 custom_pub.module \custom_pub_help()

Implements hook_help().

File

./custom_pub.module, line 10
Adds the ability to add Custom publishing options to the node Add/Edit form.

Code

function custom_pub_help($path, $arg) {
  switch ($path) {
    case 'admin/help#custom_pub':
      return '<p>' . t("Custom Publishing Options allows you to create custom publishing options for nodes. It allows you to add to the default options of Publish, Promote to Front Page, and Sticky. It also ingrates with views to allow you add as a field, sort and filter by, your custom options.") . '</p>';
    case 'admin/content/custom_pub':
      return '<p>' . t("Custom Publishing Options allows you to create custom publishing options for nodes. It allows you to add to the default options of Publish, Promote to Front Page, and Sticky. It also ingrates with views to allow you add as a field, sort and filter by, your custom options.") . '</p>';
  }
}