Skip to content

Instantly share code, notes, and snippets.

@yama
Last active July 26, 2017 00:17
Show Gist options
  • Save yama/b12560bb560cd87105bc1b38e256f2c5 to your computer and use it in GitHub Desktop.
Save yama/b12560bb560cd87105bc1b38e256f2c5 to your computer and use it in GitHub Desktop.
if文
<@IF:[*template:is(0)*] >
    Template is blank
<@ELSE>
    Template is [*template:templatename*]
    <@IF:[*description:isNotEmpty*]>
        [*description*]
    <@ENDIF>
<@ENDIF>

上記のようなifブロックがあった場合、

<?php if($modx->isTrue('[*template:is(0)*]')): ?>
    Template is blank
<?php else: ?>
    Template is [*template:templatename*]
    <?php if($modx->isTrue('[*description:isNotEmpty*]')): ?>
        [*description*]
    <?php endif; ?>
<?php endif; ?>

こう変換してevalする案を検討中

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment