25 lines
406 B
PHP
25 lines
406 B
PHP
<?php
|
|
|
|
|
|
namespace app\widgets;
|
|
|
|
|
|
use yii\base\Widget;
|
|
|
|
class Includes extends Widget
|
|
{
|
|
public $type;
|
|
public $model;
|
|
public $bottom_care;
|
|
public $title = '';
|
|
|
|
public function run()
|
|
{
|
|
return $this->render('includes/' . $this->type, [
|
|
'model' => $this->model,
|
|
'bottom_care' => $this->bottom_care,
|
|
'title' => $this->title
|
|
]);
|
|
}
|
|
}
|