contributions/confirmations/lib/interfaces/iconfirmationhandler.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Interface for all confirmation handlers to implement 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Confirmations 00007 */ 00008 interface IConfirmationHandler { 00009 /** 00010 * Confirm a Confirmation 00011 * 00012 * @return Status 00013 */ 00014 public function confirm(); 00015 00016 /** 00017 * Invoked when this confirmation is created 00018 * 00019 * @return Status 00020 */ 00021 public function created(); 00022 }