php-ej1-demos/EJ/Grid/ToolbarSetting.php

21 строка
378 B
PHP

<?php
namespace EJ\Grid;
class ToolbarSetting {
public function showToolbar ($value) {
$this -> showToolbar = $value;
return $this;
}
public function toolbarItems ($value) {
$this -> toolbarItems = $value;
return $this;
}
public function customToolbarItems ($value) {
$this -> customToolbarItems = $value;
return $this;
}
}
?>