Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
moodle-block_course_overview_campus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
elc
moodle-block_course_overview_campus
Commits
b516f864
Commit
b516f864
authored
10 years ago
by
Alexander Bias
Browse files
Options
Downloads
Patches
Plain Diff
Check compatibility for Moodle 2.8, no functionality change
parent
a52ce779
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+2
-1
2 additions, 1 deletion
README.md
block_course_overview_campus.php
+1
-1
1 addition, 1 deletion
block_course_overview_campus.php
version.php
+3
-3
3 additions, 3 deletions
version.php
with
6 additions
and
5 deletions
README.md
+
2
−
1
View file @
b516f864
...
...
@@ -5,11 +5,12 @@ Moodle block which provides all functionality of block_course_overview, provides
Requirements
------------
This plugin requires Moodle 2.
7
+
This plugin requires Moodle 2.
8
+
Changes
-------
*
2014-01-29 - Check compatibility for Moodle 2.8, no functionality change
*
2014-10-20 - Bugfix: There were problems with the term filter and courses which start on the term start day and / or term starting on january 1st
*
2014-10-20 - Add multilanguage support to noteachertext string
*
2014-08-29 - Update README file
...
...
This diff is collapsed.
Click to expand it.
block_course_overview_campus.php
+
1
−
1
View file @
b516f864
...
...
@@ -436,7 +436,7 @@ class block_course_overview_campus extends block_base {
if
(
$coc_config
->
teachercoursefilter
==
true
||
$coc_config
->
secondrowshowteachername
==
true
)
{
// Get course teachers based on global teacher roles
if
(
count
(
$teacherroles
)
>
0
)
{
$courseteachers
=
get_role_users
(
$teacherroles
,
$context
,
true
);
$courseteachers
=
get_role_users
(
$teacherroles
,
$context
,
true
,
'ra.id, u.lastname, u.firstname, r.sortorder'
,
'u.lastname, u.firstname'
);
}
else
{
$courseteachers
=
array
();
...
...
This diff is collapsed.
Click to expand it.
version.php
+
3
−
3
View file @
b516f864
...
...
@@ -26,7 +26,7 @@
defined
(
'MOODLE_INTERNAL'
)
||
die
();
$plugin
->
component
=
'block_course_overview_campus'
;
$plugin
->
version
=
2014
051207
;
$plugin
->
release
=
'2.
7
(Build: 201
41020
00)'
;
$plugin
->
requires
=
2014
0512
00
;
$plugin
->
version
=
2014
111000
;
$plugin
->
release
=
'2.
8
(Build: 201
50129
00)'
;
$plugin
->
requires
=
2014
1110
00
;
$plugin
->
maturity
=
MATURITY_STABLE
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment