function classified_form_classified_node_form_alter in Classified Ads 6.3
Same name and namespace in other branches
- 7.3 classified.module \classified_form_classified_node_form_alter()
Implements hook_form_FORM_ID_alter().
Allow access to the options fieldset on classiifed node forms to Classified Ads administrators.
File
- ./
classified.module, line 1006 - A pure D6 classified ads module inspired by the ed_classified module.
Code
function classified_form_classified_node_form_alter(&$form, $form_state) {
$form['options']['#access'] = user_access('administer classified ads');
}