123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * List albums in a widget
- *
- * @author Cash Costello
- * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
- */
- $owner = elgg_get_page_owner_entity();
- $options = array(
- 'type' => 'object',
- 'subtype' => 'album',
- 'container_guid' => $owner->guid,
- 'limit' => $vars['entity']->num_display,
- 'full_view' => false,
- 'pagination' => false,
- );
- $content = elgg_list_entities($options);
- echo $content;
- if ($content) {
- $more_link = elgg_view('output/url', array(
- 'href' => "/photos/owner/" . $owner->username,
- 'text' => elgg_echo('link:view:all'),
- 'is_trusted' => true,
- ));
- echo "<span class=\"elgg-widget-more\">$more_link</span>";
- } else {
- echo elgg_echo('tidypics:widget:no_albums');
- }
|