blob: e432438a375652586ace1a80a77a0db5825dd890 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php
/**
* IRepeatInfoUser, TRepeatInfo class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\UI\WebControls
*/
namespace Prado\Web\UI\WebControls;
/**
* TRepeatLayout class.
* TRepeatLayout defines the enumerable type for the possible layouts
* that repeated contents can take.
*
* The following enumerable values are defined:
* - Table: the repeated contents are organized using an HTML table
* - Flow: the repeated contents are organized using HTML spans and breaks
* - Raw: the repeated contents are stacked together without any additional decorations
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package Prado\Web\UI\WebControls
* @since 3.0.4
*/
class TRepeatLayout extends \Prado\TEnumerable
{
const Table='Table';
const Flow='Flow';
const Raw='Raw';
}
|