summaryrefslogtreecommitdiff
path: root/classes/Design.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-06-16 22:18:25 -0700
committerZach Copley <zach@controlyourself.ca>2009-06-16 22:18:25 -0700
commitd1ae3176b638a8342f0d3cfb4ac071623c639575 (patch)
treec979d87869ae0d2af028d2f1c6c44f9c17b6bd6e /classes/Design.php
parentbc66149e6fb3a8a5c1854699de8e6e9db1369bad (diff)
Enable tiling of background imgs for Designs
Diffstat (limited to 'classes/Design.php')
-rw-r--r--classes/Design.php25
1 files changed, 14 insertions, 11 deletions
diff --git a/classes/Design.php b/classes/Design.php
index acc94d196..4ea176677 100644
--- a/classes/Design.php
+++ b/classes/Design.php
@@ -41,7 +41,7 @@ class Design extends Memcached_DataObject
public $textcolor; // int(4)
public $linkcolor; // int(4)
public $backgroundimage; // varchar(255)
- public $tile; // tinyint(1)
+ public $tile; // tinyint(1)
/* Static get */
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Design',$k,$v); }
@@ -64,23 +64,26 @@ class Design extends Memcached_DataObject
common_log(LOG_ERR, "Unable to create color for design $id.",
__FILE__);
}
-
+
$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";
+
+ $repeat = ($this->tile) ? 'background-repeat:repeat;' :
+ 'background-repeat:no-repeat;';
+
+ $css .= 'body { background-image:url(' .
+ Design::url($this->backgroundimage) .
+ '); ' . $repeat . ' }' . "\n";
}
-
+
$out->element('style', array('type' => 'text/css'), $css);
-
+
}
static function filename($id, $extension, $extra=null)
@@ -98,7 +101,7 @@ class Design extends Memcached_DataObject
return $dir . $filename;
}
-
+
static function url($filename)
{
$path = common_config('background', 'path');
@@ -121,5 +124,5 @@ class Design extends Memcached_DataObject
return 'http://'.$server.$path.$filename;
}
-
+
}