forked from leonhelmus/coding-standard-phpstorm
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathM2-phtml.xml
More file actions
21 lines (21 loc) · 1.23 KB
/
M2-phtml.xml
File metadata and controls
21 lines (21 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<templateSet group="M2-phtml">
<template name="m2if" value="<?php if ($condition$): ?> $END$ <?php endif; ?>" description="if statement" toReformat="false" toShortenFQNames="true">
<variable name="condition" expression="" defaultValue="" alwaysStopAt="true" />
<context>
<option name="HTML_TEXT" value="true" />
</context>
</template>
<template name="m2ifelse" value="<?php if ($condition$): ?> $END$ <?php else: ?> <?php endif; ?>" description="if else statement" toReformat="false" toShortenFQNames="true">
<variable name="condition" expression="" defaultValue="" alwaysStopAt="true" />
<context>
<option name="HTML" value="true" />
</context>
</template>
<template name="m2elseif" value="<?php if ($condition$): ?> $END$ <?php elseif($condition2$): ?> <?php endif; ?>" description="elseif statement" toReformat="false" toShortenFQNames="true">
<variable name="condition" expression="" defaultValue="" alwaysStopAt="true" />
<variable name="condition2" expression="" defaultValue="" alwaysStopAt="true" />
<context>
<option name="HTML" value="true" />
</context>
</template>
</templateSet>