Caution: This documentation is for eZ Publish legacy, from version 3.x to 6.x.
For 5.x documentation covering Platform see eZ Documentation Center, for difference between legacy and Platform see 5.x Architecture overview.

object

Summary

Fetches a content object (specified by an ID number).

Usage

fetch( 'content', 'object', hash( 'object_id', object_id ) )

Parameters

NameTypeDescriptionRequired
object_id integer The ID number of the target object. Yes.

Returns

An ezcontentobject object or FALSE.

Description

This function fetches a content object. The ID number of the object must be specified using the "object_id" parameter. The function returns an ezcontentobject object. It will return FALSE if a non-existing ID number is provided or if an error occurs.

Examples

Example 1

{def $object=fetch( 'content', 'object', hash( 'object_id', 13 ) )}
{$object.name|wash}

Outputs the name of object number 13.

Balazs Halasy (06/02/2004 12:09 pm)

Balazs Halasy (29/04/2005 8:54 am)


Comments

  • Parameter object_version?

    Parameter object_version is occur in some system templates.