aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template/template_test_case.php
Commit message (Collapse)AuthorAgeFilesLines
...
* [feature/extension-manager] Refactoring the structure of extension providerNils Adermann2011-09-291-1/+1
| | | | PHPBB3-10323
* [feature/extension-manager] Add support for templates in extensions.Nils Adermann2011-09-291-1/+4
| | | | | | | | | | | | | | | | | | This commit adds a template path provider to separate the process of locating (cached) paths in extensions from the template engine. The locator is supplied with a list of paths from the path provider. Admin templates can now be created in ext/<ext>/adm/style/ and regular templates go into ext/<ext>/styles/<style>/template/. Extension templates override regular templates. So if an extension supplies a file with a name used in phpBB, the extension's file will be used. A side-effect of this commit: Locator and Provider are now able to deal with arbitrary levels of template inheritance. So we can expose this through phpbb_template if we choose to, and allow styles to inherit from inherited styles. PHPBB3-10323
* Merge branch 'develop-olympus' into developIgor Wiedler2011-09-051-2/+3
| | | | | | | | * develop-olympus: [ticket/10354] Include cache directory path in unwritable message. Conflicts: tests/template/template_test.php
* [ticket/10355] Correctly end output buffering in template tests.Oleg Pudeyev2011-09-051-2/+16
| | | | | | This code was copied verbatim from develop-olympus. PHPBB3-10355
* [feature/template-engine] Dependency inject locator into template.Oleg Pudeyev2011-08-091-1/+3
| | | | PHPBB3-9726
* [feature/template-engine] Remove $include_once argument of display()Igor Wiedler2011-07-101-1/+1
| | | | PHPBB3-9726
* [feature/template-engine] Refactor $config dependency out of the filterIgor Wiedler2011-07-101-6/+10
| | | | | | | | | | The template stream filter no longer depends on the $config global. Instead it uses a 'allow_php' param that is passed via stream_bucket_append's last argument. Tests also adjusted. PHPBB3-9726
* [feature/template-engine] Move template.php to includes/templateIgor Wiedler2011-07-101-1/+0
| | | | | | This allows making use of autoloading. PHPBB3-9726
* [feature/template-engine] Added a test for inclusion of php files from subdir.Oleg Pudeyev2011-05-141-0/+113
PHPBB3-9726