Zend Frameworkで複雑なデコレーターを操作する

はじめに



Zend Frameworkは素晴らしいシステムです。 この意見は、このシステムとの密接な「コミュニケーション」の長年にわたって発展してきました。 驚くべきことではありませんが、プログラマーに与えられたいくつかの超大国のためではありませんが、このシステムはプログラマーを驚くほど自分自身のために、プログラマーのために、そして彼自身の開発のためのシンプルで同時に強力な基盤を提供するために改善するように誘うためです。

Zend Frameworkを使用してプロジェクトに取り組んで、私はその機能を最大限に活用することにし、すぐにZend_Formコンポーネントに注意を喚起することにしました(Zend_FormコンポーネントはZend_Formクラスと関連するクラスとインターフェースのセット全体で構成されるため、意図的にクラスではなくZend_Formコンポーネントを呼び出します)。 ドキュメントには、「Zend_Formを使用すると、簡単にフォームを作成してWebアプリケーションで管理できるようになります」と簡単に説明されています。 一般に、これは事実ですが、予備的な準備なしでは、1つの多かれ少なかれ複雑なフォームを作成して表示する前に、7つのポットが外れます。 概念的には、Zend Frameworkのフォームは次のもので構成されます。 実際、要素はフォーム要素の意味です:入力フィールド、ドロップダウンリストなど。

デコレータとは、フォーム要素に論理的に接続されている(それを囲む)レイアウト全体ですが、その一部ではありません。 簡単に言えば、デコレーターはフォーム要素のデザインです。



この記事では、グループデコレータの存在の必要性を証明し、そのコードを公開します。 著者の書癖の実を読むのが面倒な人は、すぐにコードに行くことができます。

それで問題は何ですか?



私の意見では、デコレータの使用は、フォームの実装に関する作業の中で最も困難で骨の折れる作業です。 ドキュメントに記載されている例では、1つのことを除いてすべてが問題ありません。これらはすべて非常に単純で、原始的な例ですらあります。

しかし、このようなものを表示する必要があるとすぐに



そこから問題がどのように始まるか。 主な問題は、Zend_Formコンポーネント内のデコレータのストアが単一レベルの構造を持っていることです。つまり、ネストされたデコレータを作成したり、デコレータのデコレータを作成したりできません。

たとえば、上記のフォームフラグメントは次のコードでエンコードされます。



ご覧のとおり、要素ツリーには2つの独立したブランチがあります。フォーム要素自体(入力)をフレーム化するテーブルセルと、ラベルをフレーム化するセルです。 問題は、ラベルがフォーム要素ではないことです(デコレータでもあります)。 そのため、このような構造を作成するには、ダーティハックの助けを借りて抜け出す必要があります。

$ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

"_".'
);
* This source code was highlighted with Source Code Highlighter .




  1. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  2. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  3. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  4. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  5. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  6. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  7. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  8. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  9. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  10. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  11. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  12. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




  13. $ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

    "_".'
    ); * This source code was highlighted with Source Code Highlighter .




$ this ->setElementDecorators(array( 'ViewHelper' , array( 'decorator' => array( 'br' => 'HtmlTag' ), 'options' => array( 'tag' => 'span' , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'tdOpen' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'openOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::PREPEND)), array( 'decorator' => array( 'tdClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'closeOnly' => true , 'placement' => Zend_Form_Decorator_Abstract::APPEND)), array( 'decorator' => array( 'label' => 'Label' ), 'options' => array( 'separator' => '*' )), 'Errors' , array( 'decorator' => array( 'mainCell' => 'HtmlTag' ), 'options' => array( 'tag' => 'td' , 'class' => 'tregleft' )), array( 'decorator' => array( 'mainRowClose' => 'HtmlTag' ), 'options' => array( 'tag' => 'tr' )) )); $usernameFieldLabel = $ this ->user_name->getDecorator( 'label' ); $defaultSeparator = $usernameFieldLabel->getOption( 'separator' ); $usernameFieldLabel->setOption( 'separator' , $defaultSeparator. '

"_".'
);
* This source code was highlighted with Source Code Highlighter .






欠点の: それは簡単です。すべてのコードが、ハックを使用しても、デコレータを使用してそのように表示できるわけではありません。 他のデコレータを追加できるデコレータがあれば、すべてがはるかに簡単になります。

問題解決



グーグル、私は普通の何かを見つけられなかったので、自分のグループデコレータを書くことにしました。

