Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $allowed_exts = array('jpg jpeg gif png txt doc xls xlsx pdf ppt pptx pps odt ods odp docx zip rar');
  2.  
  3. $form['file1'] = array(
  4. '#title' => 'Attachments',
  5. '#description' => t('Allowed Files - jpg jpeg gif png txt doc xls xlsx pdf ppt pptx pps odt ods odp docx zip rar'),
  6. '#attributes' => array('id' =>'file_attachment'),
  7. '#type' => 'managed_file',
  8. '#upload_validators' => array('file_validate_extensions' => $allowed_exts,)
  9. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement