function showThumbnail($imageFileName=”, $width=”, $height=”, $cwidth=”, $cheight=”) { $cfg = new Zend_Config_Ini(APPLICATION_PATH.’/configs/application.ini’, ‘production’); $path = $cfg->resources->frontController->imageupload->path; $publicpath = $cfg->resources->frontController->imageupload->publicpath; $pi = pathinfo($imageFileName); $filename = $pi['filename']; $ext = $pi['extension']; $thumbname = $filename.’-’.$width.’X’.$height.’.’.$ext; $fspath = APPLICATION_PATH.’/..’.$path.’/’.$imageFileName; $fspathThumb = [...]