function save_edit_help in Save & Edit 7
Same name and namespace in other branches
- 8 save_edit.module \save_edit_help()
- 6 save_edit.module \save_edit_help()
Provide online user help.
Parameters
$path:
$arg:
Return value
Help text
File
- ./
save_edit.module, line 26 - Save & Edit (http://drupal.org/project/save_edit) Provides a button that gives users the option to Save a form they are working on, AND return to the editing form in one step.
Code
function save_edit_help($path, $arg) {
switch ($path) {
case 'admin/settings/save-edit':
return '<p>' . t('Save & Edit adds a "Save and edit" button to the node add and node configure forms. The module also provides options to modify the way the "Publish" feature works when using Save & Edit. If the modifications are enabled to the Publish feature, when a node is unpublished, it will also create a "Publish" button that will obviously Save & Publish a node that was previously marked as Unpublished.') . '</p>';
case 'admin/help#save_edit':
return '<p>' . t('Save & Edit adds a "Save and edit" button to the node add and node configure forms. The module also provides options to modify the way the "Publish" feature works when using Save & Edit. If the modifications are enabled to the Publish feature, when a node is unpublished, it will also create a "Publish" button that will obviously Save & Publish a node that was previously marked as Unpublished.') . '</p>';
default:
return '';
}
}