TYPO3 CMS
TYPO3_6-2
Main Page
Related Pages
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
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
+
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
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
+
Files
File List
+
File Members
+
All
$
(
_
a
c
d
e
f
h
i
l
o
p
r
s
t
u
x
+
Functions
_
a
c
d
e
f
i
l
o
p
r
s
u
x
+
Variables
$
(
_
a
d
e
h
i
p
r
s
t
Examples
▼
TYPO3 CMS
TYPO3 CMS
Test List
Todo List
Deprecated List
►
Namespace Members
►
Classes
▼
Files
►
File List
►
File Members
►
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
AbstractConstraint.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\Flow\Package\MetaData
;
3
4
/* *
5
* This script belongs to the TYPO3 Flow framework. *
6
* *
7
* It is free software; you can redistribute it and/or modify it under *
8
* the terms of the GNU Lesser General Public License, either version 3 *
9
* of the License, or (at your option) any later version. *
10
* *
11
* The TYPO3 project - inspiring people to share! *
12
* */
13
18
abstract
class
AbstractConstraint
{
19
24
protected
$constraintType
;
25
30
protected
$value
;
31
40
public
function
__construct
(
$constraintType
,
$value
, $minVersion = NULL, $maxVersion = NULL) {
41
$this->constraintType =
$constraintType
;
42
$this->value =
$value
;
43
$this->minVersion = $minVersion;
44
$this->maxVersion = $maxVersion;
45
}
46
50
public
function
getValue
() {
51
return
$this->value
;
52
}
53
57
public
function
getConstraintType
() {
58
return
$this->constraintType
;
59
}
60
64
abstract
public
function
getConstraintScope
();
65
}
66
?>
TYPO3\Flow\Package\MetaData\AbstractConstraint\$value
$value
Definition:
AbstractConstraint.php:30
TYPO3\Flow\Package\MetaData\AbstractConstraint
Definition:
AbstractConstraint.php:18
TYPO3\Flow\Package\MetaData\AbstractConstraint\getConstraintType
getConstraintType()
Definition:
AbstractConstraint.php:57
TYPO3\Flow\Package\MetaData
Definition:
AbstractConstraint.php:2
TYPO3\Flow\Package\MetaData\AbstractConstraint\$constraintType
$constraintType
Definition:
AbstractConstraint.php:24
TYPO3\Flow\Package\MetaData\AbstractConstraint\getConstraintScope
getConstraintScope()
TYPO3\Flow\Package\MetaData\AbstractConstraint\__construct
__construct($constraintType, $value, $minVersion=NULL, $maxVersion=NULL)
Definition:
AbstractConstraint.php:40
TYPO3\Flow\Package\MetaData\AbstractConstraint\getValue
getValue()
Definition:
AbstractConstraint.php:50
typo3
sysext
core
Resources
PHP
TYPO3.Flow
Classes
TYPO3
Flow
Package
MetaData
AbstractConstraint.php
Generated on Wed Aug 7 2019 09:52:22 for TYPO3 CMS by
1.8.13