registerFunction( 'onPrepareContent', 'botLegacyBots' ); /** * Process any legacy bots in the /mambots directory * * THIS FILE CAN BE **SAFELY REMOVED** IF YOU HAVE NO LEGACY MAMBOTS * @param object A content object * @param int A bit-wise mask of options * @param int The page number */ function botLegacyBots( $published, &$row, &$params, $page=0 ) { global $mosConfig_absolute_path; // check whether mambot has been unpublished if ( !$published ) { return true; } // process any legacy bots $bots = mosReadDirectory( "$mosConfig_absolute_path/mambots", "\.php$" ); sort( $bots ); foreach ($bots as $bot) { require $mosConfig_absolute_path ."/mambots/$bot"; } } ?>