Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Moodle Mod Adobeconnect
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
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 Mod Adobeconnect
Commits
0c2420a7
Commit
0c2420a7
authored
7 years ago
by
DFNVC
Browse files
Options
Downloads
Patches
Plain Diff
Links zu Aufnahmen korrigiert. Wurden bei Moodle-Installationen, die
sich in Unterverzeichnissen befinden falsch generiert.
parent
7688b131
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
renderer.php
+3
-3
3 additions, 3 deletions
renderer.php
with
3 additions
and
3 deletions
renderer.php
+
3
−
3
View file @
0c2420a7
...
...
@@ -109,9 +109,9 @@ class mod_adobeconnect_renderer extends plugin_renderer_base {
if
(
!
empty
(
$recordinggrp
))
{
foreach
(
$recordinggrp
as
$recording_scoid
=>
$recording
)
{
// recording url
$url
=
'/mod/adobeconnect/joinrecording.php?id='
.
$cmid
.
'&recording='
.
$recording_scoid
.
'&groupid='
.
$groupid
.
'&sesskey='
.
$USER
->
sesskey
;
$url
=
$CFG
->
wwwroot
.
'/mod/adobeconnect/joinrecording.php?id='
.
$cmid
.
'&recording='
.
$recording_scoid
.
'&groupid='
.
$groupid
.
'&sesskey='
.
$USER
->
sesskey
;
// recording name
$name
=
'<img src="/pix/e/insert_edit_video.svg"/> '
;
$name
=
'<img src="
'
.
$CFG
->
wwwroot
.
'
/pix/e/insert_edit_video.svg"/> '
;
$name
.
=
html_writer
::
link
(
$url
,
format_string
(
$recording
->
name
),
array
(
'target'
=>
'_blank'
,
'title'
=>
'Play Recording'
));
// start date
$startdate
=
format_string
(
$recording
->
startdate
);
...
...
@@ -132,7 +132,7 @@ class mod_adobeconnect_renderer extends plugin_renderer_base {
array_push
(
$row
,
$action
);
// Help
$param
=
array
(
'target'
=>
'_blank'
,
'title'
=>
get_string
(
'record_convert_help'
,
'adobeconnect'
));
$help
=
html_writer
::
link
(
"/help.php?component=adobeconnect&identifier=convert_recording&lang=
$COURSE->lang
"
,
'<img alt="'
.
get_string
(
'record_convert_help'
,
'adobeconnect'
)
.
'" src="/pix/help.svg" />'
,
$param
);
$help
=
html_writer
::
link
(
$CFG
->
wwwroot
.
"/help.php?component=adobeconnect&identifier=convert_recording&lang=
$COURSE->lang
"
,
'<img alt="'
.
get_string
(
'record_convert_help'
,
'adobeconnect'
)
.
'" src="
'
.
$CFG
->
wwwroot
.
'
/pix/help.svg" />'
,
$param
);
array_push
(
$row
,
$help
);
}
$table
->
data
[]
=
$row
;
...
...
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