Class: AbstractConsumerUpdate

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

Class AbstractConsumerUpdate

Class Overview

This class is used as interface for Consumer Update Jobs!

Your class will be first instantiated, then the install($cid) method will be executed, with the ConsumerID as argment.

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

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

Information Tags:
Version:  $Id: AbstractConsumerUpdate.php,v 1.5 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
AbstractConsumerUpdate   AbstractConsumerUpdate()  
boolean   install()   Overwrite this method to perform your installation/update.

[ Top ]
Methods
Constructor AbstractConsumerUpdate  [line 43]

  AbstractConsumerUpdate AbstractConsumerUpdate( )



[ Top ]
install  [line 53]

  boolean install( int $cid  )

Overwrite this method to perform your installation/update.

Return an boolean, whether it was successful or not.

Parameters:
int   $cid:  the Consumer ID

API Tags:
Return:  the result
Abstract:  


[ Top ]