Is there a shorthand version for, "if this variable isn't set yet, then set it"?
Example:
switch ($Frequency) {
case 'Once':
doSomethingSpecific();
break;
case 'Daily':
$Message = 'Event will occur every day at the same time.';
case 'Weekly':
if (!isset($Message)) $Message = 'Event will occur every week on the same day of the week, at the same time.';
case 'Monthly':
if (!isset($Message)) $Message = 'Event will occur every month on the same day of the week.';
doSomething($Message);
break;
}