getColumn() public méthode

Return existing column
public getColumn ( string $key ) : Column
$key string
Résultat Ublaboo\DataGrid\Column\Column
Exemple #1
0
 /**
  * @param Row $row
  */
 public function add(Row $row)
 {
     foreach ($this->summary as $key => $sum) {
         $column = $this->datagrid->getColumn($key);
         $value = $this->getValue($row, $column);
         $this->summary[$key] += $value;
     }
 }