Tipp: Using a regular object with the template engine (eZSimpleObject)

Author Message

Björn Dieding@xrow.de

Tuesday 11 May 2004 7:32:58 am

Usage:

    $tpl->setVariable( 'skin', eZSkin::instance($skinid) );
    $tpl->setVariable( 'error', new eZError("This is a error") );

The classes

<?php
include_once('extension/siteskins/classes/ezsimpleobject.php');
class eZSkin extends eZSimpleObject
{
	function eZSkin($id=null)
	{
		$this->co = &eZContentObject::fetch($id);
		$treenodep = &eZContentObjectTreeNode::fetch($this->co->mainParentNodeID());
		$this->parent = &eZContentObject::fetch($treenodep->attribute('contentobject_id'));
		$com = &$this->co->attribute('data_map');
		$pam =&$this->parent->attribute('data_map');
		$this->id = $com["id"]->content();
		$this->extension = $pam["extension"]->content();
	}
	function &instance($id)
	{
		return parent::instance($id,"ezskin");
	}
	var $co;
	var $parent;
	var $extension;
	var $id;
}
include_once('extension/siteskins/classes/ezsimpleobject.php');
class eZError extends eZSimpleObject
{
	function eZError( $text, $type=null,$number=null)
	{
		if ($text)
			$this->text=$text;
		if ($type)
			$this->error['type']=$type;
		if ($number)
			$this->error['number']=$number;
	}
	function &instance($id)
	{
		return parent::instance($id,"ezerror");
	}
	var $text;
	var $error;
}

/*! \file ezsimpleobject.php
*/

/*!
  \class eZSimpleObject ezsimpleobject.php
  \brief The class eZSimpleObject provide could be the super class of any regular object 
 		 you can also parse this Object to the tempalte engine
*/
class eZSimpleObject
{
	function eZSimpleObject()
	{
	}
	function hasattribute($name)
	{
		$classname = get_class($this);
		$vars = get_class_vars($classname);
		if ( array_key_exists($name,$vars) )
			return true;
		else
			return false;
	}
	function & attribute($name)
	{
		return $this->$name;
	}
	function &instance($keys = null,$classname=__CLASS__)
	{
		if (is_array($keys) and count($keys))
		{
			$keystring=implode("", $array);
		}
		else if ($keys and (is_string($keys) or is_integer($keys) ) )
		{
			$keystring="$keys";
		}
		else
		{
			$keystring="";
		}
		$impl =& $GLOBALS[__CLASS__."GlobalInstance".$keystring];
        $class =& get_class( $impl );
        if ( $class != __CLASS__ )
        {
            $impl = new $classname( $keys );
            $GLOBALS[__CLASS__."GlobalInstance".$keystring]=$impl;
        }
        return $impl;
	}
}
?>

Looking for a new job? http://www.xrow.com/xrow-GmbH/Jobs
Looking for hosting? http://hostingezpublish.com
-----------------------------------------------------------------------------
GMT +01:00 Hannover, Germany
Web: http://www.xrow.com/

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 19 2025 00:14:09
Script start
Timing: Jan 19 2025 00:14:09
Module start 'layout'
Timing: Jan 19 2025 00:14:09
Module start 'content'
Timing: Jan 19 2025 00:14:10
Module end 'content'
Timing: Jan 19 2025 00:14:10
Script end

Main resources:

Total runtime1.1893 sec
Peak memory usage4,096.0000 KB
Database Queries46

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0075 589.3203152.6563
Module start 'layout' 0.00750.0034 741.976639.4922
Module start 'content' 0.01101.1766 781.4688476.2969
Module end 'content' 1.18760.0017 1,257.765612.0938
Script end 1.1893  1,269.8594 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00340.2864160.0002
Check MTime0.00130.1128160.0001
Mysql Total
Database connection0.00130.106910.0013
Mysqli_queries1.142196.0270460.0248
Looping result0.00050.0440440.0000
Template Total1.149996.720.5749
Template load0.00380.319320.0019
Template processing1.146196.360820.5730
Template load and register function0.00010.009510.0001
states
state_id_array0.00110.096610.0011
state_identifier_array0.00250.209420.0012
Override
Cache load0.00180.151080.0002
Sytem overhead
Fetch class attribute can translate value0.00090.073110.0009
Fetch class attribute name0.00090.075420.0004
XML
Image XML parsing0.00050.038810.0005
class_abstraction
Instantiating content class attribute0.00000.000220.0000
General
dbfile0.00170.1449160.0001
String conversion0.00000.000640.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
1content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
1content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
2content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
2content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 8
 Number of unique templates used: 6

Time used to render debug report: 0.0001 secs