Server_AccessControl/widgets/Tree.php
2020-10-09 14:19:15 +07:00

24 lines
351 B
PHP

<?php
namespace app\widgets;
use yii\base\Widget;
class Tree extends Widget {
public $model;
public function init() {
parent::init();
}
public function run() {
return $this->render("tree", [
"root" => $this->model->findOne(1),
"model" => $this->model
]);
}
}