1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
<?php
/*
Theme Name: Smart Pocket
Version: 2.5.1
Description: Mobile theme.
Theme URI: http://piwigo.org/ext/extension_view.php?eid=599
Author: P@t
Author URI: http://piwigo.org
*/
$themeconf = array(
'mobile' => true,
);
// Need upgrade?
global $conf;
include(PHPWG_THEMES_PATH.'smartpocket/admin/upgrade.inc.php');
// Redirect if page is not compatible with mobile theme
/*if (!in_array(script_basename(), array('index', 'register', 'profile', 'identification', 'ws', 'admin')))
redirect(duplicate_index_url());
*/
//Retrive all pictures on thumbnails page
add_event_handler('loc_index_thumbnails_selection', 'sp_select_all_thumbnails');
function sp_select_all_thumbnails($selection)
{
global $page, $template;
$template->assign('page_selection', array_flip($selection));
return $page['items'];
}
// Retrive all categories on thumbnails page
add_event_handler('loc_end_index_category_thumbnails', 'sp_select_all_categories');
function sp_select_all_categories($selection)
{
global $tpl_thumbnails_var;
return $tpl_thumbnails_var;
}
// Get better derive parameters for screen size
$type = IMG_LARGE;
if (!empty($_COOKIE['screen_size']))
{
$screen_size = explode('x', $_COOKIE['screen_size']);
$derivative_params = new ImageStdParams;
$derivative_params->load_from_db();
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;
}
}
$this->assign('picture_derivative_params', ImageStdParams::get_by_type($type));
$this->assign('thumbnail_derivative_params', ImageStdParams::get_by_type(IMG_SQUARE));
//------------------------------------------------------------- mobile version & theme config
add_event_handler('init', 'mobile_link');
function mobile_link()
{
global $template, $conf;
$config = unserialize( $conf['smartpocket'] );
$template->assign( 'smartpocket', $config );
if ( !empty($conf['mobile_theme']) && (get_device() != 'desktop' || mobile_theme()))
{
$template->assign(array(
'TOGGLE_MOBILE_THEME_URL' => add_url_params(duplicate_index_url(),array('mobile' => mobile_theme() ? 'false' : 'true')),
));
}
}
if ( !function_exists( 'add_menu_on_public_pages' ) ) {
if ( defined('IN_ADMIN') and IN_ADMIN ) return false;
add_event_handler('loc_after_page_header', 'add_menu_on_public_pages', 20);
function add_menu_on_public_pages() {
if ( function_exists( 'initialize_menu') ) return false; # The current page has already the menu
global $template, $page, $conf;
if ( isset($page['body_id']) and $page['body_id']=="thePicturePage" )
{
$template->set_filenames(array(
'add_menu_on_public_pages' => dirname(__FILE__) . '/template/add_menu_on_public_pages.tpl',
));
include_once(PHPWG_ROOT_PATH.'include/menubar.inc.php');
$template->parse('add_menu_on_public_pages');
}
}
}
?>
|