23 lines
380 B
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()
|
|
]);
|
|
}
|
|
|
|
}
|