my requirement is to upload files to specific folders. How can I achieve this by using form api. How can I modify below code such that upload_location should be dynamic. Uploaded file should save into the Folder name provided by the user.
I tried below code but not worked.
#submit element is not calling custom_document_submit function.
$form['folder_name'] = array( '#type' => 'textfield', '#title' => t('Folder Name'), ); $form['document'] = array( '#type' => 'managed_file', '#upload_validators' => array('file_validate_extensions' => array('xml')), '#upload_location' => 'public://', '#submit' => array('custom_document_submit'), ); function custom_document_submit($form, &$form_state){ $destination = $form_state['values']['folder_name']; $validators = array(); $file = file_save_upload('document', $validators, 'public://'.$destination); }
managed_filedoes not support#submit#upload_locationonmanaged_file?