<?php
// 1. 视图渲染器
class PhpRenderer implements Renderer, TreeRendererInterface
{
/**
* 插件管理器
*/
public function getHelperPluginManager()
{
if (null === $this->__helpers) {// false
$this->setHelperPluginManager(new HelperPluginManager());
}
return $this->__helpers;
} /**
* 获取插件
*/
public function plugin($name, array $options = null)
{
// Zend\Mvc\Service\ViewHelperManagerFactory
// Zend\View\HelperPluginManager
return $this->getHelperPluginManager()->get($name, $options);
} /**
* 渲染
*/
public function render($nameOrModel, $values = null)
{
// ....
try {
ob_start();
$includeReturn = include $this->__file; // 执行模板
$this->__content = ob_get_clean();
} catch (\Exception $ex) {
ob_end_clean();
throw $ex;
}
// ....
}
} // 2. 插件管理器
// 插件管理器创建工厂
class ViewHelperManagerFactory extends AbstractPluginManagerFactory
{
const PLUGIN_MANAGER_CLASS = 'Zend\View\HelperPluginManager'; protected $defaultHelperMapClasses = array(
'Zend\Form\View\HelperConfig',
'Zend\I18n\View\HelperConfig',
'Zend\Navigation\View\HelperConfig'
); public function createService(ServiceLocatorInterface $serviceLocator)
{
$plugins = parent::createService($serviceLocator);
// 注入插件管理器的默认配置
foreach ($this->defaultHelperMapClasses as $configClass) {
if (is_string($configClass) && class_exists($configClass)) {
$config = new $configClass;
$config->configureServiceManager($plugins);
}
} // url插件的创建工厂 Configure URL view helper with router
$plugins->setFactory('url', function () use ($serviceLocator) {
$helper = new ViewHelper\Url; // Zend\View\Helper\Url
$router = Console::isConsole() ? 'HttpRouter' : 'Router';
$helper->setRouter($serviceLocator->get($router)); // 注入路由对象 $match = $serviceLocator->get('application')
->getMvcEvent()
->getRouteMatch()
; if ($match instanceof RouteMatch) {
$helper->setRouteMatch($match); // 注入匹配到的路由对象
} return $helper;
});
// basepath插件的创建工厂
$plugins->setFactory('basepath', function () use ($serviceLocator) {
//...
return $basePathHelper;
});
// doctype插件的创建工厂
$plugins->setFactory('doctype', function () use ($serviceLocator) {
//...
return $doctypeHelper;
});
}
}
// 插件管理器
class ServiceManager implements ServiceLocatorInterface
{
public function __construct(ConfigInterface $config = null)
{
if ($config) {
$config->configureServiceManager($this);
}
}
}
abstract class AbstractPluginManager extends ServiceManager implements ServiceLocatorAwareInterface
{
public function __construct(ConfigInterface $configuration = null)
{
parent::__construct($configuration);
$self = $this;
$this->addInitializer(function ($instance) use ($self) {//!!! 给插件对象注入插件管理器
if ($instance instanceof ServiceLocatorAwareInterface) {
$instance->setServiceLocator($self);
}
});
}
}
class HelperPluginManager extends AbstractPluginManager
{
protected $factories = array(
'flashmessenger' => 'Zend\View\Helper\Service\FlashMessengerFactory',
'identity' => 'Zend\View\Helper\Service\IdentityFactory',
);
protected $invokableClasses = array(
'basepath' => 'Zend\View\Helper\BasePath',
'cycle' => 'Zend\View\Helper\Cycle',
'declarevars' => 'Zend\View\Helper\DeclareVars',
'doctype' => 'Zend\View\Helper\Doctype', // overridden by a factory in ViewHelperManagerFactory
'escapehtml' => 'Zend\View\Helper\EscapeHtml',
'escapehtmlattr' => 'Zend\View\Helper\EscapeHtmlAttr',
'escapejs' => 'Zend\View\Helper\EscapeJs',
'escapecss' => 'Zend\View\Helper\EscapeCss',
'escapeurl' => 'Zend\View\Helper\EscapeUrl',
'gravatar' => 'Zend\View\Helper\Gravatar',
'htmltag' => 'Zend\View\Helper\HtmlTag',
'headlink' => 'Zend\View\Helper\HeadLink',
'headmeta' => 'Zend\View\Helper\HeadMeta',
'headscript' => 'Zend\View\Helper\HeadScript',
'headstyle' => 'Zend\View\Helper\HeadStyle',
'headtitle' => 'Zend\View\Helper\HeadTitle',
'htmlflash' => 'Zend\View\Helper\HtmlFlash',
'htmllist' => 'Zend\View\Helper\HtmlList',
'htmlobject' => 'Zend\View\Helper\HtmlObject',
'htmlpage' => 'Zend\View\Helper\HtmlPage',
'htmlquicktime' => 'Zend\View\Helper\HtmlQuicktime',
'inlinescript' => 'Zend\View\Helper\InlineScript',
'json' => 'Zend\View\Helper\Json',
'layout' => 'Zend\View\Helper\Layout',
'paginationcontrol' => 'Zend\View\Helper\PaginationControl',
'partialloop' => 'Zend\View\Helper\PartialLoop',
'partial' => 'Zend\View\Helper\Partial',
'placeholder' => 'Zend\View\Helper\Placeholder',
'renderchildmodel' => 'Zend\View\Helper\RenderChildModel',
'rendertoplaceholder' => 'Zend\View\Helper\RenderToPlaceholder',
'serverurl' => 'Zend\View\Helper\ServerUrl',
'url' => 'Zend\View\Helper\Url',
'viewmodel' => 'Zend\View\Helper\ViewModel',
); public function __construct(ConfigInterface $configuration = null)
{
parent::__construct($configuration); $this->addInitializer(array($this, 'injectRenderer')) // 给插件对象注入视图渲染器
->addInitializer(array($this, 'injectTranslator')); // 给插件对象注入语言翻译器
} // 视图渲染器
public function getRenderer()
{
return $this->renderer;
}
}
?>
//3.插件管理器的使用
// 在模板中 moduel1/ctrl1/action1.phtml中使用
<div>hello,this is view plugin demo:</div>
<?php
// view_model 视图插件
$helper = $this->plugin('view_model');
$helper->setCurrent($model); // url 视图插件
// case.0
$helper = $this->plugin('url');
echo $helper('album', array('action'=>'add'));
// case.1
echo $this->url('album', array('action'=>'add')); // basepath 视图插件
$helper = $this->plugin('basepath');
$helper->setCurrent($model); ?>

