• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • Examples
  • File List

E:/E/GEAMP/www/openbiz/openbiz/others/Zend/View/Helper/HtmlPage.php

00001 <?php
00026 require_once 'Zend/View/Helper/HtmlObject.php';
00027 
00035 class Zend_View_Helper_HtmlPage extends Zend_View_Helper_HtmlObject
00036 {
00041     const TYPE = 'text/html';
00042 
00047     const ATTRIB_CLASSID  = 'clsid:25336920-03F9-11CF-8FD0-00AA00686F13';
00048 
00054     protected $_attribs = array('classid' => self::ATTRIB_CLASSID);
00055 
00065     public function htmlPage($data, array $attribs = array(), array $params = array(), $content = null)
00066     {
00067         // Attrs
00068         $attribs = array_merge($this->_attribs, $attribs);
00069 
00070         // Params
00071         $params = array_merge(array('data' => $data), $params);
00072 
00073         return $this->htmlObject($data, self::TYPE, $attribs, $params, $content);
00074     }
00075 }

Generated on Thu Apr 19 2012 17:01:18 for openbiz by  doxygen 1.7.2