Skip to content

Instantly share code, notes, and snippets.

@razbakov
Created July 29, 2013 12:49
Show Gist options
  • Save razbakov/6104097 to your computer and use it in GitHub Desktop.
Save razbakov/6104097 to your computer and use it in GitHub Desktop.
<?php
/**
* Check if upload place exists
*
* @access private
* @param upload_place string
* @return string
*/
private function check_upload_place($upload_place)
{
switch($upload_place)
{
case "homepages":
return 'homepages';
break;
case "background":
return 'background';
break;
default:
case "listings":
return 'listings';
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment