Guest User

Untitled

a guest
Mar 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. $form['term-selection']['autocomplete'] = array(
  2. '#title' => variable_get('autocomplete_sync_shs_autocomplete_headline',t('Type in directly')),
  3. '#description' => variable_get('autocomplete_sync_shs_autocomplete_info',t('')),
  4. '#type' => 'textfield',
  5. '#autocomplete_path' => 'third-level-auto-suggest/autocomplete-taxonomy-term/'.$field_name.'/'.$entity_type.'/' . $node_type ,
  6. '#states' => array(
  7. 'disabled' => array(
  8. ':input[name="widget-selection"]' => array('value' => 1 ),
  9. ),
  10. ),
  11. '#default_value' => $default_autocomplete,
  12. );
Add Comment
Please, Sign In to add comment