Classes

File builder/form/field/FormFieldActionLinkElement.class.php

File builder/form/field/FormFieldActionLinkElement.class.php

 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: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 
<?php
/**
 * This class manage action links.
 *
 * @package     Builder
 * @subpackage  Form\field
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Loic ROUCHON <horn@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2015 12 14
 * @since       PHPBoost 3.0 - 2010 04 14
 * @contributor Julien BRISWALTER <j1.seth@phpboost.com>
*/

class FormFieldActionLinkElement
{
    private $title;
    private $url;
    private $css_class;
    private $img;

    /**
     * build an action link
     * @param string $title the action title
     * @param Url $url the action url
     * @param string $css_class the action font awesome css class
     * @param Url $img the action icon url
     */
    public function __construct($title, $url, $css_class = '', $img = '')
    {
        $this->title = $title;
        $this->url = $this->convert_url($url);
        $this->css_class = $css_class;
        $this->img = !empty($img) ? $this->convert_url($img) : $img;
    }

    /**
     * @return string
     */
    public function get_title()
    {
        return $this->title;
    }

    /**
     * @return Url
     */
    public function get_url()
    {
        return $this->url;
    }

    /**
     * @return bool
     */
    public function has_css_class()
    {
        return !empty($this->css_class);
    }

    /**
     * @return string
     */
    public function get_css_class()
    {
        return $this->css_class;
    }

    /**
     * @return bool
     */
    public function has_img()
    {
        return !empty($this->img);
    }

    /**
     * @return Url
     */
    public function get_img()
    {
        return $this->img;
    }

    private function convert_url($url)
    {
        return $url instanceof Url ? $url : new Url($url);
    }
}
?>