From 1c50bb4d0365fd893aa90c810d527cb37e630b93 Mon Sep 17 00:00:00 2001 From: patdenice Date: Wed, 14 Mar 2012 08:19:25 +0000 Subject: Automaticaly set better derivative params for mobile theme according to screen size. git-svn-id: http://piwigo.org/svn/trunk@13545 68402e56-0260-453c-a942-63ccdbb3a9ee --- themes/smartpocket/themeconf.inc.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'themes/smartpocket/themeconf.inc.php') diff --git a/themes/smartpocket/themeconf.inc.php b/themes/smartpocket/themeconf.inc.php index 2dd950c7d..7cedbc21b 100644 --- a/themes/smartpocket/themeconf.inc.php +++ b/themes/smartpocket/themeconf.inc.php @@ -12,6 +12,10 @@ $themeconf = array( 'mobile' => true, ); +// Redirect if page is not compatible with mobile theme +if (!in_array(script_basename(), array('index', 'register', 'profile', 'identification'))) + redirect(duplicate_index_url()); + //Retrive all pictures on thumbnails page add_event_handler('loc_index_thumbnails_selection', 'sp_select_all_thumbnails'); @@ -24,4 +28,23 @@ function sp_select_all_thumbnails($selection) return $page['items']; } +// Get better derive parameters for screen size +if (!empty($_COOKIE['screen_size'])) +{ + $screen_size = explode('x', $_COOKIE['screen_size']); + $derivative_params = new ImageStdParams; + $derivative_params->load_from_db(); + $type = IMG_LARGE; + + foreach ($derivative_params->get_all_type_map() as $type => $map) + { + if (max($map->sizing->ideal_size) >= max($screen_size) and min($map->sizing->ideal_size) >= min($screen_size)) + break; + } + pwg_set_session_var('sp_picture_deriv', $type); +} + +$this->assign('picture_derivative_params', ImageStdParams::get_by_type(pwg_get_session_var('sp_picture_deriv', IMG_LARGE))); +$this->assign('thumbnail_derivative_params', ImageStdParams::get_by_type(IMG_SQUARE)); + ?> -- cgit v1.2.3