blob: 2dd950c7d04daa421bfd292681ea334275fd808c (
plain)
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
|
<?php
/*
Theme Name: Smart Pocket
Version: 2.4.0
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,
);
//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'];
}
?>
|