Skip to content

Instantly share code, notes, and snippets.

@szeidler
Created February 6, 2015 10:09
Show Gist options
  • Select an option

  • Save szeidler/2b9040d32e3327be84bf to your computer and use it in GitHub Desktop.

Select an option

Save szeidler/2b9040d32e3327be84bf to your computer and use it in GitHub Desktop.
Unlock drupal fields. For example with devels PHP block
<?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