function nodewords_add_generation_fieldset in Nodewords: D6 Meta Tags 6
Add the fieldset for the generation settings to the form passed as argument.
Parameters
&$form: The form to which add the fieldset. If the fieldset has been already added, then it will not be added.
File
- ./
nodewords.admin.inc, line 522 - Administration interface for nodewords.module.
Code
function nodewords_add_generation_fieldset(&$form) {
if (!isset($form['generation'])) {
$form['generation'] = array();
}
}