Completed
Push — master ( f66149...a7372c )
by
unknown
130:24 queued 111:56
created

GridRow::addColumn()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
declare(strict_types = 1);
3
4
namespace TYPO3\CMS\Backend\View\BackendLayout\Grid;
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
19
/**
20
 * Grid Row
21
 *
22
 * Object representation of a single row of a grid defined in a BackendLayout.
23
 * Is solely responsible for grouping GridColumns.
24
 *
25
 * Accessed in Fluid templates.
26
 */
27
class GridRow extends AbstractGridObject
28
{
29
    /**
30
     * @var GridColumn[]
31
     */
32
    protected $columns = [];
33
34
    public function addColumn(GridColumn $column): void
35
    {
36
        $this->columns[$column->getColumnNumber()] = $column;
37
    }
38
39
    /**
40
     * @return GridColumn[]
41
     */
42
    public function getColumns(): iterable
43
    {
44
        return $this->columns;
45
    }
46
}
47