You should not do this. The point at which you should be doing formatting of things like dates and numbers when you output them in your view. You should not have your model returning already-formatted values. Models should just return the data: the view should make whatever formatting adjustments the data needs for presentation.
--
Adam