Файл: filters/f_contents/filter.php
Строк: 17
<?php
/******************************************************************************/
// //
// InstantCMS v1.10 //
// http://www.instantcms.ru/ //
// //
// written by InstantCMS Team, 2007-2012 //
// produced by InstantSoft, (www.instantsoft.ru) //
// //
// LICENSED BY GNU/GPL v2 //
// //
/******************************************************************************/
function f_contents(&$text){
//REPLACE PAGE TITLES
$regex = '/{(СТРАНИЦА=)s*(.*?)}/ui';
$matches = array();
preg_match_all( $regex, $text, $matches, PREG_SET_ORDER );
$GLOBALS['pt'] = array();
foreach ($matches as $elm) {
$elm[0] = str_replace('{', '', $elm[0]);
$elm[0] = str_replace('}', '', $elm[0]);
mb_parse_str( $elm[0], $args );
$title=@$args['СТРАНИЦА'];
if ($title){
$GLOBALS['pt'][] = $title;
}
$text = str_replace('{СТРАНИЦА='.$title.'}', '', $text );
}
return true;
}
?>