Source for file pnuser.php
Documentation is available at pnuser.php
* Zikula Application Framework
* @copyright (c) 2002, Zikula Development Team
* @link http://www.zikula.org
* @version $Id: pnuser.php 24342 2008-06-06 12:03:14Z markwest $
* @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
* @package Zikula_Value_Addons
* This function is the default function, and is called whenever the module is
* initiated without defining arguments. As such it can be used for a number
* of things, but most commonly it either just shows the module menu and
* returns or calls whatever the module designer feels should be the default
* function (often this is the view() function)
* @link http://www.markwest.me.uk
* @param 'startnum' the starting article numbner
* @return string HTML string
// Get news items from the news API
array('startnum' => $startnum,
'numitems' => pnModGetVar('AvantGo', 'itemsperpage')));
$pnRender->assign('storyitems', $items);
echo $pnRender->fetch('avantgo_user_main.htm');
|