Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
Layout
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2/**
3 * This file is part of PHPPresentation - A pure PHP library for reading and writing
4 * presentations documents.
5 *
6 * PHPPresentation is free software distributed under the terms of the GNU Lesser
7 * General Public License version 3 as published by the Free Software Foundation.
8 *
9 * For the full copyright and license information, please read the LICENSE
10 * file that was distributed with this source code. For the full list of
11 * contributors, visit https://github.com/PHPOffice/PHPPresentation/contributors.
12 *
13 * @see        https://github.com/PHPOffice/PHPPresentation
14 *
15 * @license     http://www.gnu.org/licenses/lgpl.txt LGPL version 3
16 */
17
18declare(strict_types=1);
19
20namespace PhpOffice\PhpPresentation\Slide;
21
22/**
23 * \PhpOffice\PhpPresentation\Slide\Layout.
24 */
25class Layout
26{
27    /** Layout constants */
28    public const TITLE_SLIDE = 'Title Slide';
29    public const TITLE_AND_CONTENT = 'Title and Content';
30    public const SECTION_HEADER = 'Section Header';
31    public const TWO_CONTENT = 'Two Content';
32    public const COMPARISON = 'Comparison';
33    public const TITLE_ONLY = 'Title Only';
34    public const BLANK = 'Blank';
35    public const CONTENT_WITH_CAPTION = 'Content with Caption';
36    public const PICTURE_WITH_CAPTION = 'Picture with Caption';
37    public const TITLE_AND_VERTICAL_TEXT = 'Title and Vertical Text';
38    public const VERTICAL_TITLE_AND_TEXT = 'Vertical Title and Text';
39}