diff options
| -rw-r--r-- | actions/avatar/crop.php | 9 | ||||
| -rw-r--r-- | engine/lib/views.php | 13 | ||||
| -rw-r--r-- | mod/groups/actions/groups/edit.php | 13 | 
3 files changed, 22 insertions, 13 deletions
| diff --git a/actions/avatar/crop.php b/actions/avatar/crop.php index 9c57530ae..39061fa2c 100644 --- a/actions/avatar/crop.php +++ b/actions/avatar/crop.php @@ -22,14 +22,7 @@ $filehandler->owner_guid = $owner->getGUID();  $filehandler->setFilename("profile/" . $owner->guid . "master" . ".jpg");  $filename = $filehandler->getFilenameOnFilestore(); -//@todo make this configurable? -$icon_sizes = array( -	'topbar' => array('w'=>16, 'h'=>16, 'square'=>TRUE, 'upscale'=>TRUE), -	'tiny' => array('w'=>25, 'h'=>25, 'square'=>TRUE, 'upscale'=>TRUE), -	'small' => array('w'=>40, 'h'=>40, 'square'=>TRUE, 'upscale'=>TRUE), -	'medium' => array('w'=>100, 'h'=>100, 'square'=>TRUE, 'upscale'=>TRUE), -	'large' => array('w'=>200, 'h'=>200, 'square'=>FALSE, 'upscale'=>FALSE) -); +$icon_sizes = elgg_get_config('icon_sizes');  // get the images and save their file handlers into an array  // so we can do clean up if one fails. diff --git a/engine/lib/views.php b/engine/lib/views.php index 070b59e37..e8cb20232 100644 --- a/engine/lib/views.php +++ b/engine/lib/views.php @@ -1617,6 +1617,19 @@ function elgg_views_boot() {  			elgg_register_viewtype($view);  		}  	} + +	// set default icon sizes - can be overridden in settings.php or with plugin +	if (!elgg_get_config('icon_sizes')) { +		$icon_sizes = array( +			'topbar' => array('w'=>16, 'h'=>16, 'square'=>TRUE, 'upscale'=>TRUE), +			'tiny' => array('w'=>25, 'h'=>25, 'square'=>TRUE, 'upscale'=>TRUE), +			'small' => array('w'=>40, 'h'=>40, 'square'=>TRUE, 'upscale'=>TRUE), +			'medium' => array('w'=>100, 'h'=>100, 'square'=>TRUE, 'upscale'=>TRUE), +			'large' => array('w'=>200, 'h'=>200, 'square'=>FALSE, 'upscale'=>FALSE), +			'master' => array('w'=>550, 'h'=>550, 'square'=>FALSE, 'upscale'=>FALSE), +		); +		elgg_set_config('icon_sizes', $icon_sizes); +	}  }  elgg_register_event_handler('boot', 'system', 'elgg_views_boot', 1000); diff --git a/mod/groups/actions/groups/edit.php b/mod/groups/actions/groups/edit.php index 3a0376497..27f6e0426 100644 --- a/mod/groups/actions/groups/edit.php +++ b/mod/groups/actions/groups/edit.php @@ -111,7 +111,10 @@ if (elgg_get_plugin_setting('hidden_groups', 'groups') == 'yes') {  // Now see if we have a file icon  if ((isset($_FILES['icon'])) && (substr_count($_FILES['icon']['type'],'image/'))) { -	$prefix = "groups/".$group->guid; + +	$icon_sizes = elgg_get_config('icon_sizes'); + +	$prefix = "groups/" . $group->guid;  	$filehandler = new ElggFile();  	$filehandler->owner_guid = $group->owner_guid; @@ -120,10 +123,10 @@ if ((isset($_FILES['icon'])) && (substr_count($_FILES['icon']['type'],'image/'))  	$filehandler->write(get_uploaded_file('icon'));  	$filehandler->close(); -	$thumbtiny = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(),25,25, true); -	$thumbsmall = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(),40,40, true); -	$thumbmedium = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(),100,100, true); -	$thumblarge = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(),200,200, false); +	$thumbtiny = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(), $icon_sizes['tiny']['w'], $icon_sizes['tiny']['h'], $icon_sizes['tiny']['square']); +	$thumbsmall = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(), $icon_sizes['small']['w'], $icon_sizes['small']['h'], $icon_sizes['small']['square']); +	$thumbmedium = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(), $icon_sizes['medium']['w'], $icon_sizes['medium']['h'], $icon_sizes['medium']['square']); +	$thumblarge = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(), $icon_sizes['large']['w'], $icon_sizes['large']['h'], $icon_sizes['large']['square']);  	if ($thumbtiny) {  		$thumb = new ElggFile(); | 
