Server_AccessControl/widgets/ScheduleDepartment.php

23 lines
380 B
PHP

<?php
namespace app\widgets;
use yii\base\Widget;
class ScheduleDepartment extends Widget {
public $pid;
public function init() {
parent::init();
}
public function run() {
return $this->render("schedule-department", [
"lists" => \app\models\Department::find()->andWhere(['pid' => $this->pid])->all()
]);
}
}