summaryrefslogtreecommitdiff
path: root/modules/info/helpers/info_block.php
diff options
context:
space:
mode:
authorjamaa <jamaa@mzibo.net>2013-05-20 22:19:34 +0200
committerBharat Mediratta <bharat@menalto.com>2013-06-12 19:10:01 -0400
commit632285ee0c7d9b8aa89c1197739b5a521f9c5e9c (patch)
tree9d7c3766eb98b1d8f84c080850e88c4cca4affa9 /modules/info/helpers/info_block.php
parent47803a2d46df8f567639ba7f6d2afb63655afc19 (diff)
add the image size (in pixels) to the info module
adds a new variable "show_size", so had to increment the version number to 3
Diffstat (limited to 'modules/info/helpers/info_block.php')
-rw-r--r--modules/info/helpers/info_block.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/info/helpers/info_block.php b/modules/info/helpers/info_block.php
index 62aa0746..f4fe5a6e 100644
--- a/modules/info/helpers/info_block.php
+++ b/modules/info/helpers/info_block.php
@@ -72,6 +72,13 @@ class info_block_Core {
);
}
}
+ if (($theme->item->width && $theme->item->height) && module::get_var("info", "show_size")) {
+ $info["size"] = array(
+ "label" => t("Size:"),
+ "value" => $theme->item->width . " x " . $theme->item->height
+ );
+ }
+
$block->content->metadata = $info;
module::event("info_block_get_metadata", $block, $theme->item);