如何添加新附件字段Orange Hrm leaveplugin

时间:2015-05-20 13:54:57

标签: orangehrm

先谢谢  我想在leaveplugin中的评论字段之前添加新的附件字段在申请休假表格我怎么做请告诉步伐

2 个答案:

答案 0 :(得分:0)

中添加此内容
getFormWidgets()- 
'attach' => new sfWidgetFormInputFileEditable(array('edit_mode' => false,'with_delete' => false, 'file_src' => ''))

中添加以下代码
getFormValidators() function -
'attach' => new sfValidatorFile(array('required' => false, 'max_size' => 1024000, 'validated_file_class' => 'orangehrmValidatedFile'))

在操作类中,使用$ request-> getFiles()绑定该表单。

答案 1 :(得分:0)

如何以候选表格添加字段

首先在#_job_candidate

中添加所有三个字段
  1. orangehrm\symfony\plugins\orangehrmRecruitmentPlugin\lib\form\AddCandidateForm.php
  2. orangehrm\symfony\plugins\orangehrmRecruitmentPlugin\modules\recruitment\templates\addCandidateSuccess.php
  3. orangehrm\symfony\lib\model\doctrine\orangehrmRecruitmentPlugin\base\BaseJobCandidate.class.php
  4. 但所有数据都未插入数据库