Your IP : 216.73.216.79


Current Path : /var/www/html/dyna-laravel.blunetdev.com/modules/cms/components/
Upload File :
Current File : /var/www/html/dyna-laravel.blunetdev.com/modules/cms/components/SoftComponent.php

<?php namespace Cms\Components;

use Cms\Classes\ComponentBase;

class SoftComponent extends ComponentBase
{
    /**
     * @var string Message that is shown with this component.
     */
    protected $message;

    /**
     * @inheritDoc
     */
    public function __construct($properties)
    {
        $this->componentCssClass = 'warning-component';
        $this->inspectorEnabled = false;

        parent::__construct(null, $properties);
    }

    /**
     * @return array
     */
    public function componentDetails()
    {
        return [
            'name'        => 'cms::lang.component.soft_component',
            'description' => 'cms::lang.component.soft_component_description'
        ];
    }
}