blob: 289d7008802f93884ffb83bc01c1e1b33f846740 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php
namespace ipl\Web\Widget;
use ipl\Html\Attributes;
use ipl\Web\Url;
/**
* Link generally pointing to CRUD actions
*/
class ActionLink extends Link
{
protected $defaultAttributes = ['class' => 'action-link'];
/**
* Create a action link
*
* @param mixed $content
* @param Url|string $url
* @param string $icon
* @param Attributes|array $attributes
*/
public function __construct($content, $url, $icon = null, $attributes = null)
{
parent::__construct($content, $url, $attributes);
if ($icon !== null) {
$this->prepend(new Icon($icon));
}
}
}
|