_prefix => correct DB prefix for ASP databases * wd_asl()->tables => table names * wd_asl()->db => DB manager * wd_asl()->options => array of default option arrays * wd_asl()->o => alias of wd_asl()->options * wd_asl()->instances => array of search instances and data * wd_asl()->init => initialization object * wd_asl()->manager => main manager object */ $wd_asl = new WD_ASL_Globals(); if ( !function_exists("wd_asl") ) { /** * Easy access of the global variable reference * * @return WD_ASL_Globals */ function wd_asl() { global $wd_asl; return $wd_asl; } } // Initialize the plugin $wd_asl->manager = WD_ASL_Manager::getInstance();