/**
  * inits the import form
  *
  * @access public
  * @author Joel Bout, <*****@*****.**>
  * @return mixed
  */
 public function initForm()
 {
     $this->form = tao_helpers_form_FormFactory::getForm('import');
     $this->form->setActions(is_null($this->subForm) ? array() : $this->subForm->getActions('top'), 'top');
     $this->form->setActions(is_null($this->subForm) ? array() : $this->subForm->getActions('bottom'), 'bottom');
 }