0

Can anyone tell me why this call {plugin call='video.template_block_entry_1'} is made in phpfox\module\video\template\default\block\entry.html.php file?

thor
  • 21,418
  • 31
  • 87
  • 173
Cool Coder
  • 13
  • 3

1 Answers1

0

That is a hook, it allow other module can insert their code to this file. Example, in other module, we can create a new file name: video.template_block_entry_1.php in module/[module_name]/include/plugin/ with contain:

<?php echo "Hello world";

More text hello world will include to entry.html.php

Trung Ngon
  • 51
  • 1