'.parent::thisDay().''; } } $Month = new Calendar_Month(date('Y'), date('n')); $Wrapper = & new Calendar_Decorator_Wrapper($Month); $Wrapper->build(); echo '

The Wrapper decorator

'; echo 'Day numbers are rendered in bold

'; while ($DecoratedDay = $Wrapper->fetch('MyBoldDecorator')) { echo $DecoratedDay->thisDay().'
'; } ?>