Files
register/marko_unpacked/marko/portal/widgets/Includes.php
T
Admin Nasledstvo ac168868ee Initial import
2026-05-01 20:52:04 +03:00

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
]);
}
}