Last active
January 11, 2020 12:05
-
-
Save flayder/6150cbaea50622d5ec201284918e2a1f 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
<?$this->SetViewTarget('search');?> | |
<!--code--> | |
<?$this->EndViewTarget();?> | |
//Метод вывода участка кода | |
<?$APPLICATION->ShowViewContent('search');?> | |
//another example | |
<?ob_start(); | |
echo 'SomeText'; | |
$out1 = ob_get_contents(); | |
ob_end_clean(); | |
$APPLICATION->AddViewContent('block_id',$out1); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment