Files
sysPass/lib/SP/Html/Assets/IconBase.php
nuxsmin 3e26a1df71 * [ADD] Unit testing. Work in progress
* [MOD] Code refactoring
* [MOD] Make classes final for performance improvements and avoid some side behaviours
2018-07-28 19:15:11 +02:00

114 lines
2.1 KiB
PHP

<?php
/**
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2018, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
* sysPass is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sysPass is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SP\Html\Assets;
defined('APP_ROOT') || die();
/**
* Class DataGridIconBase para crear los iconos de la matriz
*
* @package SP\Html\DataGrid
*/
abstract class IconBase implements IconInterface
{
/**
* El nombre del icono o imagen a utilizar
*
* @var string
*/
protected $icon = '';
/**
* Título del icono
*
* @var string
*/
protected $title = '';
/**
* Clases CSS del icono
*
* @var array
*/
protected $class = [];
/**
* @return string
*/
public function getTitle()
{
return __($this->title);
}
/**
* @param $title
*
* @return $this
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* @return string
*/
public function getClass()
{
return implode(' ', $this->class);
}
/**
* @param $class
*
* @return $this
*/
public function setClass($class)
{
$this->class[] = $class;
return $this;
}
/**
* @return string
*/
public function getIcon()
{
return $this->icon;
}
/**
* @param $icon
*
* @return $this
*/
public function setIcon($icon)
{
$this->icon = $icon;
return $this;
}
}