Index: branches/robchurch/reports/includes/reports/Report.php |
— | — | @@ -112,6 +112,16 @@ |
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
| 116 | + * Get ORDER BY clauses to be applied when the |
| 117 | + * report is run live |
| 118 | + * |
| 119 | + * @return array |
| 120 | + */ |
| 121 | + public function getOrderingClauses() { |
| 122 | + return array(); |
| 123 | + } |
| 124 | + |
| 125 | + /** |
116 | 126 | * Get the column used for paging when the report is run live |
117 | 127 | * |
118 | 128 | * @return string |
— | — | @@ -142,16 +152,6 @@ |
143 | 153 | } |
144 | 154 | |
145 | 155 | /** |
146 | | - * Get ORDER BY clauses to be applied when the |
147 | | - * report is run live |
148 | | - * |
149 | | - * @return array |
150 | | - */ |
151 | | - public function getOrderingClauses() { |
152 | | - return array(); |
153 | | - } |
154 | | - |
155 | | - /** |
156 | 156 | * Given a result object, extract additional parameters |
157 | 157 | * as a dictionary for later use |
158 | 158 | * |