if (isFree()) {
$url = 'http://monoray.net/products/6-open-real-estate';
$text = 'Powered by';
if (Yii::app()->language == 'ru' || Yii::app()->language == 'uk') {
$url = 'http://monoray.ru/products/6-open-real-estate';
$text = 'Работает на';
}
preg_match_all ('#<p class="slogan">(.*)</p>#isU', $output, $matches );
if ( isset( $matches[1][0] ) && !empty( $matches[1][0] ) ) {
$insert='<p style="text-align: center; margin: 0; padding: 0;">'.$text.' <a href="'.$url.'" target="_blank">Open Real Estate</a></p>';
$output=str_replace($matches[0][0], $matches[0][0].$insert, $output);
}
else {
$insert='<div class="footer"><p style="text-align: center; margin: 0; padding: 0;">'.$text.' <a href="'.$url.'" target="_blank">Open Real Estate</a></p></p></div>';
$output=str_replace('<div id="loading"', $insert.'<div id="loading"', $output);
}
unset($url);
unset($text);
unset($matches);
unset($insert);