Skip to content

Instantly share code, notes, and snippets.

View kailash657's full-sized avatar

Giovanni Lela kailash657

View GitHub Profile
@kailash657
kailash657 / Controller.php
Created August 16, 2012 11:19
File Saver Behaviour
$model->saveFiles();
$model->saveWithRelated(array('files'=>array('append'=>TRUE))));
@kailash657
kailash657 / DateFormatterBehavior.php
Created June 11, 2012 14:21
Simple yii date formatter behaviour for yii models
<?php
class DateFormatterBehavior extends CActiveRecordBehavior
{
public $dateFields = array();
public $allowNull = array(); // do not auto create a date for this field
public $dateFormat = 'short';
private $owner;