add_url_tokens($key); $key = implode('_',$key); if ( @self::$custom[$key] < time() - 24*3600) { self::$custom[$key] = time(); self::save(); } return $params; } static function get_watermark() { return self::$watermark; } static function load_from_db() { global $conf; $arr = @unserialize($conf['derivatives']); if (false!==$arr) { self::$type_map = $arr['d']; self::$watermark = @$arr['w']; if (!self::$watermark) self::$watermark = new WatermarkParams(); self::$custom = @$arr['c']; if (!self::$custom) self::$custom = array(); } else { self::$watermark = new WatermarkParams(); self::$type_map = self::get_default_sizes(); } self::build_maps(); } static function set_watermark($watermark) { self::$watermark = $watermark; } static function set_and_save($map) { self::$type_map = $map; self::save(); self::build_maps(); } static function save() { global $conf; $ser = serialize( array( 'd' => self::$type_map, 'w' => self::$watermark, 'c' => self::$custom, ) ); conf_update_param('derivatives', addslashes($ser) ); } static function get_default_sizes() { $arr = array( IMG_SQUARE => new DerivativeParams( SizingParams::square(120,120) ), IMG_THUMB => new DerivativeParams( SizingParams::classic(144,144) ), IMG_XXSMALL => new DerivativeParams( SizingParams::classic(240,240) ), IMG_XSMALL => new DerivativeParams( SizingParams::classic(432,324) ), IMG_SMALL => new DerivativeParams( SizingParams::classic(576,432) ), IMG_MEDIUM => new DerivativeParams( SizingParams::classic(792,594) ), IMG_LARGE => new DerivativeParams( SizingParams::classic(1008,756) ), IMG_XLARGE => new DerivativeParams( SizingParams::classic(1224,918) ), IMG_XXLARGE => new DerivativeParams( SizingParams::classic(1656,1242) ), ); foreach($arr as $params) { $params->last_mod_time = time(); } return $arr; } static function apply_global($params) { $params->use_watermark = !empty(self::$watermark->file) && (self::$watermark->min_size[0]<=$params->sizing->ideal_size[0] or self::$watermark->min_size[1]<=$params->sizing->ideal_size[1] ); } private static function build_maps() { foreach (self::$type_map as $type=>$params) { $params->type = $type; self::apply_global($params); } self::$all_type_map = self::$type_map; for ($i=0; $i=0; $j--) { $target = self::$all_types[$j]; if (isset(self::$type_map[$target])) { self::$all_type_map[$tocheck] = self::$type_map[$target]; self::$undefined_type_map[$tocheck] = $target; break; } } } } } } ?>