序章
再利用可能な管理モジュールを使用しています。認証とACLの処理を担当します。このモジュールには、実装されている他のモジュールが継承できるベースコントローラーが付属しています。したがって、このコントローラーはCp\AdminController
アクセス可能ではありませんが、他のすべてのコントローラーに継承されます。
問題
Cp\HomeController
いくつかのアクションを持つデフォルト/ホームコントローラーがあります。ログイン、ログアウト、パスワードを忘れた/リセットした。現在、私はに取り組んでいCp\HomeController::indexAction
ます。このメソッド内で、私は単に次のことを行います。
// ... controller logic ...
public function indexAction()
{
if ($this->getAuth()->hasIdentity()) {
# XXX: This is the authorised view/dashboard.
} else {
# XXX: This is the unauthorised view; login page.
$loginForm = new Form\Login();
# XXX: validation, and login form handling here.
return array(
'form' => $loginForm
);
}
}
// ... controller logic ...
ここでの問題は、Cp\HomeController
デフォルトで./module/Cp/view/cp/home/index.phtml
テンプレートを使用することです。次のようになります。
<h1>Authorisation Required</h1>
<section id="admin-login">
<?= $form ?>
</section>
私はZend\Form
自分のフォームクラス./module/Cp/src/Cp/Form.php
で拡張しましたが、これは任意のフォームクラスで拡張されます。_念頭に置いて、このクラスをアプリに移動して、完全に分離され、完全に再利用できるようにします。
<?php
// @file: ./module/Cp/src/Cp/Form.php
namespace Cp;
use Zend\Form\Form as ZendForm;
use Zend\Form\Fieldset;
use Zend\InputFilter\Input;
use Zend\InputFilter\InputFilter;
use Zend\View\Model\ViewModel;
use Zend\View\Renderer\PhpRenderer;
use Zend\View\Resolver;
class Form extends ZendForm
{
/**
* Define the form template path.
* @var String
*/
protected $__templatePath;
/**
* Define the view variables.
* @var Array
*/
protected $__viewVariables = array();
/**
* Set the view variable.
* @param String $key The index for the variable.
* @param Mixed $value The value for the view variable.
* @return Cp\Form
*/
public function set($key, $value)
{
$this->__viewVariables[$key] = $value;
return $this;
}
/**
* Set the template path.
* @param String $path The path for the template file.
* @return Cp\Form
*/
public function setTemplatePath($path)
{
$this->__templatePath = $path;
return $this;
}
/**
* When the object is buffered in output, we're going to generate the view
* and render it.
* @return String
*/
public function __toString()
{
// Define our template file as form for resolver to map.
$map = new Resolver\TemplateMapResolver(array(
'form' => $this->__templatePath
));
// Define the render instance responsible for rendering the form.
$renderer = new PhpRenderer();
$renderer->setResolver(new Resolver\TemplateMapResolver($map));
// The form view model will generate the form; parsing the vars to it.
$view = new ViewModel();
$view->setVariable('form', $this);
$view->setTemplate('form');
foreach ($this->__viewVariables as $key => $value) {
if (! property_exists($view, $key)) {
$view->setVariable($key, $value);
}
}
return $renderer->render($view);
}
}
このフォームクラスを継承して、ログインフォーム、標準の電子メールアドレス、およびパスワードフィールドを作成します。これは、認証が行われる可能性のある場所であればどこでも再利用できます。
<?php
namespace Cp\Form;
use Zend\Form\Element;
class Login extends \Cp\Form
{
public function __construct($name = 'Login', $action)
{
// Parse the form name to our parent constructor.
parent::__construct($name);
// Override default template, defining our form view.
$this->setTemplatePath(MODULE_DIR . 'Cp/view/cp/form/login.phtml');
// Create our form elements, and validation requirements.
$email = new Element\Email('email');
$email->setLabel('E-mail Address');
$password = new Element\Password('password');
$password->setLabel('Password');
$submit = new Element\Submit('login');
$this->setAttribute('action', $action)
->setAttribute('method', 'post')
->setAttribute('autocomplete', 'autocomplete')
->add($email)
->add($password)
->add($submit);
}
}
継承__toString
されたメソッドが定義されたフォームビューを取得し、それをレンダリングします。これが私の問題であり、私の質問が発生します。ビュー内(以下を参照)では、HTML要素をハードコーディングせずに、フレームワークを使用してフォームを作成しようとしています。Cp\Form\Login
クラスは、別のフィールド、追加のフィールド、オプションまたは必須、あるいは条件付きで拡張および変更できるためです。
Zendに次のHTMLを生成させる方法はありますか?部分的なビューを使用したり、物理的に書き込んだりすることなく<input type="<?= ... ?>" name="<?= ... ?>" />
。これは、属性がコントローラー内で定義または上書きされる可能性があるため、この時点では属性が不明であるためです。柔軟性を受け入れる必要があります。
<section class="authentication-form">
<h2>Authentication Required</h2>
<!-- How-to: Generate the <form> tag and all it's attributes. -->
<?= $form->openTag() ?>
<? if ($ipAllowed): ?>
<p>Please choose an account to log in through.</p>
<fieldset>
<?= $form->get('email') ?>
</fieldset>
<? else: ?>
<p>Please log in using your e-mail address and password.</p>
<fieldset>
<?= $form->get('email') ?>
<?= $form->get('password') ?>
</fieldset>
<? endif ?>
<div class="action">
<!-- How-To: Generate the <input type="submit" name="" ... attributes ... />
<?= $form->get('login') ?>
</div>
<!-- How-To: Generate the form close tag.
<?= $form->closeTag() ?>
</section>
うまくいけば、これは以前よりも明確になります。