php-ej1-demos/EJ/PivotGrid/Filter.php

21 строка
357 B
PHP

<?php
namespace EJ\PivotGrid;
class Filter {
public function fieldName ($value) {
$this -> fieldName = $value;
return $this;
}
public function fieldCaption ($value) {
$this -> fieldCaption = $value;
return $this;
}
public function filterItems ($value) {
$this -> filterItems = $value;
return $this;
}
}
?>