| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 | 
							- <?php
 
- /**
 
-  * Most viewed images of last month
 
-  *
 
-  */
 
- // set up breadcrumbs
 
- elgg_push_breadcrumb(elgg_echo('photos'), 'photos/siteimagesall');
 
- elgg_push_breadcrumb(elgg_echo('tidypics:mostviewedlastmonth'));
 
- $offset = (int)get_input('offset', 0);
 
- $limit = (int)get_input('limit', 16);
 
- $start = strtotime("-1 months", mktime(0,0,0, date("m"), 1, date("Y")));
 
- $end = mktime(0,0,0,date("m"), 0, date("Y"));
 
- $options = array(
 
-         'type' => 'object',
 
-         'subtype' => 'image',
 
-         'limit' => $limit,
 
-         'offset' => $offset,
 
-         'annotation_name' => 'tp_view',
 
-         'calculation' => 'count',
 
-         'annotation_created_time_lower' => $start,
 
-         'annotation_created_time_upper' => $end,
 
-         'order_by' => 'annotation_calculation desc',
 
-         'full_view' => false,
 
-         'list_type' => 'gallery',
 
-         'gallery_class' => 'tidypics-gallery'
 
- );
 
- $result = elgg_list_entities_from_annotation_calculation($options);
 
- $title = elgg_echo('tidypics:mostviewedlastmonth');
 
- if (elgg_is_logged_in()) {
 
-         $logged_in_guid = elgg_get_logged_in_user_guid();
 
-         elgg_register_menu_item('title', array('name' => 'addphotos',
 
-                                                'href' => "ajax/view/photos/selectalbum/?owner_guid=" . $logged_in_guid,
 
-                                                'text' => elgg_echo("photos:addphotos"),
 
-                                                'link_class' => 'elgg-button elgg-button-action elgg-lightbox'));
 
- }
 
- // only show slideshow link if slideshow is enabled in plugin settings and there are images
 
- if (elgg_get_plugin_setting('slideshow', 'tidypics') && !empty($result)) {
 
-         $url = elgg_get_site_url() . "photos/mostviewedlastmonth?limit=64&offset=$offset&view=rss";
 
-         $url = elgg_format_url($url);
 
-         $slideshow_link = "javascript:PicLensLite.start({maxScale:0, feedUrl:'$url'})";
 
-         elgg_register_menu_item('title', array('name' => 'slideshow',
 
-                                                 'href' => $slideshow_link,
 
-                                                 'text' => "<img src=\"".elgg_get_site_url() ."mod/tidypics/graphics/slideshow.png\" alt=\"".elgg_echo('album:slideshow')."\">",
 
-                                                 'title' => elgg_echo('album:slideshow'),
 
-                                                 'link_class' => 'elgg-button elgg-button-action'));
 
- }
 
- if (!empty($result)) {
 
-         $area2 = $result;
 
- } else {
 
-         $area2 = elgg_echo('tidypics:mostviewedlastmonth:nosuccess');
 
- }
 
- $body = elgg_view_layout('content', array(
 
-         'filter_override' => '',
 
-         'content' => $area2,
 
-         'title' => $title,
 
-         'sidebar' => elgg_view('photos/sidebar', array('page' => 'all')),
 
- ));
 
- // Draw it
 
- echo elgg_view_page(elgg_echo('tidypics:mostviewedlastmonth'), $body);
 
 
  |