ZendFramework2にデフォルトのモジュールがあります。
namespace Application\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
class IndexController extends AbstractActionController
{
public function indexAction()
{
return new ViewModel();
}
}
現在のコントローラーの名前またはアクション名を取得して、ビューやレイアウトに渡すにはどうすればよいですか?私はZF2フレームワークから始めたばかりだと言わなければなりません。