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.

draft_version_list

Summary

Fetches the drafts that belong to the current user.

Usage

fetch( 'content', 'draft_version_list',
       hash( [ 'offset', offset, ]
             [ 'limit',  limit   ] ) )

Parameters

NameTypeDescriptionRequired
offset integer The offset to start at. No.
limit integer The number of drafts/versions that should be fetched. No.

Returns

An array of ezcontentobjectversion objects or FALSE.

Description

This function fetches the drafts that belong to the current user. The optional parameters "offset" and "limit" can be used to limit the result. The function returns an array of ezcontentobjectversion objects. If no drafts can be found or if something goes wrong, the function returns FALSE.

Examples

Example 1

{def $drafts=fetch( 'content', 'draft_version_list' )}
 
{foreach $drafts as $draft}
    {$draft.id}: {$draft.name} <br />
{/foreach}

Outputs the ID numbers and the names of all drafts that belong to the current user.

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

Julia Shymova (19/04/2007 1:04 pm)

Balazs Halasy, Julia Shymova


Comments

There are no comments.