Here parts data for lost in file system/engine/controller.php.
if (file_exists(DIR_TEMPLATE . $this->template)) {
extract($this->data);
/* Here found header.tpl, media.tpl(my module),
column_left.tpl(this show my module), column_right.tpl,
language.tpl, footer.tpl */
ob_start();
/* Here found header.tpl, language.tpl, footer.tpl */
require(DIR_TEMPLATE . $this->template);
$this->output = ob_get_contents();
ob_end_clean();
}
Why might this be? I use a Opencart framework, which you can add new modules. Made module can be found in the controller/common/column_left.php
Appendix 3 hours later: I guess that this is due to the structure of Opencart Development. I imported across this problem is raised in a page that is different from OpenCart layout structure. Opencart front-page layout is of such
product/category = category.php file in the directory controller/product.
I have here, this kind of layout:
line/page/path = in file controller/line/page.php, this method called "path".
Is one of the more detailed information about the structure of OpenCart is a problem with that? And if because of what editing brings the problem is ignored? OpenCart original code is easy to modify vqMod board with the block when I know what should be changed.