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\GroupAction;
use Nette;
* @method void onSelect(array $ids, string $value)
abstract class GroupAction extends Nette\Object
{
* @var callable[]
public $onSelect = [];
* @var string
protected $title;
* @param string $title
public function __construct($title)
$this->title = $title;
}
* Get action title
* @return string
public function getTitle()
return $this->title;