123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?php
- /**
- * File renderer.
- *
- * @package ElggFile
- */
- $full = elgg_extract('full_view', $vars, FALSE);
- $file = elgg_extract('entity', $vars, FALSE);
- if (!$file) {
- return TRUE;
- }
- $owner = $file->getOwnerEntity();
- $container = $file->getContainerEntity();
- $categories = elgg_view('output/categories', $vars);
- $excerpt = elgg_get_excerpt($file->description);
- $mime = $file->mimetype;
- $base_type = $file->simpletype;
- $owner_link = elgg_view('output/url', array(
- 'href' => "file/owner/$owner->username",
- 'text' => $owner->name,
- 'is_trusted' => true,
- ));
- $author_text = elgg_echo('byline', array($owner_link));
- $date = elgg_view_friendly_time($file->time_created);
- $comments_count = $file->countComments();
- //only display if there are commments
- if ($comments_count != 0) {
- $text = elgg_echo("comments") . " ($comments_count)";
- $comments_link = elgg_view('output/url', array(
- 'href' => $file->getURL() . '#comments',
- 'text' => $text,
- 'is_trusted' => true,
- ));
- } else {
- $comments_link = '';
- }
- $metadata = elgg_view_menu('entity', array(
- 'entity' => $vars['entity'],
- 'handler' => 'file',
- 'sort_by' => 'priority',
- 'class' => 'elgg-menu-hz',
- ));
- $subtitle = "$author_text $date $comments_link $categories";
- // do not show the metadata and controls in widget view
- if (elgg_in_context('widgets')) {
- $metadata = '';
- }
- if ($full && !elgg_in_context('gallery')) {
- $text = elgg_view('output/longtext', array('value' => $file->description));
- $extra = '';
- if (elgg_view_exists("file/specialcontent/$mime")) {
- $extra = elgg_view("file/specialcontent/$mime", $vars);
- $text = '';
- } else if (elgg_view_exists("file/specialcontent/$base_type/default")) {
- $extra = elgg_view("file/specialcontent/$base_type/default", $vars);
- $text = '';
- }
- $params = array(
- 'entity' => $file,
- 'title' => false,
- 'metadata' => $metadata,
- 'subtitle' => $subtitle,
- );
- $params = $params + $vars;
- $summary = elgg_view('object/elements/summary', $params);
- $body = "$text $extra";
- $file_icon = elgg_view_entity_icon($file, 'small', array('href' => false));
- echo elgg_view('object/elements/full', array(
- 'entity' => $file,
- 'icon' => $file_icon,
- 'summary' => $summary,
- 'body' => $body,
- ));
- } elseif (elgg_in_context('gallery')) {
- echo '<div class="file-gallery-item">';
- echo "<h4>" . $file->title . "</h4>";
- echo elgg_view_entity_icon($file, 'medium');
- echo "<p class='subtitle'>$owner_link $date</p>";
- echo '</div>';
- } else {
- // brief view
- $file_icon = elgg_view_entity_icon($file, 'small');
- $params = array(
- 'entity' => $file,
- 'metadata' => $metadata,
- 'subtitle' => $subtitle,
- 'content' => $excerpt,
- );
- $params = $params + $vars;
- $list_body = elgg_view('object/elements/summary', $params);
- echo elgg_view_image_block($file_icon, $list_body);
- }
|