Formato Da Data D/m/y

Como consigo formatar a data (2013-02-14 00:00:00) para o formato d/m/Y H:i:s ao mostrar na tela ?

<?php echo $form->labelEx($model,‘dataCadastro’); ?>

	&lt;?php 		&#036;this-&gt;widget('zii.widgets.jui.CJuiDateTimePicker',array(


				'model'=&gt;&#036;model, 


				'attribute'=&gt;'dataCadastro',         


				//'value'=&gt; date(&quot;d.m.Y H:i&quot;,&#036;model-&gt;dataCadastro),                    


				'mode'=&gt;'datetime', 


				'options'=&gt;array(


					'dateFormat'=&gt;'yy-mm-dd',


					'timeFormat'=&gt;'hh:mm:ss',


					'showAnim'=&gt;'fold',


					'showButtonPanel'=&gt;true,


					), 


				'language' =&gt; 'pt'


	)); ?&gt;

Obrigado!

‘dateFormat’=>‘dd-mm-Y’,

‘timeFormat’=>‘H:i:ss’,

?