* @package Mammut * @subpackage JoomlaCompart */ class plgSystemMammut extends JPlugin { var $_cache = null; function plgSystemMammut(& $subject, $config) { parent::__construct($subject, $config); // we only need to update the include path and import the basic libary $incpath = get_include_path().PATH_SEPARATOR.dirname(__FILE__).DS.'..'.DS.'..'.DS.'libraries'; set_include_path($incpath); define('USE_MAMMUT', true); require_once('Mammut/lib.mammut.php'); } }