Skip to content

Instantly share code, notes, and snippets.

@CodeDrivenMitch
Created June 8, 2014 19:58
Show Gist options
  • Save CodeDrivenMitch/aed72c92d375aec43679 to your computer and use it in GitHub Desktop.
Save CodeDrivenMitch/aed72c92d375aec43679 to your computer and use it in GitHub Desktop.
private function getObjectInfoByType($objectType)
{
switch ($objectType) {
case "FoodStand":
return 'prices';
break;
case "Toilet":
return 'prices';
break;
case "MarketStall":
return 'prices';
break;
default:
return 'none';
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment