API Documentation

Paginator/SerializableLimitIterator.php

Classes 
category
Zend
copyright
Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
license
http://framework.zend.com/license/new-bsd New BSD License
package
Zend_Paginator
version
$Id: SerializableLimitIterator.php 22636 2010-07-19 00:09:26Z ramon $
Classes
Zend_Paginator_SerializableLimitIterator

Description

Zend Framework

LICENSE

This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.

Zend_Paginator_SerializableLimitIterator

Extends from
LimitIterator
Implements
category
Zend
copyright
Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
license
http://framework.zend.com/license/new-bsd New BSD License
package
Zend_Paginator
Properties
$_offset
$_count
Methods
__construct
serialize
unserialize
offsetGet
offsetSet
offsetExists
offsetUnset

Description

Properties

$_count

int $_count = ''

Maximum number of elements to show or -1 for all

Details

$_count
int
visibility
private
default
final
false
static
false

$_offset

int $_offset = ''

Offset to first element

Details

$_offset
int
visibility
private
default
final
false
static
false

Methods

__construct

__construct( Iterator $it, int $offset = 0, int $count = 1 ) :

Construct a Zend_Paginator_SerializableLimitIterator

Arguments
$it
Iterator
Iterator to limit (must be serializable by un-/serialize)
$offset
int
Offset to first element
$count
int
Maximum number of elements to show or -1 for all
Details
visibility
public
final
false
static
false
see
LimitIterator::__construct

offsetExists

offsetExists( int $offset ) :

Determine if a value of Iterator is set and is not NULL

Arguments
$offset
int
Details
visibility
public
final
false
static
false

offsetGet

offsetGet( int $offset ) : mixed

Returns value of the Iterator

Arguments
$offset
int
Output
mixed
Details
visibility
public
final
false
static
false

offsetSet

offsetSet( int $offset, mixed $value ) :

Does nothing Required by the ArrayAccess implementation

Arguments
$offset
int
$value
mixed
Details
visibility
public
final
false
static
false

offsetUnset

offsetUnset( int $offset ) :

Does nothing Required by the ArrayAccess implementation

Arguments
$offset
int
Details
visibility
public
final
false
static
false

serialize

serialize( ) : string

Output
string
representation of the instance
Details
visibility
public
final
false
static
false

unserialize

unserialize( string $data ) :

Arguments
$data
string
representation of the instance
Details
visibility
public
final
false
static
false
Documentation was generated by DocBlox.