という抽象フォーム クラスを作成しましたAbstractApplicationForm
。Zend\ServiceManager\ServiceLocatorAwareInterface
トランスレータにアクセスできるようにするために、サービスロケータを を介して挿入したいと考えています。
namespace Application\Form;
use Zend\Form\Form;
use Zend\ServiceManager\ServiceLocatorAwareInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
abstract class AbstractApplicationForm
extends Form
implements ServiceLocatorAwareInterface
{
protected $serviceLocator;
protected $translator;
public function setServiceLocator(ServiceLocatorInterface $serviceLocator)
{
$this->serviceLocator = $serviceLocator;
}
public function getServiceLocator()
{
return $this->serviceLocator;
}
public function getTranslator()
{
if (!$this->translator) {
$this->translator = $this->getServiceLocator()->get('translator');
}
return $this->translator;
}
}
私のアプリケーションフォームは、次のようにこのクラスを拡張します:
namespace Trade\Form;
use Zend\Captcha;
use Zend\Captcha\Image;
use Zend\Form\Element;
use Application\Form\AbstractApplicationForm;
class MemberForm extends AbstractApplicationForm
{
public function init()
{
$this->setAttribute('method', 'post');
// Add the elements to the form
$id = new Element\Hidden('id');
$first_name = new Element\Text('first_name');
$first_name->setLabel($this->getTranslator('First Name'))
このようにして、getTranslator を使用してラベルを翻訳できます。
ここまでは順調ですね。コントローラー アクションで、次のようなフォームを作成します。
public function joinAction()
{
// Create and initialize the member form for join
$formManager = $this->serviceLocator->get('FormElementManager');
$form = $formManager->get('Trade\Form\MemberForm');
結果は ServiceManager 例外です。
Zend\ServiceManager\ServiceManager::get は、トランスレータのインスタンスを取得または作成できませんでした
Module.php
orには他に何も定義されていませんし、module.config.php
必要もないと思います。私はこのように定義された翻訳者を持っていますmodule.config.php
:
'translator' => array(
'locale' => 'en_US',
'translation_patterns' => array(
array(
'type' => 'gettext',
'base_dir' => __DIR__ . '/../language',
'pattern' => '%s.mo',
),
),
コントローラーで取得すると正常に動作します:
$sm = $this->getServiceLocator();
$this->translator = $sm->get('translator');
したがって、トランスレータの設定は実際には正しいのですが、フォームで取得できません。誰かが私が間違っていることを知っていますか?