function _action_example_page

A simple page to explain to the developer what to do.

Related topics

1 string reference to '_action_example_page'
action_example_menu in action_example/action_example.module
Implements hook_menu().

File

action_example/action_example.module, line 187

Code

function _action_example_page() {
    return t("The Action Example provides three example actions which can be configured on the <a href='@actions_url'>Actions configuration page</a> and assigned to triggers on the <a href='@triggers_url'>Triggers configuration page</a>.", array(
        '@actions_url' => url('admin/config/system/actions'),
        '@triggers_url' => url('admin/structure/trigger/node'),
    ));
}