ZendFramework-2.4 源代码 - 关于MVC - View层 - 视图渲染器、视图插件管理器的更多相关文章

  1. ZendFramework-2.4 源代码 - 关于MVC - View层 - 控制器返回值

    <?php class ReturnController extends AbstractActionController { public function returnAction() { ...

  2. ZendFramework-2.4 源代码 - 关于MVC - View层 - 在模板内渲染子模板

    <?php // 方式一: // 1.在模板内直接编写如下内容即可 $viewModel = new ViewModel(); $viewModel->setTemplate('album ...

  3. ZendFramework-2.4 源代码 - 关于MVC - Controller层

    // 1.控制器管理器 class ServiceManager implements ServiceLocatorInterface { public function __construct(Co ...

  4. 订单业务楼层化 view管理器和model管理器进行了model和view的全面封装处理 三端不得不在每个业务入口上线时约定好降级开关,于是代码中充满了各种各样的降级开关字段

    京东APP订单业务楼层化技术实践解密 原创 杜丹 留成 博侃 京东零售技术 2020-09-29 https://mp.weixin.qq.com/s/2oExMjh70Kyveiwh8wOBVA 用 ...

  5. ZendFramework-2.4 源代码 - 关于MVC - Model层类图

  6. ZendFramework-2.4 源代码 - 关于MVC - Model层

    所谓的谓词Predicate // ------ 所谓的谓词 ------ // 条件 case.3 $where = new \Zend\Db\Sql\Where(); $expression = ...

  7. spring mvc DispatcherServlet详解之四---视图渲染过程

    整个spring mvc的架构如下图所示: 现在来讲解DispatcherServletDispatcherServlet的最后一步:视图渲染.视图渲染的过程是在获取到ModelAndView后的过程 ...

  8. MVC+EF 随笔小计——NuGet程序包管理

    安装EF 打开 工具-库程序包管理器-程序包管理器控制台 输入 install-package entityframework 去MSDN上查看下EF的架构图:http://msdn.microsof ...

  9. 《ASP.NET MVC 5 破境之道》:第一境 ASP.Net MVC5项目初探 — 第三节:View层简单改造

    第一境 ASP.Net MVC5项目初探 — 第三节:View层简单改造 MVC默认模板的视觉设计从MVC1到MVC3都没有改变,比较陈旧了:在MVC4中做了升级,好看些,在不同的分辨率下,也能工作得 ...

随机推荐

  1. ubuntu tomcat https

    1.generate key use java key tool -storepass *** 2.sign certificate sudo keytool -export -alias ### - ...

  2. Python 魔术方法及调用方式

    魔术方法 调用方式 解释 __new__(cls [,...]) instance = MyClass(arg1, arg2) __new__ 在创建实例的时候被调用 __init__(self [, ...

  3. java多线程关键字volatile的使用

    java多线程关键字volatile的作用是表示多个线程对这个变量共享. 如果是只读的就可以直接用,写数据的时候要注意同步问题. 例子: package com.ming.thread.volatil ...

  4. 操作手册_MyEclipse

    前言 假 如 你 的 人 生 有 理 想,那 么 就 一 定 要 去 追,不 管 你 现 在 的 理 想 在 别 人 看 来是 多 么 的 可 笑 , 你 也 不 用 在 乎 , 人 生 蹉 跎 几  ...

  5. 内核的执行头程序head.S

    功能 定义data段和text段 重新手动初始化gdt表, idt表, tss表结构 初始化页表和页目录 --> 页目录的数据放在一个页表中 在页目录中, 其实地址为0x1000, 初始化页目录 ...

  6. 使用Foxfly.Net读取STEP文件

    Foxfly.Net是具备基本的几何建模和CAD文件读取功能.本文主要介绍读取STP/STEP文件的使用方法. 1.初始化 项目中引入FoxflyNet.dll程序集,在Program.cs中初始化建 ...

  7. servlet传值到servlet传值问题

    今天在项目中遇到一个问题:中期项目自己做的新闻部分NewsPagerSortservlet传值时,正确答案如下 if(title!=""){ resp.sendRedirect(& ...

  8. POJ3233Matrix Power Series(矩阵快速幂)

    题意 题目链接 给出$n \times n$的矩阵$A$,求$\sum_{i = 1}^k A^i $,每个元素对$m$取模 Sol 考虑直接分治 当$k$为奇数时 $\sum_{i = 1}^k A ...

  9. agc016C - +/- Rectangle(构造 智商题)

    题意 题目链接 Sol 我的思路:直接按样例一的方法构造,若$h \times w$完全被$N \times M$包含显然无解 emm,wa了一发之后发现有反例:1 4 1 3 我的会输出[1 1 - ...

  10. 使用CreateProcess函数运行其他程序

    为了便于控制通过脚本运行的程序,可以使用win32process模块中的CreateProcess()函数创建一个运行相应程序的进程.其函数原型如下.CreateProcess(appName, co ...