Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. );
  2. $defaults = array(
  3. 'value' => '',
  4. 'format' => filter_default_format(),
  5. );
  6. $my_richtext_field = variable_get('my_richtext_field', $defaults);
  7.  
  8. $form['body'] = array(
  9. '#type' => 'text_format',
  10. '#title' => 'Body',
  11. '#rows' => '10',
  12. '#cols' => '60',
  13. '#default_value' => isset($form_state['values']['body']) ? $form_state['values']['body'] : '',
  14. '#description' => 'Enter the body of the ad.',
  15. '#format' => $my_richtext_field['format'],
  16. '#required' => TRUE,
  17. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement