LoginSignup
0
0

More than 5 years have passed since last update.

zf2 コントローラーbefore方法

Posted at

コントローラーにてすべてのアクションで共通する動作を定義するには

コントローラークラスにて

use Zend\Mvc\MvcEvent;

    /**
     *
     * @param \Zend\Mvc\MvcEvent $e
     * @return type
     */
    public function onDispatch(MvcEvent $e) {

        // ここにbeforeの内容

        return parent::onDispatch($e);
    }

を追加する。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0