Object::Resources PHP Method

Resources() public static method

public static Resources ( )
    public static function Resources()
    {
        return array('thumbnail' => array('type' => 'thumbnail', 'name' => 'Thumbnail', 'maxSize' => ConstantDefine::UPLOAD_MAX_SIZE, 'minSize' => ConstantDefine::UPLOAD_MIN_SIZE, 'max' => 1, 'allow' => array('jpeg', 'jpg', 'gif', 'png')));
    }

Usage Example

Ejemplo n.º 1
0
 public static function Resources()
 {
     return CMap::mergeArray(Object::Resources(), array('video' => array('type' => 'video', 'name' => 'Video', 'maxSize' => UPLOAD_MAX_SIZE, 'minSize' => UPLOAD_MIN_SIZE, 'max' => 1, 'allow' => array('flv', 'mp4'))));
 }
All Usage Examples Of Object::Resources