Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2.  
  3. function webformalter_form_alter(&$form, &$form_state, $form_id) {
  4. // Check when the right form is passed
  5. if ($form_id == ' webform_client_form_289') {
  6.  
  7. // Add the directions
  8. $form['resource_name'] = array(
  9. '#prefix' => '<p>Do you know of a high-quality resource that should be in our
  10. listings?</p><p>Please let us know! We will review it before publishing it, and we will
  11. follow up with any questions.</p>',
  12. );
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement