Guest User

Untitled

a guest
Mar 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. if($form_id == 'commerce_checkout_form_checkout'){
  2. $form['employees'] = array(
  3. '#markup' => '<h1>Hello, this is a checkout test!</h1>',
  4. '#weight' => -1,
  5. );
  6. $webform_nid = 324;
  7. $webform_node = node_load($webform_nid);
  8. $webform_components = $webform_node->webform['components'];
  9.  
  10. foreach ($webform_components as $key => $component) {
  11. $form[$component['form_key']] = webform_component_invoke($component['type'], 'render', $component);
  12. }
  13. }
Add Comment
Please, Sign In to add comment