16 строки
254 B
PHP
16 строки
254 B
PHP
|
<?php
|
||
|
namespace EJ\Grid;
|
||
|
class CustomToolbarItem {
|
||
|
|
||
|
public function templateID ($value) {
|
||
|
$this -> templateID = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function tooltip ($value) {
|
||
|
$this -> tooltip = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
?>
|