Guest User

Untitled

a guest
Jan 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $this->add('File', 'uploadFile', ts('Import Data File'), 'size=30 maxlength=255', TRUE);
  2.  
  3. public function preProcess()
  4. {
  5. if (isset($this->_submitFiles['uploadFile'])) {
  6. $uploadFile = $this->_submitFiles['uploadFile'];
  7. $importer = new CRM_Importer();
  8. $importer ->truncate();
  9. $importer -> importCVStoTable($uploadFile['tmp_name']);
  10. }
  11. }
Add Comment
Please, Sign In to add comment