Exemplo n.º 1
0
 public function getName()
 {
     if (null === $this->name && $this->column) {
         $this->name = $this->column->getName();
     }
     return $this->name;
 }
Exemplo n.º 2
0
 /**
  * Returns value of specified column from row.
  *
  * @param FieldConfig|string $field
  * @return mixed
  */
 public function getCellValue($field)
 {
     $fieldName = $field instanceof FieldConfig ? $field->getName() : $field;
     return $this->extractCellValue($fieldName);
 }