Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1.     "Template foreach": {
  2.         "prefix": "tplforeach",
  3.         "body": [
  4.             "<?php foreach($${1:arResult} as $${2:key} => $${3:arItem}): ?>",
  5.             "\t$4",
  6.             "<?php endforeach; ?>",
  7.         ],
  8.         "description": "Foreach for php template"
  9.     },
  10.     "Template if": {
  11.         "prefix": "tplif",
  12.         "body": [
  13.             "<?php if($1): ?>",
  14.             "\t$2",
  15.             "<?php endif; ?>",
  16.         ],
  17.         "description": "If for php template"
  18.     },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement