There is a variable
$content="texttexttexttexttext".$my_content->show_vars(); which replaces the {#content} tag inside the block div for displaying content.
<div class="lg-7">{#content}</div> The first part of "texttexttexttexttext" is displayed on the page inside this block, as it should be, and the rest of $ my_content-> show_vars () separately, outside this block, in the upper left corner. Variable $ my_content instance of the content_ class
class content_{ function show_vars(){ echo "<pre>"; var_dump($_GET); echo "</pre>"; } } The text through the variable is displayed normally, and $ my_content-> show_vars () does not want to be displayed in the div either with the text or separately. Why is that?