forked from Public/pics
28 lines
656 B
PHP
28 lines
656 B
PHP
|
<?php
|
||
|
/*****************************************************************************
|
||
|
* Button.php
|
||
|
* Defines the Button template.
|
||
|
*
|
||
|
* Kabuki CMS (C) 2013-2015, Aaron van Geffen
|
||
|
*****************************************************************************/
|
||
|
|
||
|
class Button extends SubTemplate
|
||
|
{
|
||
|
private $content = '';
|
||
|
private $href = '';
|
||
|
private $class = '';
|
||
|
|
||
|
public function __construct($content = '', $href = '', $class = '')
|
||
|
{
|
||
|
$this->content = $content;
|
||
|
$this->href = $href;
|
||
|
$this->class = $class;
|
||
|
}
|
||
|
|
||
|
protected function html_content()
|
||
|
{
|
||
|
echo '
|
||
|
<a class="', $this->class, '" href="', $this->href, '">', $this->content, '</a>';
|
||
|
}
|
||
|
}
|