当前位置:首页 > CMS教程 > 其它CMS > 列表

Zend Framework自定义Helper类相关注意事项总结

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-14 10:08:42 浏览: 评论:0 

这篇文章主要介绍了Zend Framework自定义Helper类相关注意事项,总结分析了编写自定义Helper类的相关原则与实现技巧,需要的朋友可以参考下。

本文讲述了Zend Framework自定义Helper类相关注意事项,分享给大家供大家参考,具体如下:

编写自定义的Helper类

编写自定义的Helper类很容易,只要遵循以下几个原则即可:

① 类名必须是 Zend_View_Helper_*,*是helper的名称。例如,你在写一个名为“specialPurpose”的类,类名将至少是"SpecialPurpose",另外你还应该给类名加上前缀,建议将“View_Helper”作为前缀的一部份:“My_View_Helper_SpecialPurpose”。(注意大小写)你将需要将前缀(不包含下划线)传递给addHelperPath() 或 setHelperPath()。

② 类中必须有一个public的方法,该方法名与helper类名相同。这个方法将在你的模板调用"$this->specialPurpose()"时执行。在我们的“specialPurpose”例子中,相应的方法声明可以是 “public function specialPurpose()”。

③ 一般来说,Helper类不应该echo或print或有其它形式的输出。它只需要返回值就可以了。返回的数据应当被转义。

④ 类文件的命名应该是helper方法的名称,比如在"specialPurpose"例子中,文件要存为“SpecialPurpose.php”。

把helper类的文件放在你的helper路径下, Zend_View就会自动加载,实例化,持久化,并执行。

三点类文件名称,类名称,类中helper方法,保持某种程度上的一致。

贴代码:

两个helper,看清楚了,他们的不同啊。。。。。

version   zf 1.10

Bootstrap.php

  1. class Bootstrap extends Zend_Application_Bootstrap_Bootstrap { 
  2.   protected function _initDoctype() { 
  3.     $this->bootstrap ( 'view' ); 
  4.     $view = $this->getResource ( 'view' ); 
  5.     $view->doctype ( 'XHTML1_STRICT' ); 
  6.   } 
  7.   protected function _initView() { 
  8.     $view = new Zend_View (); 
  9.     $view->setEncoding ( 'UTF-8' ); 
  10.     $view->doctype ( 'XHTML1_STRICT' ); 
  11.     $view->addHelperPath('../application/views/helpers''My_View_Helper'); 
  12.     $viewRenderer = new Zend_Controller_Action_Helper_ViewRenderer(); 
  13.     Zend_Controller_Action_HelperBroker::addHelper($viewRenderer); 
  14.     $viewRenderer->setView($view); 
  15.     return $view
  16.   } 
  17. application/views/helpers 

Img.php:

  1. class Zend_View_Helper_Img extends Zend_View_Helper_Abstract 
  2.   public function img() 
  3.   { 
  4.     return "this is a img"
  5.   } 

TestHelper.php:

  1. class My_View_Helper_TestHelper extends Zend_View_Helper_Abstract 
  2.   public function testHelper() 
  3.   { 
  4.     return "this is a TestHelper"
  5.   } 

action中使用:

  1. <?php echo $this->doctype() ?> 
  2. <?php echo $this->img() ?> 
  3. <?php echo $this->testHelper() ?> 

附加内容,在initView中添加addHelperPath,可以改成采用加载application,ini文件配置项的方式把路径进行配置,如下:

  1. class Bootstrap extends Zend_Application_Bootstrap_Bootstrap { 
  2.  protected function _initDoctype() { 
  3.  $this->bootstrap ( 'view' ); 
  4.  $view = $this->getResource ( 'view' ); 
  5.  $view->doctype ( 'XHTML1_STRICT' ); 
  6.  } 
  7.  protected function _initView() { 
  8.  $view = new Zend_View (); 
  9.  $view->setEncoding ( 'UTF-8' ); 
  10.  $view->doctype ( 'XHTML1_STRICT' ); 
  11.  $options = $this->getOptions (); 
  12.  $viewOptions = $options ['resources']['view']['helperPath']; 
  13.  if (is_array ($viewOptions)) { 
  14.   foreach($viewOptions as $helperName =>$path
  15.   { 
  16.   $view->addHelperPath ( $path$helperName ); 
  17.   } 
  18.  } 
  19.  $viewRenderer = new Zend_Controller_Action_Helper_ViewRenderer (); 
  20.  Zend_Controller_Action_HelperBroker::addHelper ( $viewRenderer ); 
  21.  $viewRenderer->setView ( $view ); 
  22.  return $view
  23.  } 
  24.  
  25. [production] 
  26. phpSettings.display_startup_errors = 1 
  27. phpSettings.display_errors = 1 
  28. includePaths.library = APPLICATION_PATH "/../library" 
  29. bootstrap.path = APPLICATION_PATH "/Bootstrap.php" 
  30. bootstrap.class = "Bootstrap" 
  31. appnamespace = "Application" 
  32. resources.view[] = 
  33. resources.view.helperPath.My_View_Helper = "../application/views/helpers" 
  34. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers" 
  35. resources.frontController.params.displayExceptions = 1 
  36. [staging : production] 
  37. [testing : production] 
  38. phpSettings.display_startup_errors = 1 
  39. phpSettings.display_errors = 1 
  40. [development : production] 
  41. phpSettings.display_startup_errors = 1 
  42. phpSettings.display_errors = 1 
  43. resources.frontController.params.displayExceptions = 1

Tags: Framework Helper

分享到: