summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 35c4fd3)
raw | patch | inline | side by side (parent: 35c4fd3)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Sun, 28 Feb 2010 19:45:23 +0000 (19:45 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Sun, 28 Feb 2010 19:45:23 +0000 (19:45 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15775 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/functions.inc | patch | blob | history |
index 8609fab62e3f2236c7a81ea923b6bf1b1e3d5542..fd8252b1ff4e11c06ba8bf22bf764c4cd765e8fb 100644 (file)
return $result.$haystack;
}
+
+/* Return an image description using the path */
+function image($path, $label= null)
+{
+ // Bail out, if there's no style file
+ if(!session::global_is_set("img-styles")){
+
+ // Get theme
+ if (isset ($config)){
+ $theme= $config->get_cfg_value("theme", "default");
+ } else {
+ # For debuging - avoid that there's no theme set
+ die("config not set!");
+ $theme= "default";
+ }
+
+ if (!file_exists("$BASE_DIR/ihtml/themes/$theme/img.styles")){
+ die ("No img.style for this theme found!");
+ }
+
+ session::global_set('img-styles', unserialize(file_get_contents("$BASE_DIR/ihtml/themes/$theme/img.styles")));
+ }
+ $styles= session::global_get('img-styles');
+
+ $lbl= "";
+ if ($label) {
+ if (isset($styles["images/label-".$label.".png"])) {
+ $lbl= "<div style='".$styles["images/label-".$label.".png"]."'></div>";
+ } else {
+ die("Invalid label specified: $label\n");
+ }
+ }
+
+ return "<div class='img' style='".$styles[$path]."'>$lbl</div>";
+}
+
+
+
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>