Zikula_System_Modules
[ class tree: Zikula_System_Modules ] [ index: Zikula_System_Modules ] [ all elements ]

Source for file pninit.php

Documentation is available at pninit.php

  1. <?php
  2. /**
  3.  * Zikula Application Framework
  4.  *
  5.  * @copyright (c) 2001, Zikula Development Team
  6.  * @link http://www.zikula.org
  7.  * @version $Id: pninit.php 24342 2008-06-06 12:03:14Z markwest $
  8.  * @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
  9.  * @package Zikula_System_Modules
  10.  * @subpackage Errors
  11.  */
  12.  
  13. /**
  14.  * initialise the template module
  15.  * This function is only ever called once during the lifetime of a particular
  16.  * module instance
  17.  */
  18. function errors_init()
  19. {
  20.     // Initialisation successful
  21.     return true;
  22. }
  23.  
  24. /**
  25.  * upgrade the errors  module from an old version
  26.  * This function can be called multiple times
  27.  */
  28. function errors_upgrade($oldversion)
  29. {
  30.     // Update successful
  31.     return true;
  32. }
  33.  
  34. /**
  35.  * delete the errors module
  36.  * This function is only ever called once during the lifetime of a particular
  37.  * module instance
  38.  */
  39. function errors_delete()
  40. {
  41.     // Deletion successful
  42.     return true;
  43. }

Documentation generated on Fri, 18 Jul 2008 21:53:29 +0200 by phpDocumentor 1.4.1