Your IP : 216.73.216.240


Current Path : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/src/View/Sky/
Upload File :
Current File : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/src/View/Sky/Text.php

<?php
/*
* @package		Tech Fry Library
* @license		https://www.gnu.org/licenses/gpl-3.0.en.html
*/

namespace TechFry\Library\View\Sky;

defined('_JEXEC') or die;

class Text extends Bootstrap
{
    public $class_options = array('text_class', 'font_type', 'text_color', 'text_align', 'text_transform', 
        'font_size', 'line_height', 'text_style', 'text_wrap');

    public function display()
    {        
        $class = $this->get_class();

        $this->html->open_div(array('class' => $class));
        
        $this->html->add_content($this->data);

        $this->html->close_div();

        return $this->html->get_output();
    }
}