This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/core/trigger.inc.php
2011-05-03 09:49:01 +10:00

58 lines
1.3 KiB
PHP

<?php
/**
* AgileBill - Open Billing Software
*
* This body of work is free software; you can redistribute it and/or
* modify it under the terms of the Open AgileBill License
* License as published at http://www.agileco.com/agilebill/license1-4.txt
*
* Originally authored by Tony Landis, AgileBill LLC
*
* Recent modifications by Deon George
*
* @author Deon George <deonATleenooksDOTnet>
* @copyright 2009 Deon George
* @link http://osb.leenooks.net
*
* @link http://www.agileco.com/
* @copyright 2004-2008 Agileco, LLC.
* @license http://www.agileco.com/agilebill/license1-4.txt
* @author Tony Landis <tony@agileco.com>
* @package AgileBill
* @subpackage Core
*/
/**
* The main AgileBill CORE Trigger Class
*
* @package AgileBill
* @subpackage Core
*/
class CORE_trigger {
public function trigger($trigger,$type,$VAR) {
if ($type) {
# Do success trigger(s)
if (isset($trigger['success']))
$this->run_triggers($trigger['success']);
} else {
# Do failure trigger(s)
if (isset($trigger['failure']))
$this->run_triggers($trigger['failure']);
}
}
# Run the trigger(s):
private function run_triggers($trigger) {
global $C_method;
foreach (explode(',',$trigger) as $details) {
$tss = explode(':',$details);
if (count($tss)==2)
$C_method->exe($tss[0],$tss[1]);
}
}
}
?>