summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TPagerMode.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/UI/WebControls/TPagerMode.php')
-rw-r--r--framework/Web/UI/WebControls/TPagerMode.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/TPagerMode.php b/framework/Web/UI/WebControls/TPagerMode.php
new file mode 100644
index 00000000..ed52f668
--- /dev/null
+++ b/framework/Web/UI/WebControls/TPagerMode.php
@@ -0,0 +1,31 @@
+<?php
+/**
+ * TPager class file.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005-2014 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @package System.Web.UI.WebControls
+ */
+
+
+/**
+ * TPagerMode class.
+ * TPagerMode defines the enumerable type for the possible modes that a {@link TPager} control can take.
+ *
+ * The following enumerable values are defined:
+ * - NextPrev: pager buttons are displayed as next and previous pages
+ * - Numeric: pager buttons are displayed as numeric page numbers
+ * - DropDownList: a dropdown list is used to select pages
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @package System.Web.UI.WebControls
+ * @since 3.0.4
+ */
+class TPagerMode extends TEnumerable
+{
+ const NextPrev='NextPrev';
+ const Numeric='Numeric';
+ const DropDownList='DropDownList';
+} \ No newline at end of file