18 lines
374 B
PHP
18 lines
374 B
PHP
<?php
|
|
|
|
function smarty_modifier_items($value = 0)
|
|
{
|
|
$reminder = $value % 10;
|
|
if ($value === null || $reminder == 0 || $value == 0 || ($reminder >= 5 && $reminder <= 9) )
|
|
return 'çàïèñåé';
|
|
|
|
if ($reminder == 1)
|
|
return 'çàïèñü';
|
|
|
|
if ($reminder == 2 || $reminder == 3 || $reminder == 4)
|
|
return 'çàïèñè';
|
|
|
|
return 'çàïèñåé';
|
|
}
|
|
|
|
?>
|