You are here

function classified_form_classified_node_form_alter in Classified Ads 7.3

Same name and namespace in other branches
  1. 6.3 classified.module \classified_form_classified_node_form_alter()

Implements hook_form_FORM_ID_alter().

Allow access to the options fieldset on classified node forms to Classified Ads administrators.

File

./classified.module, line 1154
A pure D7 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');
}