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

16 строки
254 B
PHP
Исходник Обычный вид История

2018-11-12 16:17:08 +03:00
<?php
namespace EJ\Grid;
class CustomToolbarItem {
public function templateID ($value) {
$this -> templateID = $value;
return $this;
}
public function tooltip ($value) {
$this -> tooltip = $value;
return $this;
}
}
?>