起こったことは次のとおりです。





  1. <?php
  2. require_once 'Zend / Form / Decorator / Abstract.php' ;
  3. class Zend_Form_Decorator_GroupDecorator extends Zend_Form_Decorator_Abstract {
  4. / **
  5. *グループ化するアイテム(デコレーター)
  6. * @var配列
  7. * /
  8. protected $ _items = null ;
  9. / **
  10. *デコレータ操作を実行するための一時フォーム
  11. * @var Zend_Form_Element
  12. * /
  13. private $ _temporaryDecoratorsContainer = null ;
  14. / **
  15. *コンストラクター
  16. *
  17. * @param array | Zend_Config $オプション
  18. * @return void
  19. * /
  20. パブリック関数__construct($ options = null ){
  21. 親:: __構成($オプション);
  22. $ this- > _ temporaryDecoratorsContainer = new Zend_Form_Element( '_temporaryDecoratorsContainer' 、配列( 'DisableLoadDefaultDecorators' => true ));
  23. $ this-> getItems();
  24. }
  25. / **
  26. *使用するアイテムを設定する
  27. *
  28. * @param array $ items
  29. * @return Zend_Form_Decorator_GroupDecorator
  30. * /
  31. パブリック関数setItems($アイテム){
  32. $ this-> _ items = $ this-> _ temporaryDecoratorsContainer-> clearDecorators()-> addDecorators($ items)-> getDecorators();
  33. $ thisを 返します。
  34. }
  35. / **
  36. *タグを取得
  37. *
  38. *アイテムが登録されていない場合、setItems()またはオプションとして、空の配列を使用します。
  39. *
  40. * @return配列
  41. * /
  42. パブリック関数getItems(){
  43. ifnull === $ this-> _ items){
  44. ifnull ===($ items = $ this-> getOption( 'items' ))){
  45. $ this-> setItems(array());
  46. } else {
  47. $ this-> setItems($ items);
  48. $ this-> removeOption( 'items' );
  49. }
  50. }
  51. $ this-> _ items;
  52. }
  53. パブリック関数addDecorator($デコレーター、$オプション= null ){
  54. $ this-> _ temporaryDecoratorsContainer-> addDecorator($デコレーター、$オプション);
  55. $ thisを 返します。
  56. }
  57. パブリック関数clearDecorators(){
  58. $ this-> _ temporaryDecoratorsContainer-> clearDecorators();
  59. $ this-> _ items = array();
  60. }
  61. パブリック関数getDecorator($ index = null ){
  62. ifnull === $ index){
  63. $ this-> _ items;
  64. }
  65. if (is_numeric($ index)){
  66. $ _items = array_values($ this-> _ items);
  67. return ($ index <count($ _ items))?$ _ items [$ index]: null ;
  68. }
  69. if (is_string($ index)){
  70. return (array_key_exists($ index、$ this-> _ items))?$ this-> _ items [$ index]: null ;
  71. }
  72. nullを 返し ます
  73. }
  74. パブリック関数insertDecoratorBefore($インデックス、$デコレーター、$オプション= null ){
  75. $ _decoratorsToAdd = $ this-> _ temporaryDecoratorsContainer-> clearDecorators()-> addDecorator($ decorator、$ options)-> getDecorators();
  76. if (is_string($ index)){
  77. $ index = array_search($ index、array_keys($ this-> _ items));
  78. }
  79. iffalse !== $ index){
  80. $ first =($ index> 0)?array_slice($ this-> _ items、0、$ index、 true ):array();
  81. $ last =($ index <count($ this-> _ items))?array_slice($ this-> _ items、$ index、 nulltrue ):array();
  82. $ this-> _ items = array_merge($ first、(array)$ _ decoratorsToAdd、$ last);
  83. }
  84. $ thisを 返します。
  85. }
  86. / **
  87. *デコレータのグループにラップされたコンテンツをレンダリングする
  88. *
  89. * @param string $ content
  90. * @return string
  91. * /
  92. public function render($ content){
  93. $プレースメント= $ this-> getPlacement();
  94. $ items = $ this-> getItems();
  95. $ _content = '' ;
  96. foreach ($アイテム $ _decorator として ){
  97. if ($ _decorator instanceOf Zend_Form_Decorator_Interface){
  98. $ _decorator-> setElement($ this-> getElement());
  99. $ _content = $ _decorator-> render($ _ content);
  100. }
  101. その他 {
  102. require_once 'Zend / Form / Decorator / Exception.php' ;
  103. throw new Zend_Form_Decorator_Exception( 'Invalid decorator' 。$ _ decorator。 'provided; must be must string or Zend_Form_Decorator_Interface' );
  104. }
  105. }
  106. スイッチ ($配置){
  107. ケースの自己::追加:
  108. $コンテンツを返します。 $ _content;
  109. 休憩 ;
  110. ケース自己:: PREPEND:
  111. $ _contentを返します。 $コンテンツ;
  112. 休憩 ;
  113. デフォルト
  114. return $ _content。$ content。$ _ content;
  115. 休憩 ;
  116. }
  117. }
  118. }
  119. ?>
