Skip to content

Instantly share code, notes, and snippets.

@matstani
Last active August 29, 2015 13:56
Show Gist options
  • Save matstani/9304648 to your computer and use it in GitHub Desktop.
Save matstani/9304648 to your computer and use it in GitHub Desktop.
ZF2 フォームのバリデーションエラーメッセージ表示用ビューヘルパー
<?php
namespace Album\Helper;
use Zend\Form\View\Helper\FormElementErrors as ZendFormElementErrors;
/**
* フォームのバリデーションエラーメッセージ表示用ビューヘルパー
*/
class FormElementErrors extends ZendFormElementErrors
{
protected $messageCloseString = '</li></ul>';
protected $messageOpenFormat = '<ul class="err-msg" %s><li>';
protected $messageSeparatorString = '</li><li>';
}
<?php
//...
public function getViewHelperConfig()
{
return array(
'invokables' => array(
'formElementErrors' => 'Album\Helper\FormElementErrors',
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment