コード例 #1
0
ファイル: ListingsDetailTab.php プロジェクト: xinghao/shs
 public function getForm()
 {
     $this->_form = new JobContactForm();
     $this->_form->setHint('Post a Comment to the employer company:');
     $this->_form->setAction('/forms/contact');
     $this->_form->setPostingId($this->_posting->id);
     return parent::getForm();
 }
コード例 #2
0
ファイル: ClassifiedsDetailTab.php プロジェクト: xinghao/shs
 public function getForm()
 {
     $this->_form = new ContactForm();
     $this->_form->setHint('Post a message to the seller:');
     $this->_form->setAction('/forms/contact');
     $this->_form->setPostingId($this->_posting->id);
     return parent::getForm();
 }
コード例 #3
0
ファイル: RealestateDetailTab.php プロジェクト: xinghao/shs
 public function getForm()
 {
     $this->_form = new JobContactForm();
     $this->_form->setHint('Post comment to the property owner:');
     $this->_form->setAction('/forms/contact');
     $this->_form->setPostingId($this->_posting->id);
     return parent::getForm();
 }
コード例 #4
0
ファイル: HealthDetailTab.php プロジェクト: xinghao/shs
 public function getForm()
 {
     $this->_form = new JobContactForm();
     $this->_form->setHint('Post a message to business owner:');
     $this->_form->setAction('/forms/contact');
     $this->_form->setPostingId($this->_posting->id);
     $this->_form->setQuestionlabel('Your Question:');
     return parent::getForm();
 }