1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Elgg file widget view
- *
- * @package ElggFile
- */
- $num = $vars['entity']->num_display;
- $options = array(
- 'type' => 'object',
- 'subtype' => 'file',
- 'container_guid' => $vars['entity']->owner_guid,
- 'limit' => $num,
- 'full_view' => FALSE,
- 'pagination' => FALSE,
- 'distinct' => false,
- );
- $content = elgg_list_entities($options);
- echo $content;
- if ($content) {
- $url = "file/owner/" . elgg_get_page_owner_entity()->username;
- $more_link = elgg_view('output/url', array(
- 'href' => $url,
- 'text' => elgg_echo('file:more'),
- 'is_trusted' => true,
- ));
- echo "<span class=\"elgg-widget-more\">$more_link</span>";
- } else {
- echo elgg_echo('file:none');
- }
|