option_nfs_title_description.inc in Node and Comments Form Settings 7.3
Same filename and directory in other branches
File
includes/option_nfs_title_description.incView source
<?php
/**
* Set the node title description (help text).
*/
function _option_nfs_title_description(&$form, &$form_state, $settings, $node) {
// Only proceed if the title element exists.
if (!isset($form['title'])) {
return $form;
}
$desc = t(check_plain(trim($settings['nfs_title_description'])));
// Set help text for title field.
if ($desc) {
$form['title']['#description'] = $desc;
}
return $form;
}
Functions
Name![]() |
Description |
---|---|
_option_nfs_title_description | Set the node title description (help text). |