Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Smarty 0.33 KB | None | 0 0
  1. {$count = $category.products_count}
  2. {$is_first_form = $count % 10 == 1 && $count % 100 != 11}
  3. {$is_second_form = in_array($count % 10, [2, 3, 4]) && !in_array($count % 100, [12, 13, 14])}
  4.  
  5. {if $is_first_form}
  6.     {$category.fields[2].value}
  7. {elseif $is_second_form}
  8.     {$category.fields[3].value}
  9. {else}
  10.     {$category.fields[4].value}
  11. {/if}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement