I created a module to do all my form altering called "form_mods". It's working for most situations but not for the Taxonomy page.

I'm targeting the form id of "taxonomy_overview_vocabularies". I'm trying to hide the link "edit vocabulary" for roles of "webmaster" and "dj".

My code is unsetting the $form array correctly, but Drupal is still displaying the "edit vocabulary" link.

function form_mods_form_alter($form, $form_state, $form_id) {

if($form_id == 'taxonomy_overview_vocabularies'){

    global $user;
    $hide=0;
    $hideArray = array('webmaster', 'dj'); 
    foreach($user->roles AS $key => $value){
        if(in_array($value, $hideArray)){
            $hide++;
        }
    }

    if($hide){
        foreach($form AS $vocab){
            //print_r($vocab);
            if(isset($vocab['edit']['#value'])){
                unset($vocab['edit']['#value']);
            }

        }
    }
}

}

thanks

link|improve this question

48% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Very small PHP mistake, when you want to change array members in a for each statement you have to pass them by reference & foreach($form AS &$vocab) otherwise the $vocab would be just a copy of the array

foreach($form AS &$vocab){
        //print_r($vocab);
        if(isset($vocab['edit']['#value'])){
            unset($vocab['edit']['#value']);
        }

    }
link|improve this answer
That was it!! Thank you. – EricP Jan 5 '11 at 23:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.