summaryrefslogtreecommitdiff
path: root/classes/Design.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-06-16 19:17:37 -0700
committerZach Copley <zach@controlyourself.ca>2009-06-16 19:17:37 -0700
commitbc1f877f6e84929b7f2722f57858cfad8508fea5 (patch)
tree21189eaaff2e2347a4124eda94db07aa3668c5e2 /classes/Design.php
parentab10db9bd10abbc02a44d5d36d68626530d2694e (diff)
Design settings now save and displays backgrounds
Diffstat (limited to 'classes/Design.php')
-rw-r--r--classes/Design.php63
1 files changed, 56 insertions, 7 deletions
diff --git a/classes/Design.php b/classes/Design.php
index 8bb527761..f5c87b489 100644
--- a/classes/Design.php
+++ b/classes/Design.php
@@ -64,12 +64,61 @@ class Design extends Memcached_DataObject
__FILE__);
}
- $out->element('style', array('type' => 'text/css'),
- 'html, body { background-color: #' . $bgcolor->hexValue() . '} '."\n".
- '#content, #site_nav_local_views .current a { background-color: #' .
- $ccolor->hexValue() . '} '."\n".
- '#aside_primary { background-color: #'. $sbcolor->hexValue() .'} '."\n".
- 'html body { color: #'. $tcolor->hexValue() .'} '."\n".
- 'a { color: #' . $lcolor->hexValue() . '} '."\n");
+ $css = 'html, body { background-color: #' . $bgcolor->hexValue() . '} ' . "\n";
+ $css .= '#content, #site_nav_local_views .current a { background-color: #';
+ $css .= $ccolor->hexValue() . '} '."\n";
+ $css .= '#aside_primary { background-color: #'. $sbcolor->hexValue() . '} ' . "\n";
+ $css .= 'html body { color: #'. $tcolor->hexValue() . '} '. "\n";
+ $css .= 'a { color: #' . $lcolor->hexValue() . '} ' . "\n";
+
+ if (!empty($this->backgroundimage)) {
+
+ $css .= 'body { background-image:url(' .
+ Design::url($this->backgroundimage) .
+ '); background-repeat:no-repeat; }' . "\n";
+ }
+
+ $out->element('style', array('type' => 'text/css'), $css);
+
+ }
+
+ static function filename($id, $extension, $extra=null)
+ {
+ return $id . (($extra) ? ('-' . $extra) : '') . $extension;
+ }
+
+ static function path($filename)
+ {
+ $dir = common_config('background', 'dir');
+
+ if ($dir[strlen($dir)-1] != '/') {
+ $dir .= '/';
+ }
+
+ return $dir . $filename;
}
+
+ static function url($filename)
+ {
+ $path = common_config('background', 'path');
+
+ if ($path[strlen($path)-1] != '/') {
+ $path .= '/';
+ }
+
+ if ($path[0] != '/') {
+ $path = '/'.$path;
+ }
+
+ $server = common_config('background', 'server');
+
+ if (empty($server)) {
+ $server = common_config('site', 'server');
+ }
+
+ // XXX: protocol
+
+ return 'http://'.$server.$path.$filename;
+ }
+
}