aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorVjacheslav Trushkin <arty@phpbb.com>2012-03-15 21:09:49 +0200
committerVjacheslav Trushkin <arty@phpbb.com>2012-03-15 21:09:49 +0200
commit1ce4d4c4fc482f33fd061c4f718b4f8c3656dbdb (patch)
treec6b9a4cffc5ee453b1d97d38cba7e9d785464eaf /phpBB/includes
parent5b149e93b91ab1cb09e2e9c8c3c00312973c1c5e (diff)
downloadforums-1ce4d4c4fc482f33fd061c4f718b4f8c3656dbdb.tar
forums-1ce4d4c4fc482f33fd061c4f718b4f8c3656dbdb.tar.gz
forums-1ce4d4c4fc482f33fd061c4f718b4f8c3656dbdb.tar.bz2
forums-1ce4d4c4fc482f33fd061c4f718b4f8c3656dbdb.tar.xz
forums-1ce4d4c4fc482f33fd061c4f718b4f8c3656dbdb.zip
[feature/merging-style-components] Changing style class
Moving functions that deal with styles from template to style class, updating docblocks PHPBB3-10632
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/style/style.php75
1 files changed, 70 insertions, 5 deletions
diff --git a/phpBB/includes/style/style.php b/phpBB/includes/style/style.php
index b134b4f76f..5dee0a138c 100644
--- a/phpBB/includes/style/style.php
+++ b/phpBB/includes/style/style.php
@@ -28,11 +28,6 @@ class phpbb_style
public $template;
/**
- * @var string Path of the cache directory for the template
- */
- public $cachepath = '';
-
- /**
* @var string phpBB root path
*/
private $phpbb_root_path;
@@ -86,4 +81,74 @@ class phpbb_style
}
$this->template = new phpbb_style_template($this->phpbb_root_path, $this->phpEx, $this->config, $this->user, $this->locator, $this->provider);
}
+
+ /**
+ * Set style location based on (current) user's chosen style.
+ */
+ public function set_style()
+ {
+ $style_name = $this->user->theme['style_path'];
+ $style_dirs = ($this->user->theme['style_parent_id']) ? array_reverse(explode('/', $this->user->theme['style_parent_tree'])) : array();
+ $paths = array($this->get_style_path($style_name));
+ foreach ($style_dirs as $dir)
+ {
+ $paths[] = $this->get_style_path($dir);
+ }
+
+ return $this->set_custom_style($style_name, $paths);
+ }
+
+ /**
+ * Set custom style location (able to use directory outside of phpBB).
+ *
+ * Note: Templates are still compiled to phpBB's cache directory.
+ *
+ * @param string $name Name of style, used for cache prefix. Examples: "admin", "prosilver"
+ * @param array or string $paths Array of style paths, relative to current root directory
+ * @param string $template_path Path to templates, relative to style directory. False if path should not be changed.
+ */
+ public function set_custom_style($name, $paths, $template_path = false)
+ {
+ if (is_string($paths))
+ {
+ $paths = array($paths);
+ }
+
+ $this->provider->set_styles($paths);
+ $this->locator->set_paths($this->provider);
+ $this->locator->set_main_style($this->provider->get_main_style_path());
+
+ $this->template->cachepath = $this->phpbb_root_path . 'cache/tpl_' . str_replace('_', '-', $name) . '_';
+
+ $this->template->context = new phpbb_style_template_context();
+
+ if ($template_path !== false)
+ {
+ $this->template->template_path = $this->locator->template_path = $template_path;
+ }
+
+ return true;
+ }
+
+ /**
+ * Get location of style directory for specific style_path
+ *
+ * @param string $path Style path, such as "prosilver"
+ * @return string Path to style directory, relative to current path
+ */
+ public function get_style_path($path)
+ {
+ return $this->phpbb_root_path . 'styles/' . $path;
+ }
+
+ /**
+ * Defines a prefix to use for style paths in extensions
+ *
+ * @param string $ext_dir_prefix The prefix including trailing slash
+ * @return null
+ */
+ public function set_ext_dir_prefix($ext_dir_prefix)
+ {
+ $this->provider->set_ext_dir_prefix($ext_dir_prefix);
+ }
}