phpOpenTracker/phpOpenTracker/LoggingEngine Plugin.php,1.11,1.12
Sebastian Bergmann <[email protected]>
| Newsgroups | gmane.comp.web.phpopentracker.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/phpopencounter/phpOpenTracker/phpOpenTracker/LoggingEngine In directory sc8-pr-cvs1:/tmp/cvs-serv16743/phpOpenTracker/LoggingEngine Modified Files: Plugin.php Log Message: HEAD is 2.0.0-dev now. Index: Plugin.php =================================================================== RCS file: /cvsroot/phpopencounter/phpOpenTracker/phpOpenTracker/LoggingEngine/Plugin.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Plugin.php 13 Oct 2003 03:11:12 -0000 1.11 --- Plugin.php 22 Nov 2003 08:47:44 -0000 1.12 *************** *** 15,82 **** // ! /** ! * Base Class for phpOpenTracker LoggingEngine plugins ! * ! * @author Sebastian Bergmann <[email protected]> ! * @version $Revision$ ! * @since phpOpenTracker 1.0.0 ! */ ! class phpOpenTracker_LoggingEngine_Plugin { ! /** ! * Configuration ! * ! * @var array $config ! */ ! var $config = array(); ! ! /** ! * Container ! * ! * @var array $container ! */ ! var $container = array(); ! ! /** ! * DB ! * ! * @var object $db ! */ ! var $db; ! ! /** ! * Parameters ! * ! * @var array $parameters ! */ ! var $parameters = array(); ! ! /** ! * Constructor. ! * ! * @param array $parameters ! * @access public ! */ ! function phpOpenTracker_LoggingEngine_Plugin($parameters) { ! $this->config = &phpOpenTracker_Config::getConfig(); ! $this->container = &phpOpenTracker_Container::getInstance(); ! $this->db = &phpOpenTracker_DB::getInstance(); ! $this->parameters = $parameters; ! } ! ! /** ! * @return boolean ! * @access public ! */ ! function pre() { ! return true; ! } ! ! /** ! * @return array ! * @access public ! */ ! function post() { ! return array(); ! } } --- 15,19 ---- // ! abstract class phpOpenTracker_LoggingEngine_Plugin { } ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/