Thread: Plugin System
View Single Post
Old 04-01-2008, 12:07 PM   #9 (permalink)
Tanax
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default

Quote:
Originally Posted by Tanax View Post
A question on this subject, is this possible?

php Code:
/**
||||||||||||||||||||||||||||||||||||||||||
|||| @author Tanax
|||| @copyright 2008
||||||||||||||||||||||||||||||||||||||||||
**/


    class TANAXIA_PLUGIN_HOOK {
       
        public static $db;
        public static $plugin;
       
        public static function setDatabase($db) {
           
            self::$db = $db;
           
        }
       
        public static function loadPlugin($name) {
           
            self::$plugin = new $name(self::$db);
           
            return self::$plugin;
           
        }
       
    }
Nvm.
It worked
__________________
Tanax is offline  
Reply With Quote