Created
March 23, 2018 06:48
-
-
Save VSeryoga/cb250bac14feaecb178a696cb0420a88 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
<? | |
//component_epilog | |
ob_start();?> | |
наа что заменяем | |
<?$retrunStr = @ob_get_contents(); | |
ob_get_clean(); | |
echo str_replace('#MORE_PHOTO#', $retrunStr, $templateData["ALL_HTML"]); | |
//template | |
ob_start();?> | |
в чем заменяем | |
<?$templateData['ALL_HTML'] = @ob_get_contents(); | |
ob_get_clean(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment