ZendフォームとこのフォームへのURLがあります。
URLには、firstname、lastname、emailの3つのパラメーターがあります。私のフォームには、名、姓、メールアドレスの3つの入力フィールドがあります。
フォームを送信するときはいつでも。フォーム入力フィールドではなく、URLパラメータから値を取得しています。
フォームで値を取得する方法はありますか?
URLのパラメータがフォーム入力フィールドと同じ名前であることを知っています*
URL:http ://mywebsite.com/thank-you?key=e72671a8640b45c2401afe887b9b530a& first_name = First&last_name = User&email = user_3fdfsdfs@gmail.com
フォームのZendアクションコントローラー:
$signupForm = new Application_Form_UserSignUp();
if ($signupForm->isValid($this->getRequest()->getParams()))
{
$user = $this->_helper->model('Users')->createRow($signupForm->getValues());
if ($user->save())
{
Zend_Session::rememberMe(186400 * 14);
Zend_Auth::getInstance()->getStorage()->write($user);
$user->sendSignUpEmail();
$this->getHelper('redirector')->gotoRoute(array(), 'invite');
return;
}
}
$this->view->signupForm = $signupForm;
Zendフォーム:
class Application_Form_UserSignUp extends Zend_Form
{
public $first_name, $last_name, $email, $submitButton;
public function init()
{
$this->setName('signupForm');
$this->first_name = $this->createElement('text', 'first_name')->setRequired(true);
$this->last_name = $this->createElement('text', 'last_name')->setRequired(true);
// Check if email is duplicated in database
$noEmailExists = new Zend_Validate_Db_NoRecordExists(
array(
'table' => 'users',
'field' => 'email'
)
);
$noEmailExists->setMessage('%value% is already used by another person, please try again with different email address', Zend_Validate_Db_Abstract::ERROR_RECORD_FOUND);
$this->email = $this->createElement('text', 'email')
->setLabel('Email')
->addValidator($noEmailExists)
->addValidator('EmailAddress')
->setRequired(true);
$this->submitButton = $this->createElement('button', 'save')
->setLabel('Sign Up')
->setAttrib('type', 'submit');
$this->addElements(array($this->first_name, $this->last_name, $this->email, $this->submitButton));
$elementDecorators = array(
'ViewHelper'
);
$this->setElementDecorators($elementDecorators);
}
}