先谢谢 我想在leaveplugin中的评论字段之前添加新的附件字段在申请休假表格我怎么做请告诉步伐
答案 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
表
orangehrm\symfony\plugins\orangehrmRecruitmentPlugin\lib\form\AddCandidateForm.php
orangehrm\symfony\plugins\orangehrmRecruitmentPlugin\modules\recruitment\templates\addCandidateSuccess.php
orangehrm\symfony\lib\model\doctrine\orangehrmRecruitmentPlugin\base\BaseJobCandidate.class.php
但所有数据都未插入数据库