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.

recent

Summary

Fetches nodes where the current user recently published something.

Usage

fetch( 'content', 'recent' )

Returns

An array of ezcontentbrowserecent objects or FALSE.

Description

This function fetches nodes under which the current user recently has published something. The function returns an array of ezcontentbrowserecent objects. If there are no nodes under which the current user has published something, the function will return FALSE.

Examples

Example 1

{def $recent=fetch( 'content', 'recent' )}
{foreach $recent as $element}
    {$element.name}
{/foreach}

Outputs the names of the nodes under which the current user recently published something.

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

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


Comments

There are no comments.