вопрос
Не работает параметр "limit="x" в теге {full-stоry}
Тег используется в shrotstory.tpl, у меня dle 10.6
Использовал метод от VITNET Здесь!
Отдельно тег {full-stоry} работает. Но при добавлении {full-stоry limit="x"} выводит название тега.
Помогите Гуру! Как решить эту простую задачу?
вот код из шорт show.short.php
Тег используется в shrotstory.tpl, у меня dle 10.6
Использовал метод от VITNET Здесь!
Отдельно тег {full-stоry} работает. Но при добавлении {full-stоry limit="x"} выводит название тега.
Помогите Гуру! Как решить эту простую задачу?
вот код из шорт show.short.php
$row['full_story'] = stripslashes($row['full_story']);
// out this tags "{image-full-x}"
if( stripos ( $tpl->copy_template, "{image-full-" ) !== false ) {
$images = array();
preg_match_all('/(img|src)=("|\')[^"\'>]+/i', $row['full_story'], $media);
$data = preg_replace('/(img|src)("|\'|="|=\')(.*)/i',"$3",$media[0]);
foreach($data as $url) {
$info = pathinfo($url);
if( isset($info['extension']) ) {
$info['extension'] = strtolower($info['extension']);
if( ($info['extension'] == 'jpg') || ($info['extension'] == 'jpeg') || ($info['extension'] == 'gif') || ($info['extension'] == 'png') ) array_push($images, $url);
}
}
if( count($images) ) {
$i_count = 0;
foreach($images as $url) {
$i_count++;
$tpl->copy_template = str_replace( '{image-full-' . $i_count . '}', $url, $tpl->copy_template );
$tpl->copy_template = str_replace( '[image-full-' . $i_count . ']', "", $tpl->copy_template );
$tpl->copy_template = str_replace( '[/image-full-'. $i_count . ']', "", $tpl->copy_template );
}
}
$tpl->copy_template = preg_replace( "#\[image-full-(.+?)\](.+?)\[/image-full-(.+?)\]#is", "", $tpl->copy_template );
$tpl->copy_template = preg_replace( "#\\{image-full-(.+?)\\}#i", "{THEME}/dleimages/no_image.jpg", $tpl->copy_template );
}
// out this tags "{image-full-x}"
// out this tags "{full-story limit="x"}"
if( preg_match( "#\\{full-story limit=['\"](.+?)['\"]\\}#i", $tpl->copy_template, $matches ) ) {
$count = intval($matches[1]);
$row['full-story'] = str_replace( "</p><p>", " ", $row['full_story'] );
$row['full-story'] = strip_tags( $row['full-story'], "<br>" );
$row['full-story'] = trim(str_replace( "<br>", " ", str_replace( "<br />", " ", str_replace( "\n", " ", str_replace( "\r", "", $row['full-story'] ) ) ) ));
if( $count AND dle_strlen( $row['full-story'], $config['charset'] ) > $count ) {
$row['full-story'] = dle_substr( $row['full-story'], 0, $count, $config['charset'] );
if( ($temp_dmax = dle_strrpos( $row['full-story'], ' ', $config['charset'] )) ) $row['full-story'] = dle_substr( $row['full-story'], 0, $temp_dmax, $config['charset'] );
}
$tpl->set( $matches[0], $row['full-story'] );
} else {
$tpl->set( '{full-story}', $row['full_story'] );
}
// out this tags "{full-story limit=x}"