ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilWebDAVMountInstructionsDocumentContentValidator.php
Go to the documentation of this file.
1
<?php
2
3
4
class
ilWebDAVMountInstructionsDocumentContentValidator
5
{
6
protected
$necessary_text_placeholders
= array(
7
'WEBFOLDER_TITLE'
,
'WEBFOLDER_URI_HTTP'
,
'WEBFOLDER_URI_KONQUEROR'
,
'WEBFOLDER_URI_NAUTILUS'
8
);
9
10
public
function
checkMountInstructionsContent
(
string
$a_raw_mount_instructions) : bool
11
{
12
return
false
;
13
}
14
21
public
function
checkForNecessaryTextPlaceholders
(
string
$a_raw_mount_instructions) : bool
22
{
23
foreach
($this->necessary_text_placeholders as $necessary_text_placeholder) {
24
if
(strstr($a_raw_mount_instructions,
"[$necessary_text_placeholder]"
)) {
25
return
false
;
26
}
27
}
28
29
return
false
;
30
}
31
32
public
function
checkIfPlaceholderIsBetweenOtherPlaceholders
() : bool
33
{
34
return
false
;
35
}
36
}
ilWebDAVMountInstructionsDocumentContentValidator\checkMountInstructionsContent
checkMountInstructionsContent(string $a_raw_mount_instructions)
Definition:
class.ilWebDAVMountInstructionsDocumentContentValidator.php:10
ilWebDAVMountInstructionsDocumentContentValidator\checkIfPlaceholderIsBetweenOtherPlaceholders
checkIfPlaceholderIsBetweenOtherPlaceholders()
Definition:
class.ilWebDAVMountInstructionsDocumentContentValidator.php:32
ilWebDAVMountInstructionsDocumentContentValidator\checkForNecessaryTextPlaceholders
checkForNecessaryTextPlaceholders(string $a_raw_mount_instructions)
Checks if necessary placeholders are in the mount instructions.
Definition:
class.ilWebDAVMountInstructionsDocumentContentValidator.php:21
ilWebDAVMountInstructionsDocumentContentValidator
Definition:
class.ilWebDAVMountInstructionsDocumentContentValidator.php:4
ilWebDAVMountInstructionsDocumentContentValidator\$necessary_text_placeholders
$necessary_text_placeholders
Definition:
class.ilWebDAVMountInstructionsDocumentContentValidator.php:6
Services
WebDAV
classes
mount_instructions
class.ilWebDAVMountInstructionsDocumentContentValidator.php
Generated on Thu Apr 10 2025 20:01:31 for ILIAS by
1.8.13 (using
Doxyfile
)