Class: AbstractSystemUpdate

Source Location: /CORE/system/classes/updates/AbstractSystemUpdate.php

Class AbstractSystemUpdate

Class Overview

This class is used as interface for all System Updates.

Your class will be first instantiated, then the install() method will be executed.

Located in /CORE/system/classes/updates/AbstractSystemUpdate.php [line 41]

AbstractUpdate
   |
   --AbstractSystemUpdate
Author(s):
  • Kevin Papst
API Tags:
Abstract:  

Information Tags:
Version:  $Id: AbstractSystemUpdate.php,v 1.4 2008/09/16 18:25:58 kpapst Exp $
Copyright:  Copyright (C) Kevin Papst
License:  GNU Public License

Methods

[ Top ]
Inherited Properties, Constants, and Methods
Method Summary
AbstractSystemUpdate   AbstractSystemUpdate()  
boolean   install()   Overwrite this method to perform your installation/update.

[ Top ]
Methods
Constructor AbstractSystemUpdate  [line 44]

  AbstractSystemUpdate AbstractSystemUpdate( )



[ Top ]
install  [line 56]

  boolean install( )

Overwrite this method to perform your installation/update.

Return an boolean, indicating if the installation it was successful or not.

If you encounter an error, use the method $this->addError($message) to log that error.


API Tags:
Return:  the result
Abstract:  


[ Top ]