diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-19 17:38:51 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-19 17:38:51 +0000 |
commit | 4457f3339d16619b14dc308757a1a826df491e95 (patch) | |
tree | 084ef6ac9390574608f96675d6ea8605691f5e5d /views/default/layout/objects/image_block.php | |
parent | 1f1cb260b0cde61056d7da32bc058969aeca5916 (diff) | |
download | elgg-4457f3339d16619b14dc308757a1a826df491e95.tar.gz elgg-4457f3339d16619b14dc308757a1a826df491e95.tar.bz2 |
changed name from media block to image block
git-svn-id: http://code.elgg.org/elgg/trunk@7682 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/layout/objects/image_block.php')
-rw-r--r-- | views/default/layout/objects/image_block.php | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/views/default/layout/objects/image_block.php b/views/default/layout/objects/image_block.php new file mode 100644 index 000000000..79f8db138 --- /dev/null +++ b/views/default/layout/objects/image_block.php @@ -0,0 +1,52 @@ +<?php +/** + * Elgg image block pattern + * + * Common pattern where there is an image, icon, media object to the left + * and a descriptive block of text to the right. + * + * --------------------------------------------------------------- + * | | | alt | + * | image | body | image | + * | block | block | block | + * | | | (optional)| + * --------------------------------------------------------------- + * + * @uses $vars['body'] HTML content of the body block + * @uses $vars['image'] HTML content of the image block + * @uses $vars['image_alt'] HTML content of the alternate image block + * @uses $vars['class'] Optional additional class for media element + * @uses $vars['id'] Optional id for the media element + */ + +$body = elgg_get_array_value('body', $vars, ''); +$image_block = elgg_get_array_value('image', $vars, ''); +$alt_image_block = elgg_get_array_value('image_alt', $vars, ''); + +$class = 'elgg-media'; +$additional_class = elgg_get_array_value('class', $vars, ''); +if ($additional_class) { + $class = "$class $additional_class"; +} + +$id = ''; +if (isset($vars['id'])) { + $id = "id=\"{$vars['id']}\""; +} + + +$body = "<div class=\"elgg-body\">$body</div>"; + +if ($image_block) { + $image_block = "<div class=\"elgg-image\">$image_block</div>"; +} + +if ($alt_image_block) { + $alt_image_block = "<div class=\"elgg-image elgg-alt\">$alt_image_block</div>"; +} + +echo <<<HTML +<div class="$class clearfix" $id> + $image_block$alt_image_block$body +</div> +HTML; |