Created
May 1, 2018 09:56
-
-
Save pavel-one/84cbe6a5548649468b13f18f6fa9a875 to your computer and use it in GitHub Desktop.
Нужные модификаторы для ms2
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': | |
$fenom->addModifier('round', function ($input) { | |
return round($input,1); | |
}); | |
$fenom->addModifier('format_price', function ($input) { | |
global $modx; | |
$miniShop2 = $modx->getService('miniShop2'); | |
return $miniShop2->formatPrice($input); | |
}); | |
break; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
а не лучше использовать use ?
$fenom->addModifier('format_price', function ($input) {
=>$fenom->addModifier('format_price', function ($input) use ($modx) {
=)