aboutsummaryrefslogtreecommitdiff
path: root/views/default/layout/objects/image_block.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/layout/objects/image_block.php')
-rw-r--r--views/default/layout/objects/image_block.php52
1 files changed, 0 insertions, 52 deletions
diff --git a/views/default/layout/objects/image_block.php b/views/default/layout/objects/image_block.php
deleted file mode 100644
index a7f480aef..000000000
--- a/views/default/layout/objects/image_block.php
+++ /dev/null
@@ -1,52 +0,0 @@
-<?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_extract('body', $vars, '');
-$image = elgg_extract('image', $vars, '');
-$alt_image = elgg_extract('image_alt', $vars, '');
-
-$class = 'elgg-image-block';
-$additional_class = elgg_extract('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) {
- $image = "<div class=\"elgg-image\">$image</div>";
-}
-
-if ($alt_image) {
- $alt_image = "<div class=\"elgg-image-alt\">$alt_image</div>";
-}
-
-echo <<<HTML
-<div class="$class clearfix" $id>
- $image$alt_image$body
-</div>
-HTML;