In the PageCode function in design.inc.php, I have to admit I don't understand this line of code, and was hoping someone would explain it.
$echo($oTemplate, 'page_' . $_page['name_index'] . '.html');
It looks like $echo is a variable function, separate from the standard php 'echo' function. But a text search of the source code didn't return any assignment of the variable to some function, or anything that defines it. The only instances of $echo are the two in PageCode.
Inserting a command like:
echo $echo
returns lambda_19 which I thought would be a function, but a search for lambda_19 doesn't return any results.
So I don't understand what this line of code is doing.
Any help would be much appreciated. Thanks.
- Brian