TYPO3CMS
9.5
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
q
r
s
t
u
v
w
Files
File List
File Members
All
$
d
e
r
u
Functions
Variables
$
e
r
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
CreateIndexDefinitionItem.php
Go to the documentation of this file.
1
<?php
2
declare(strict_types = 1);
3
4
namespace
TYPO3\CMS\Core\Database\Schema\Parser\AST
;
5
6
/*
7
* This file is part of the TYPO3 CMS project.
8
*
9
* It is free software; you can redistribute it and/or modify it under
10
* the terms of the GNU General Public License, either version 2
11
* of the License, or any later version.
12
*
13
* For the full copyright and license information, please read the
14
* LICENSE.txt file that was distributed with this source code.
15
*
16
* The TYPO3 project - inspiring people to share!
17
*/
18
22
class
CreateIndexDefinitionItem
extends
AbstractCreateDefinitionItem
23
{
27
public
$indexName
=
''
;
28
34
public
$isPrimary
=
false
;
35
41
public
$isUnique
=
false
;
42
48
public
$isFulltext
=
false
;
49
55
public
$isSpatial
=
false
;
56
62
public
$indexType
=
''
;
63
69
public
$name
=
''
;
70
74
public
$columnNames
= [];
75
81
public
$options
= [];
82
92
public
function
__construct
(
93
Identifier
$indexName
=
null
,
94
bool
$isPrimary
=
false
,
95
bool
$isUnique
=
false
,
96
bool
$isSpatial
=
false
,
97
bool
$isFulltext
=
false
98
) {
99
$this->
indexName
=
$indexName
;
100
$this->isPrimary =
$isPrimary
;
101
$this->isUnique =
$isUnique
;
102
$this->isSpatial =
$isSpatial
;
103
$this->isFulltext =
$isFulltext
;
104
}
105
}
TYPO3\CMS\Core\Database\Schema\Parser\AST\Identifier
Definition:
Identifier.php:24
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem\$isFulltext
bool $isFulltext
Definition:
CreateIndexDefinitionItem.php:45
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem\$options
array $options
Definition:
CreateIndexDefinitionItem.php:73
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem
Definition:
CreateIndexDefinitionItem.php:23
TYPO3\CMS\Core\Database\Schema\Parser\AST
Definition:
AbstractCreateDefinitionItem.php:4
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem\$isSpatial
bool $isSpatial
Definition:
CreateIndexDefinitionItem.php:51
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem\$name
string $name
Definition:
CreateIndexDefinitionItem.php:63
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem\$indexType
string $indexType
Definition:
CreateIndexDefinitionItem.php:57
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem\$isPrimary
bool $isPrimary
Definition:
CreateIndexDefinitionItem.php:33
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem\$columnNames
IndexColumnName[] $columnNames
Definition:
CreateIndexDefinitionItem.php:67
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem\$indexName
$indexName
Definition:
CreateIndexDefinitionItem.php:27
TYPO3\CMS\Core\Database\Schema\Parser\AST\IndexColumnName
Definition:
IndexColumnName.php:25
TYPO3\CMS\Core\Database\Schema\Parser\AST\AbstractCreateDefinitionItem
Definition:
AbstractCreateDefinitionItem.php:24
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem\$isUnique
bool $isUnique
Definition:
CreateIndexDefinitionItem.php:39
TYPO3\CMS\Core\Database\Schema\Parser\Parser\indexName
AST Identifier indexName()
Definition:
Parser.php:568
TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateIndexDefinitionItem\__construct
__construct(Identifier $indexName=null, bool $isPrimary=false, bool $isUnique=false, bool $isSpatial=false, bool $isFulltext=false)
Definition:
CreateIndexDefinitionItem.php:84
doxygen
typo3
sysext
core
Classes
Database
Schema
Parser
AST
CreateIndexDefinitionItem.php
Generated on Tue Oct 5 2021 01:57:05 for TYPO3CMS by
1.8.18