вопрос
Как данный код прикрутить в BLOCK.PRO?
if(($row['comm_num']>4 AND $row['comm_num']<21) OR (substr($row['comm_num'],-2)>4 AND substr($row['comm_num'],-2)<21)) $comm_txt = " комментов";
elseif(substr($row['comm_num'],-1)==1) $comm_txt = " коммент";
elseif(substr($row['comm_num'],-1)>1 AND substr($row['comm_num'],-1)<5) $comm_txt = " коммента";
else $comm_txt = " комментов";
$tpl->set("{comments-text}",$row['comm_num'].$comm_txt);
if(($row['news_read']>4 AND $row['news_read']<21) OR (substr($row['news_read'],-2)>4 AND substr($row['news_read'],-2)<21)) $news_txt = " просмотров";
elseif(substr($row['news_read'],-1)==1) $news_txt = " просмотр";
elseif(substr($row['news_read'],-1)>1 AND substr($row['news_read'],-1)<5) $news_txt = " просмотра";
else $news_txt = " просмотров";
$tpl->set("{views-text}",$row['news_read'].$news_txt);
https://gist.github.com/7055414
надеюсь объяснять не нужно ничего)
надеюсь объяснять не нужно ничего)