Drupal 7 - Hide certain form fields of a content edit form depending on the content data

前端 未结 3 462
感情败类
感情败类 2021-01-16 15:17

In Drupal 7, is there a way to change the standard edit form for a content type based on a certain content?

For example:

I have a content type with a checkb

3条回答
  •  自闭症患者
    2021-01-16 15:31

    function your_module_form_alter(&$form, &$form_state, $form_id){
    
        switch($form_id) {
        case 'nameOfTheNode_node_form':
            //your code here. check the value from from_state.
        break;
        }
    }
    

提交回复
热议问题