File "BlockButtonPlainIcon.php"

Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonPlainIcon.php
File size: 434 bytes
MIME-type: text/x-php
Charset: utf-8

<?php


namespace Nextend\SmartSlider3\Application\Admin\Layout\Block\Forms\Button;


class BlockButtonPlainIcon extends AbstractButton {

    protected $baseClass = 'n2_button_plain_icon';

    protected $icon = '';

    protected function getContent() {

        return '<i class="' . $this->icon . '"></i>';
    }

    /**
     * @param string $icon
     */
    public function setIcon($icon) {
        $this->icon = $icon;
    }
}