-4

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

4

2 回答 2

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() 绑定。

于 2015-05-22T12:40:54.260 回答
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

但所有数据都没有插入数据库

于 2016-05-28T13:56:40.950 回答