for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* HiPanel core package
*
* @link https://hipanel.com/
* @package hipanel-core
* @license BSD-3-Clause
* @copyright Copyright (c) 2014-2019, HiQDev (http://hiqdev.com/)
*/
namespace hipanel\widgets;
class MainDetails extends \yii\base\Widget
{
public $image;
public $icon;
public $title;
public $titleOptions = [];
public $subTitle;
public $menu;
public $background = false;
public $backgroundColor;
public function run()
return $this->render('MainDetails', [
'title' => $this->title,
'titleOptions' => $this->titleOptions,
'icon' => $this->icon,
'subTitle' => $this->subTitle,
'menu' => $this->menu,
'image' => $this->image,
'background' => $this->background,
'backgroundColor' => $this->backgroundColor,
]);
}