backend/group-training : improve delete© week
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<?php
|
||||
/* @var $timeTable TimeTableMonth */
|
||||
/* @var $copyWeekContext \common\modules\event\models\copy\CopyWeekContext */
|
||||
|
||||
use common\models\Event;
|
||||
use common\modules\event\models\timetable\TimeTableMonth;
|
||||
@@ -24,44 +25,44 @@ $columns = [
|
||||
'attribute' => 'monday',
|
||||
'label' => 'Hétfő',
|
||||
'format' => 'raw',
|
||||
'value' => TimeTableMonthView::renderDay('monday')
|
||||
'value' => TimeTableMonthView::renderDay('monday',$copyWeekContext)
|
||||
],
|
||||
[
|
||||
'attribute' => 'tuesday',
|
||||
'label' => 'Kedd',
|
||||
'format' => 'raw',
|
||||
'value' => TimeTableMonthView::renderDay('tuesday')
|
||||
'value' => TimeTableMonthView::renderDay('tuesday',$copyWeekContext)
|
||||
],
|
||||
|
||||
[
|
||||
'attribute' => 'wednesday',
|
||||
'label' => 'Szerda',
|
||||
'format' => 'raw',
|
||||
'value' => TimeTableMonthView::renderDay('wednesday')
|
||||
'value' => TimeTableMonthView::renderDay('wednesday',$copyWeekContext)
|
||||
],
|
||||
[
|
||||
'attribute' => 'thursday',
|
||||
'label' => 'Csütörtök',
|
||||
'format' => 'raw',
|
||||
'value' => TimeTableMonthView::renderDay('thursday')
|
||||
'value' => TimeTableMonthView::renderDay('thursday',$copyWeekContext)
|
||||
],
|
||||
[
|
||||
'attribute' => 'friday',
|
||||
'label' => 'Péntek',
|
||||
'format' => 'raw',
|
||||
'value' => TimeTableMonthView::renderDay('friday')
|
||||
'value' => TimeTableMonthView::renderDay('friday',$copyWeekContext)
|
||||
],
|
||||
[
|
||||
'attribute' => 'saturday',
|
||||
'format' => 'raw',
|
||||
'label' => 'Szombat',
|
||||
'value' => TimeTableMonthView::renderDay('saturday')
|
||||
'value' => TimeTableMonthView::renderDay('saturday',$copyWeekContext)
|
||||
],
|
||||
[
|
||||
'attribute' => 'Sunday',
|
||||
'label' => 'Vasárnap',
|
||||
'format' => 'raw',
|
||||
'value' => TimeTableMonthView::renderDay('sunday')
|
||||
'value' => TimeTableMonthView::renderDay('sunday',$copyWeekContext)
|
||||
],
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user