function save_edit_help in Save & Edit 6
Same name and namespace in other branches
- 8 save_edit.module \save_edit_help()
- 7 save_edit.module \save_edit_help()
Provide online user help.
Parameters
$path:
$arg:
Return value
Help text
File
- ./
save_edit.module, line 24
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 '';
}
}