1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 11:50:30 +02:00

Issue #1538 Improved method documentation example.

This commit is contained in:
Cameron
2019-05-04 14:50:02 -07:00
parent 08756f8040
commit 1d3d67ca0f

View File

@@ -2799,8 +2799,8 @@ class e107
* *
* Example usage: <code>e107::getTemplate('user', 'short_start');</code> * Example usage: <code>e107::getTemplate('user', 'short_start');</code>
* Will search for: * Will search for:
* - e107_themes/current_frontend_theme/templates/user_template.php (if $override is true) * - e107_themes/{current_frontend_theme}/templates/user_template.php (if $override is true) - this is the default.
* - e107_themes/templates/user_template.php (if override not found or $override is false) * - e107_core/templates/user_template.php (if override not found or $override is false)
* - $USER_TEMPLATE array which contains all user templates * - $USER_TEMPLATE array which contains all user templates
* - $USER_TEMPLATE['short_start'] (if key is null, $USER_TEMPLATE will be returned) * - $USER_TEMPLATE['short_start'] (if key is null, $USER_TEMPLATE will be returned)
* *