1 | <?php |
||
24 | class Give_DB_Sequential_Ordering extends Give_DB { |
||
25 | |||
26 | /** |
||
27 | * Give_DB_Sequential_Ordering constructor. |
||
28 | * |
||
29 | * Set up the Give DB Donor class. |
||
30 | * |
||
31 | * @since 2.1.0 |
||
32 | * @access public |
||
33 | */ |
||
34 | public function __construct() { |
||
44 | |||
45 | /** |
||
46 | * Get columns and formats |
||
47 | * |
||
48 | * @since 2.1.0 |
||
49 | * @access public |
||
50 | * |
||
51 | * @return array Columns and formats. |
||
52 | */ |
||
53 | public function get_columns() { |
||
59 | |||
60 | /** |
||
61 | * Get default column values |
||
62 | * |
||
63 | * @since 2.1.0 |
||
64 | * @access public |
||
65 | * |
||
66 | * @return array Default column values. |
||
67 | */ |
||
68 | public function get_column_defaults() { |
||
74 | |||
75 | |||
76 | /** |
||
77 | * Create the table |
||
78 | * |
||
79 | * @since 2.1.0 |
||
80 | * @access public |
||
81 | * |
||
82 | * @return void |
||
83 | */ |
||
84 | public function create_table() { |
||
121 | |||
122 | |||
123 | /** |
||
124 | * Get id auto increment next value. |
||
125 | * |
||
126 | * @since 2.1.0 |
||
127 | * @return null|string |
||
128 | */ |
||
129 | public function get_id_auto_increment_val() { |
||
145 | } |
||
146 |