aboutsummaryrefslogtreecommitdiffstats
path: root/themes/smartpocket/themeconf.inc.php
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2012-03-14 08:19:25 +0000
committerpatdenice <patdenice@piwigo.org>2012-03-14 08:19:25 +0000
commit1c50bb4d0365fd893aa90c810d527cb37e630b93 (patch)
tree14576dc9cce336e59429916fc3ca8917e6b9a71b /themes/smartpocket/themeconf.inc.php
parentf0d5c6c010ebf651ca6db8c35ef7124b8ca95369 (diff)
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
Diffstat (limited to 'themes/smartpocket/themeconf.inc.php')
-rw-r--r--themes/smartpocket/themeconf.inc.php23
1 files changed, 23 insertions, 0 deletions
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));
+
?>