Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
taskonsite-архив-перенесен
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dmitry Korolev
taskonsite-архив-перенесен
Commits
95859ca9
Commit
95859ca9
authored
Apr 10, 2016
by
Shakarim Sapa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Добавлено отображение для manage;
- Добавлено описание полей на русском языке;
parent
3c4acdaf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
5 deletions
+36
-5
common/modules/analyticsSchool/models/AnalyticsSchoolLesson.php
.../modules/analyticsSchool/models/AnalyticsSchoolLesson.php
+5
-5
common/modules/analyticsSchool/views/lesson-admin/manage.php
common/modules/analyticsSchool/views/lesson-admin/manage.php
+31
-0
No files found.
common/modules/analyticsSchool/models/AnalyticsSchoolLesson.php
View file @
95859ca9
...
...
@@ -22,7 +22,7 @@ class AnalyticsSchoolLesson extends \common\components\ActiveRecordModel
*/
public
static
function
tableName
()
{
return
'analytics_school_lesson
s
'
;
return
'analytics_school_lesson'
;
}
/**
...
...
@@ -53,10 +53,10 @@ class AnalyticsSchoolLesson extends \common\components\ActiveRecordModel
{
return
[
'id'
=>
'ID'
,
'course_id'
=>
'
Course ID
'
,
'name'
=>
'
Name
'
,
'video_link'
=>
'
Video Link
'
,
'content'
=>
'
Content
'
,
'course_id'
=>
'
Курс
'
,
'name'
=>
'
Название урока
'
,
'video_link'
=>
'
Ссылка на видео
'
,
'content'
=>
'
Материал урока
'
,
];
}
...
...
common/modules/analyticsSchool/views/lesson-admin/manage.php
0 → 100644
View file @
95859ca9
<?php
use
\yii\helpers\Html
;
use
yii\grid\GridView
;
/**
* @var $this \common\modules\AnalyticsSchool\controllers\CourseAdminController
* @var $dataProvider yii\data\ActiveDataProvider
*/
?>
<div
class=
"analytics-school-manage"
>
<h1>
<?=
Html
::
encode
(
$this
->
title
);
?>
</h1>
<p>
<?=
Html
::
a
(
'Добавить урок'
,
[
'create'
],
[
'class'
=>
'btn btn-success'
]);
?>
</p>
<?=
GridView
::
widget
([
'dataProvider'
=>
$dataProvider
,
'columns'
=>
[
[
'class'
=>
'yii\grid\SerialColumn'
],
'id'
,
'name'
,
'video_link'
,
'content:html'
,
[
'class'
=>
'yii\grid\ActionColumn'
],
],
]);
?>
</div>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment