Your IP : 172.28.240.42


Current Path : /var/www/html/clients/kampol.e-nk.ru/OLD/mambots/content/
Upload File :
Current File : /var/www/html/clients/kampol.e-nk.ru/OLD/mambots/content/legacybots.php

<?php
defined( '_VALID_MOS' ) or die( 'Äîñòóï çàïðåùåí' );
$_MAMBOTS->registerFunction( 'onPrepareContent', 'botLegacyBots' );
function botLegacyBots( $published, &$row, &$params, $page=0 ) {
	global $mosConfig_absolute_path;
	if ( !$published ) {
		return true;
	}
	$bots = mosReadDirectory( "$mosConfig_absolute_path/mambots", "\.php$" );
	sort( $bots );
	foreach ($bots as $bot) {
		require $mosConfig_absolute_path ."/mambots/$bot";
	}
}
?>