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
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 Mod Adobeconnect
Commits
609e002f
Commit
609e002f
authored
5 years ago
by
DFNVC
Browse files
Options
Downloads
Patches
Plain Diff
Absoluten Pfad bei Funktion require_once verwenden.
parent
d3427cfa
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
connect_class_dom.php
+1
-1
1 addition, 1 deletion
connect_class_dom.php
lib.php
+1
-1
1 addition, 1 deletion
lib.php
locallib.php
+2
-2
2 additions, 2 deletions
locallib.php
participants.php
+1
-1
1 addition, 1 deletion
participants.php
version.php
+1
-1
1 addition, 1 deletion
version.php
with
6 additions
and
6 deletions
connect_class_dom.php
+
1
−
1
View file @
609e002f
...
...
@@ -8,7 +8,7 @@
*/
require_once
(
'
connect_class.php'
);
require_once
(
$CFG
->
dirroot
.
'/mod/adobeconnect/
connect_class.php'
);
class
connect_class_dom
extends
connect_class
{
...
...
This diff is collapsed.
Click to expand it.
lib.php
+
1
−
1
View file @
609e002f
...
...
@@ -6,7 +6,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once
(
'
locallib.php'
);
require_once
(
$CFG
->
dirroot
.
'/mod/adobeconnect/
locallib.php'
);
/**
* Library of functions and constants for module adobeconnect
...
...
This diff is collapsed.
Click to expand it.
locallib.php
+
2
−
2
View file @
609e002f
...
...
@@ -7,8 +7,8 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once
(
'
connect_class.php'
);
require_once
(
'
connect_class_dom.php'
);
require_once
(
$CFG
->
dirroot
.
'/mod/adobeconnect/
connect_class.php'
);
require_once
(
$CFG
->
dirroot
.
'/mod/adobeconnect/
connect_class_dom.php'
);
define
(
'ADOBE_VIEW_ROLE'
,
'view'
);
define
(
'ADOBE_HOST_ROLE'
,
'host'
);
...
...
This diff is collapsed.
Click to expand it.
participants.php
+
1
−
1
View file @
609e002f
...
...
@@ -24,7 +24,7 @@
require_once
(
dirname
(
__FILE__
)
.
'/../../config.php'
);
require_once
(
$CFG
->
dirroot
.
'/'
.
$CFG
->
admin
.
'/roles/lib.php'
);
require_once
(
'
locallib.php'
);
require_once
(
$CFG
->
dirroot
.
'/mod/adobeconnect/
locallib.php'
);
define
(
"MAX_USERS_TO_LIST_PER_ROLE"
,
10
);
...
...
This diff is collapsed.
Click to expand it.
version.php
+
1
−
1
View file @
609e002f
...
...
@@ -7,7 +7,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
$plugin
->
version
=
2019
0926
00
;
// The current module version (Date: YYYYMMDDXX)
$plugin
->
version
=
2019
1025
00
;
// The current module version (Date: YYYYMMDDXX)
$plugin
->
requires
=
2014051212
;
// Requires this Moodle version
$plugin
->
component
=
'mod_adobeconnect'
;
$plugin
->
cron
=
0
;
// Period for cron to check this module (secs)
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