source: trunk/themes/smartpocket/themeconf.inc.php @ 21098

Last change on this file since 21098 was 21098, checked in by ddtddt, 11 years ago

[trunk] - theme - update Révision to 2.5.0

File size: 1.7 KB
Line 
1<?php
2/*
3Theme Name: Smart Pocket
4Version: 2.5.0
5Description: Mobile theme.
6Theme URI: http://piwigo.org/ext/extension_view.php?eid=599
7Author: P@t
8Author URI: http://piwigo.org
9*/
10
11$themeconf = array(
12  'mobile' => true,
13);
14
15// Redirect if page is not compatible with mobile theme
16if (!in_array(script_basename(), array('index', 'register', 'profile', 'identification', 'ws', 'admin')))
17  redirect(duplicate_index_url());
18
19//Retrive all pictures on thumbnails page
20add_event_handler('loc_index_thumbnails_selection', 'sp_select_all_thumbnails');
21
22function sp_select_all_thumbnails($selection)
23{
24  global $page, $template;
25
26  $template->assign('page_selection', array_flip($selection));
27
28  return $page['items'];
29}
30
31// Retrive all categories on thumbnails page
32add_event_handler('loc_end_index_category_thumbnails', 'sp_select_all_categories');
33
34function sp_select_all_categories($selection)
35{
36  global $tpl_thumbnails_var;
37  return $tpl_thumbnails_var;
38}
39
40// Get better derive parameters for screen size
41if (!empty($_COOKIE['screen_size']))
42{
43  $screen_size = explode('x', $_COOKIE['screen_size']);
44  $derivative_params = new ImageStdParams;
45  $derivative_params->load_from_db();
46  $type = IMG_LARGE;
47
48  foreach ($derivative_params->get_all_type_map() as $type => $map)
49  {
50    if (max($map->sizing->ideal_size) >= max($screen_size) and min($map->sizing->ideal_size) >= min($screen_size))
51      break;
52  }
53  pwg_set_session_var('sp_picture_deriv', $type);
54}
55
56$this->assign('picture_derivative_params', ImageStdParams::get_by_type(pwg_get_session_var('sp_picture_deriv', IMG_LARGE)));
57$this->assign('thumbnail_derivative_params', ImageStdParams::get_by_type(IMG_SQUARE));
58
59?>
Note: See TracBrowser for help on using the repository browser.