*このソースコードは、 ソースコードハイライターで強調表示されました。


このデコレータは次のことができます。 フォーム要素を作成する上記の例は次のようになります。





  1. <?php
  2. クラス Form_MemberRegisterはZend_Formを拡張します{
  3. public function init(){
  4. $ this-> setDisableLoadDefaultDecorators( true );
  5. $ this-> addDecorator( 'FormElements'
  6. -> addDecorator(array( 'table' => 'HtmlTag' )、array( 'tag' => 'table''class' => 'treg' ))
  7. -> addDecorator( 'フォーム' );
  8. $ this-> addElement( 'text''user_name' 、array( 'label' => 'Login:' ));
  9. $ this-> addElement( 'password''password' 、array( 'label' => 'Password:' ));
  10. $ this-> addElement( 'password''password2' 、array( 'label' => 'Repeat password:' ));
  11. $ this-> addElement( 'text''email' 、array( 'label' => 'E-mail:' ));
  12. $ this-> setElementDecorators(array(
  13. array( 'decorator' => array( 'labelGroup' => 'GroupDecorator' )、 'options' => array( 'items' => array(
  14. array( 'decorator' => 'Text''options' => array( 'text' => '*' ))、
  15. array( 'decorator' => array( 'span' => 'HtmlTag' )、 'options' => array( 'tag' => 'span''class' => 'red' ))、
  16. array( 'decorator' => 'Label''options' => array( 'placement' => Zend_Form_Decorator_Abstract :: PREPEND))、
  17. array( 'decorator' => array( 'labelCell' => 'HtmlTag' )、 'options' => array( 'tag' => 'td''class' => 'tregleft' ))
  18. )))、
  19. array( 'decorator' => array( 'elementGroup' => 'GroupDecorator' )、 'options' => array( 'items' => array(
  20. 'ViewHelper'
  21. array( 'decorator' => array( 'elementCell' => 'HtmlTag' )、 'options' => array( 'tag' => 'td' ))
  22. ))、 'placement' => Zend_Form_Decorator_Abstract :: APPEND)、
  23. 配列( 'decorator' =>配列( 'mainRowClose' => 'HtmlTag' )、 'オプション' =>配列( 'tag' => 'tr' ))
  24. ));
  25. / **
  26. * @var Zend_Form_Decorator_GroupDecorator
  27. * /
  28. $ usernameFieldLabel = $ this- > user_name-> getDecorator( 'labelGroup' );
  29. $ usernameFieldLabel-> insertDecoratorBefore( 'labelCell' 、array( 'usernameNotes' => $ this-> _ getNotesDecorator($ this-> user_name、 'ログインはラテン文字と記号 "_"のみで構成できます。 " ));
  30. / **
  31. * @var Zend_Form_Decorator_GroupDecorator
  32. * /
  33. $ emailFieldDecorator = $ this-> email-> getDecorator( 'elementGroup' );
  34. $ emailFieldDecorator-> insertDecoratorBefore( 'elementCell' 、array( 'emailNotes' => $ this-> _ getNotesDecorator($ this-> email、 '既存の有効なメールのみを入力してください。登録を確認するためにこのアドレスにリンクが送信されます。 ' )));
  35. }
  36. 保護された関数_getNotesDecorator($要素、$ notesText = '' ){
  37. $ _d = new Zend_Form_Decorator_GroupDecorator(array( 'items' => array(
  38. array( 'decorator' => array( 'notesText' => 'Text' )、 'options' => array( 'text' => $ notesText))、
  39. array( 'decorator' => array( 'notesTag' => 'HtmlTag' )、 'options' => array( 'tag' => 'small' ))、
  40. 配列(
  41. 'decorator' =>配列( 'br' => 'HtmlTag' )、
  42. 'options' =>配列( 'tag' => 'br''openOnly' => true'placement' => Zend_Form_Decorator_Abstract :: PREPEND)
  43. )));
  44. return $ _d-> setElement($要素);
  45. }
  46. }
  47. ?>
*このソースコードは、 ソースコードハイライターで強調表示されました。


投稿が長すぎることが判明した場合は、事前に謝罪します。

提起された問題に対する別のよりエレガントな解決策があれば、私に知らせてください-私は私の頭に灰を振りかけます:)

PS:テーブルレイアウトの反対者のために、これはプログラミングに関する投稿であり、タイプセッターではないことに注意してください-与えられたテンプレートを表示する必要がありました。



All Articles