is_mimetype()) continue; $derivative = new DerivativeImage(ImageStdParams::get_custom(9999, $conf['GThumb']['height']), $src_image); if (@filemtime($derivative->get_path())===false) { $urls[] = $derivative->get_url().$uid; } if (count($urls)>=$max_urls && !$is_last) break; } if ($is_last) { $start_id = 0; } }while (count($urls)<$max_urls && $start_id); $ret = array(); if ($start_id) { $ret['next_page']=$start_id; } $ret['urls']=$urls; echo json_encode($ret); exit(); } global $template, $conf, $page; load_language('plugin.lang', GTHUMB_PATH); include(dirname(__FILE__).'/config_default.inc.php'); $params = $conf['GThumb']; // Delete cache if (isset($_POST['cachedelete'])) { check_pwg_token(); delete_gthumb_cache($conf['GThumb']['height']); delete_gthumb_cache($conf['GThumb']['height'] * 2 + $conf['GThumb']['margin']); redirect('admin.php?page=plugin-GThumb'); } // Save configuration if (isset($_POST['submit'])) { $params = array( 'height' => $_POST['height'], 'margin' => $_POST['margin'], 'nb_image_page' => $_POST['nb_image_page'], 'big_thumb' => !empty($_POST['big_thumb']), 'cache_big_thumb' => !empty($_POST['cache_big_thumb']), 'method' => $_POST['method'], ); if (!is_numeric($params['height'])) { array_push($page['errors'], 'Thumbnails max height must be an integer.'); } if (!is_numeric($params['margin'])) { array_push($page['errors'], 'Margin between thumbnails must be an integer.'); } if (!is_numeric($params['nb_image_page'])) { array_push($page['errors'], 'Number of photos per page must be an integer.'); } if ($params['height'] != $conf['GThumb']['height']) { delete_gthumb_cache($conf['GThumb']['height']); } elseif ($params['margin'] != $conf['GThumb']['margin']) { delete_gthumb_cache($conf['GThumb']['height'] * 2 + $conf['GThumb']['margin']); } if (empty($page['errors'])) { $query = ' UPDATE ' . CONFIG_TABLE . ' SET value="' . addslashes(serialize($params)) . '" WHERE param="GThumb" LIMIT 1'; pwg_query($query); array_push($page['infos'], l10n('Information data registered in database')); } } // Configuration du template $template->assign( array( 'HEIGHT' => $params['height'], 'MARGIN' => $params['margin'], 'NB_IMAGE_PAGE' => $params['nb_image_page'], 'BIG_THUMB' => $params['big_thumb'], 'CACHE_BIG_THUMB' => $params['cache_big_thumb'], 'METHOD' => $params['method'], 'PWG_TOKEN' => get_pwg_token(), ) ); $template->set_filenames(array('plugin_admin_content' => dirname(__FILE__) . '/template/admin.tpl')); $template->assign_var_from_handle('ADMIN_CONTENT', 'plugin_admin_content'); ?>