for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) 2015 ublaboo <[email protected]>
* @author Pavel Janda <[email protected]>
* @package Ublaboo
*/
namespace Ublaboo\DataGrid\Traits;
use Ublaboo\DataGrid\DataGrid;
use Nette\Utils\Html;
use Ublaboo\DataGrid\Row;
trait TButtonText
{
* @var string
protected $text = '';
* Set text
* @param string $text
public function setText($text)
$this->text = $text;
return $this;
}
* Get text
* @return string
public function getText()
return $this->text;