'pict_alt' => elgg_view('core/river/controls', array('item' => $item)),
'class' => 'elgg-river-item',
);
- return elgg_view('layout/objects/media', $vars);
+ return elgg_view('layout/objects/image_block', $vars);
}
/**
echo elgg_view('layout/objects/module', array('title' => $title, 'body' => $body));
}
/**
- * Wrapper function for the media display pattern.
+ * Wrapper function for the image block display pattern.
*
* Fixed width media on the side (image, icon, flash, etc.).
* Descriptive content filling the rest of the column.
*
- * This is a shortcut for {@elgg_view layout/objects/media}.
+ * This is a shortcut for {@elgg_view layout/objects/image_block}.
*
- * @param string $picture The icon and other information
+ * @param string $image The icon and other information
* @param string $body Description content
* @param string $vars Additional parameters for the view
*
* @return string
* @since 1.8.0
*/
-function elgg_view_media($picture, $body, $vars = array()) {
- $vars['pict'] = $picture;
+function elgg_view_image_block($image, $body, $vars = array()) {
+ $vars['image'] = $image;
$vars['body'] = $body;
- return elgg_view('layout/objects/media', $vars);
+ return elgg_view('layout/objects/image_block', $vars);
}
/**
* @param string $info Any information that needs to be displayed.
*
* @return string The HTML (etc) representing the listing
- * @deprecated 1.8 use elgg_view_media()
+ * @deprecated 1.8 use elgg_view_image_block()
*/
function elgg_view_listing($icon, $info) {
- elgg_deprecated_notice('elgg_view_listing deprecated by elgg_view_media', 1.8);
+ elgg_deprecated_notice('elgg_view_listing deprecated by elgg_view_image_block', 1.8);
return elgg_view('layout/objects/media', array('icon' => $icon, 'body' => $info));
}
</div>
HTML;
- $blog_info = elgg_view_media($owner_icon, $info);
+ $blog_info = elgg_view_image_block($owner_icon, $info);
echo <<<HTML
$header
</div>
HTML;
- echo elgg_view_media($owner_icon, $body);
+ echo elgg_view_image_block($owner_icon, $body);
}
'class' => 'elgg-river-item',
'id' => "river-entity-{$object->guid}",
);
- return elgg_view('layout/objects/media', $vars);
-/*
- if (isset($item->view)) {
- $object = get_entity($item->object_guid);
- $subject = get_entity($item->subject_guid);
- if (!$object || !$subject) {
- // probably means an entity is disabled
- return false;
- } else {
- if (elgg_view_exists($item->view)) {
- $body = elgg_view($item->view, array(
- 'item' => $item
- ));
- }
- }
- return elgg_view('river/item/wrapper', array(
- 'item' => $item,
- 'body' => $body
- ));
- }
- return false;
- *
- */
+ return elgg_view('layout/objects/image_block', $vars);
}
</p>
HTML;
- echo elgg_view_media($commenter_icon, $body);
+ echo elgg_view_image_block($commenter_icon, $body);
} else {
// brief view
</span>
HTML;
- echo elgg_view_media($commenter_icon, $body);
+ echo elgg_view_image_block($commenter_icon, $body);
}
padding: 3px 0;
}
-.elgg-media .elgg-pict {
+.elgg-media .elgg-image {
float: left;
margin-right: 5px;
}
-.elgg-media .elgg-pict-alt {
+.elgg-media .elgg-image.elgg-alt {
float: right;
margin-left: 5px;
}
<?php
/**
- * Elgg media element
+ * 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 |
- * | picture | body | picture |
+ * | image | body | image |
* | block | block | block |
* | | | (optional)|
* ---------------------------------------------------------------
*
* @uses $vars['body'] HTML content of the body block
- * @uses $vars['pict'] HTML content of the picture block
- * @uses $vars['pict_alt'] HTML content of the alternate picture 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, '');
-$pict_block = elgg_get_array_value('pict', $vars, '');
-$alt_pict_block = elgg_get_array_value('pict_alt', $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, '');
$body = "<div class=\"elgg-body\">$body</div>";
-if ($pict_block) {
- $pict_block = "<div class=\"elgg-pict\">$pict_block</div>";
+if ($image_block) {
+ $image_block = "<div class=\"elgg-image\">$image_block</div>";
}
-if ($alt_pict_block) {
- $alt_pict_block = "<div class=\"elgg-pict-alt\">$alt_pict_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>
- $pict_block$alt_pict_block$body
+ $image_block$alt_image_block$body
</div>
HTML;