aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/style
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11012] Normalize $phpEx member vars to $php_extIgor Wiedler2012-07-211-3/+3
| | | | PHPBB3-11012
* [ticket/10829] $style_name -> $style_path in style class.Oleg Pudeyev2012-06-111-3/+3
| | | | | | Here the style path is taken and the variable name should be $style_path. PHPBB3-10829
* [ticket/10743] Renaming user->themeVjacheslav Trushkin2012-06-111-2/+2
| | | | | | Renaming user->theme to user->style PHPBB3-10743
* [ticket/10756] Fixing variable declarations in style and template classesVjacheslav Trushkin2012-04-191-5/+10
| | | | | | Fixing variable declaration, removing function from template locator that does not belong there PHPBB3-10756
* [ticket/10756] Renaming phpbb_style_template to phpbb_templateVjacheslav Trushkin2012-04-192-512/+3
| | | | | | Renaming phpbb_style_template to phpbb_template PHPBB3-10756
* [ticket/10756] Removing path provider from template classVjacheslav Trushkin2012-04-191-9/+1
| | | | | | Removing path provider from template class because it is not used by template class PHPBB3-10756
* [ticket/10756] Creating locator interfaceVjacheslav Trushkin2012-04-192-5/+5
| | | | | | Creating locator interface to be used in template class PHPBB3-10756
* [ticket/10756] Renaming template classesVjacheslav Trushkin2012-04-192-11/+11
| | | | | | Renaming template classes from phpbb_style_template_ to phpbb_template_ PHPBB3-10756
* [ticket/10756] Moving template classesVjacheslav Trushkin2012-04-196-1670/+0
| | | | | | Moving template class files from includes/style/ to includes/template/ and removing template_ file prefix PHPBB3-10756
* [ticket/10783] Correctly add assets_version config var to includejs urlsNils Adermann2012-04-132-6/+7
| | | | PHPBB3-10783
* [ticket/10783] Added ?assets_version to assets.Callum Macrae2012-04-111-1/+3
| | | | PHPBB3-10783
* [ticket/10665] Changing template->_js_include to publicVjacheslav Trushkin2012-04-011-1/+1
| | | | | | Changing template->_js_include to public function PHPBB3-10665
* [ticket/10665] Moving filter parameters to one arrayVjacheslav Trushkin2012-04-011-28/+6
| | | | | | Moving filter parameters to one array in template compiler class PHPBB3-10665
* [ticket/10665] INCLUDEJS template tagVjacheslav Trushkin2012-04-013-5/+109
| | | | | | Implementing INLCUDEJS template tag in style classes PHPBB3-10665
* [ticket/10733] Adding functions to locate resourcesVjacheslav Trushkin2012-04-013-0/+115
| | | | | | Adding $style->locate() and $template->locate() functions PHPBB3-10733
* [ticket/10733] Extending get_source_file_for_handleVjacheslav Trushkin2012-03-311-4/+27
| | | | | | Extending resource locator's function get_source_file_for_handle to find all files. This modified function should be used by template events to locate all templates before compiling them. PHPBB3-10733
* [ticket/10735] Changing locator paths structureVjacheslav Trushkin2012-03-315-81/+48
| | | | | | Changing locator paths to 2 dimensional array PHPBB3-10735
* [feature/merging-style-components] Moving template initialization out of styleVjacheslav Trushkin2012-03-311-3/+4
| | | | | | Moving template initialization out of style constructor PHPBB3-10632
* [feature/merging-style-components] Initializing locator and provider separatelyVjacheslav Trushkin2012-03-311-10/+6
| | | | | | Moving locator and path provider initialization out of style class PHPBB3-10632
* [feature/merging-style-components] Changing style classVjacheslav Trushkin2012-03-151-5/+70
| | | | | | Moving functions that deal with styles from template to style class, updating docblocks PHPBB3-10632
* [feature/merging-style-components] Changing template classVjacheslav Trushkin2012-03-151-65/+11
| | | | | | Removing functions that are now handled by phpbb_style class, allowing to write $context, updating docblocks PHPBB3-10632
* [feature/merging-style-components] Changing resource locatorVjacheslav Trushkin2012-03-151-27/+40
| | | | | | Changing "template" to "style" in all functions that deal with styles, changing error messages, updating docblocks PHPBB3-10632
* [feature/merging-style-components] Changing path providerVjacheslav Trushkin2012-03-153-83/+45
| | | | | | Changing set_templates() to set_style() and removing second parameter, changing get_main_template_path() to get_main_style_path(), removing template_root_for_style(), updating docblocks PHPBB3-10632
* [feature/merging-style-components] Renaming style locatorVjacheslav Trushkin2012-03-153-5/+5
| | | | | | Renaming style locator to style resource locator PHPBB3-10632
* [feature/merging-style-components] Creating style classVjacheslav Trushkin2012-03-151-0/+89
| | | | | | Creating phpbb_style class, changing template initialization to style initialization PHPBB3-10632
* [feature/merging-style-components] Implementing unlimited parent templatesVjacheslav Trushkin2012-03-141-5/+14
| | | | | | Implementing possibility of unlimited levels of parent templates. Paths are stored in style_parent_tree, entries are separated by / PHPBB3-10632
* [feature/merging-style-components] Renaming template classesVjacheslav Trushkin2012-03-1411-36/+36
| | | | | | Changing template classes prefixes from phpbb_template to phpbb_style (for classes that will work with styles) or phpbb_style_template (for classes that are specific to templates) PHPBB3-10632
* [feature/merging-style-components] Moving template classes to styleVjacheslav Trushkin2012-03-1411-0/+2611
Moving includes/template/ to includes/style/, adding template_ prefix to classes that deal only with templates PHPBB3-10632