PHP Classes

File: Bvb/grid/Extra/Column.php

Recommend this page to a friend!
  Classes of Filipe Sá   Zend Framework Data Grid   ???   Download  
File: Bvb/grid/Extra/???
Role: Class source
Content type: text/plain
Description: Extra Columns
Class: Zend Framework Data Grid
Display and edit data from a database in a grid
Author: By
Last change:
Date: 15 years ago
Size: 841 bytes
 

 

Contents

Class file image Download
<?php

/**
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license
 * It is available through the world-wide-web at this URL:
 * http://www.petala-azul.com/bsd.txt
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to [email protected] so we can send you a copy immediately.
 *
 * @package Bvb_Grid
 * @copyright Copyright (c) (http://www.petala-azul.com)
 * @license http://www.petala-azul.com/bsd.txt New BSD License
 * @version $Id: Column.php 964 2010-03-13 10:44:34Z [email protected] $
 * @author Bento Vilas Boas <[email protected] >
 */



class Bvb_Grid_Extra_Column
{
    public
$_field;

    function
__call($name,$args)
    {
       
$this->_field[$name] = $args[0];
        return
$this;
    }

}