Source for file pninit.php
Documentation is available at pninit.php
* Zikula Application Framework
* @copyright (c) 2001, Zikula Development Team
* @link http://www.zikula.org
* @version $Id: pninit.php 24342 2008-06-06 12:03:14Z markwest $
* @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
* @package Zikula_System_Modules
* initialise the AuthPN module
* This function is only ever called once during the lifetime of a particular
* This function MUST exist in the pninit file for a module
* @return bool true on success, false otherwise
// Set up an initial value for a module variable. Note that all module
// variables should be initialised with some value in this way rather
// than just left blank, this helps the user-side code and means that
// there doesn't need to be a check to see if the variable is set in
// the rest of the code as it always will be
// Initialisation successful
* upgrade the AuthPN module from an old version
* This function can be called multiple times
* This function MUST exist in the pninit file for a module
* @return bool true on success, false otherwise
* delete the AuthPN module
* This function is only ever called once during the lifetime of a particular
* This function MUST exist in the pninit file for a module
* @return bool true on success, false otherwise
// Delete any module variables
|