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 TButtonTitle
{
* @var string|callable
protected $title = '';
* Set attribute title
* @param string $title
public function setTitle($title)
$this->title = $title;
return $this;
}
* Get attribute title
* @return string
public function getTitle()
return $this->title;