How to disable a field or make it readonly in Drupal 7

前端 未结 2 941
轻奢々
轻奢々 2021-01-05 14:32

I am trying to disable couple of fields and make them readonly via hook_page_alter(). I was able to do check if user is viewing the page edit section (the form edit)

2条回答
  •  旧巷少年郎
    2021-01-05 15:22

    Like it said in the docs

    You can use attributes :

    $form['#attributes'] = array('disabled' => TRUE);
    

提交回复
热议问题