26 lines
453 B
PHP
26 lines
453 B
PHP
<?php
|
|
namespace common\modules\event\widgets\day;
|
|
use common\modules\event\models\timetable\TimeTableMonthDay;
|
|
use yii\bootstrap\Widget;
|
|
|
|
|
|
/** @noinspection PhpUnused */
|
|
|
|
/**
|
|
* Class TimeTableMonthDayView
|
|
* @package common\modules\event\widgets
|
|
*
|
|
* @property TimeTableMonthDay $day
|
|
*/
|
|
class TimeTableMonthDayView extends Widget
|
|
{
|
|
public $day;
|
|
|
|
public function run(){
|
|
return $this->render('_day', [ 'day' => $this->day]);
|
|
}
|
|
|
|
|
|
|
|
}
|