Explorar el Código

Add ability to set default column in order_by() function.

Nate hace 6 años
padre
commit
4f894f0f81
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      resources/functions.php

+ 2 - 1
resources/functions.php

@@ -2124,10 +2124,11 @@ function number_pad($number,$n) {
 
 //validate and format order by clause of select statement
 	if (!function_exists('order_by')) {
-		function order_by($col, $dir) {
+		function order_by($col, $dir, $col_default = '') {
 			$col = preg_replace('#[^a-zA-Z0-9-_.]#', '', $col);
 			$dir = strtolower($dir) == 'desc' ? 'desc' : 'asc';
 			if ($col != '') { return ' order by '.$col.' '.$dir.' '; }
+			else if ($col_default != '') { return ' order by '.$col_default.' '.$dir.' '; }
 		}
 	}