Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. $form['wrapper']['right']['packaging_wrapper']['no_contacts_flag'] = [
  2. '#title' => t('Connector required to deliver', [], ['context' => DEFAULT_COMMON_T_OTHER]),
  3. '#type' => 'radios',
  4. '#attributes' => [
  5. 'class' => ['inline-radios'],
  6. ],
  7. '#prefix' => '<div id="pkgcontainer">',
  8. '#suffix' => '</div>',
  9. '#options' => [
  10. 'with_contacts' => t('With Contacts', [], ['context' => DEFAULT_COMMON_T_OTHER]),
  11. 'without_contacts' => t('Without Contacts', [], ['context' => DEFAULT_COMMON_T_OTHER]),
  12. ],
  13. '#default_value' => 'without_contacts',
  14. '#ajax' => [
  15. 'event' => 'change',
  16. 'callback' => 'load_default_callback',
  17. 'effect' => 'fade',
  18. ],
  19. '#required' => TRUE,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement