Skip to content

Instantly share code, notes, and snippets.

@VSeryoga
Created March 23, 2018 06:48
Show Gist options
  • Save VSeryoga/cb250bac14feaecb178a696cb0420a88 to your computer and use it in GitHub Desktop.
Save VSeryoga/cb250bac14feaecb178a696cb0420a88 to your computer and use it in GitHub Desktop.
Замена в шаблоне компонента битрикса (например. метки)
<?
//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