aliroPageNav Class Reference

Inheritance diagram for aliroPageNav:

mosPageNav

List of all members.

Public Member Functions

 __construct ($total, $limitstart, $limit)
 __get ($property)
 __call ($method, $args)

Protected Attributes

 $realPageNav = null


Detailed Description

Definition at line 48 of file aliroPageNav.php.


Constructor & Destructor Documentation

aliroPageNav::__construct ( total,
limitstart,
limit 
)

Definition at line 51 of file aliroPageNav.php.

References criticalInfo::getInstance().

00051                                                               {
00052         $info = criticalInfo::getInstance();
00053         if ($info->isAdmin) $this->realPageNav = new aliroAdminPageNav ($total, $limitstart, $limit);
00054         else $this->realPageNav = new aliroUserPageNav ($total, $limitstart, $limit);
00055     }


Member Function Documentation

aliroPageNav::__get ( property  ) 

Definition at line 57 of file aliroPageNav.php.

00057                                       {
00058         return $this->realPageNav->$property;
00059     }

aliroPageNav::__call ( method,
args 
)

Definition at line 61 of file aliroPageNav.php.

00061                                             {
00062         return call_user_func_array(array($this->realPageNav, $method), $args);
00063     }


Member Data Documentation

aliroPageNav::$realPageNav = null [protected]

Definition at line 49 of file aliroPageNav.php.


The documentation for this class was generated from the following file:

Generated on Thu Apr 17 13:03:30 2008 for ALIRO by  doxygen 1.5.5