Created
September 15, 2017 13:27
-
-
Save Semdevmaster/9773e1aa91105f3a5a1e64d0cfb9def2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** @var modx $modx */ | |
| switch ($modx->event->name) { | |
| case 'pdoToolsOnFenomInit': | |
| /** @var Fenom $fenom */ | |
| $fenom->addModifier('modName', function ($input) use ($modx) { | |
| /** @var modx $modx */ | |
| //here your code | |
| return; | |
| }); | |
| break; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment