-
-
Save thelebster/1e594aa4e6bf9341d64bbda13d814f5b to your computer and use it in GitHub Desktop.
Unlock drupal fields. For example with devels PHP block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $field_name = 'field_name'; | |
| $field = field_read_field($field_name); | |
| $field['locked'] = 0; // 0: unlock; 1: lock. | |
| field_update_field($field); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment