Merge branch 'MDL-30700-23' of git://github.com/damyon/moodle into MOODLE_23_STABLE

This commit is contained in:
Eloy Lafuente (stronk7)
2012-12-11 19:58:19 +01:00
2 changed files with 16 additions and 2 deletions
+15 -2
View File
@@ -60,6 +60,7 @@ class flexible_table {
var $column_class = array();
var $column_suppress = array();
var $column_nosort = array('userpic');
private $column_textsort = array();
var $setup = false;
var $sess = NULL;
var $baseurl = NULL;
@@ -214,6 +215,14 @@ class flexible_table {
$this->sort_default_order = $defaultorder;
}
/**
* Use text sorting functions for this column (required for text columns with Oracle).
* @param string column name
*/
function text_sorting($column) {
$this->column_textsort[] = $column;
}
/**
* Do not sort using this column
* @param string column name
@@ -513,10 +522,14 @@ class flexible_table {
* @param array $cols column name => SORT_ASC or SORT_DESC
* @return SQL fragment that can be used in an ORDER BY clause.
*/
public static function construct_order_by($cols) {
public static function construct_order_by($cols, $textsortcols=array()) {
global $DB;
$bits = array();
foreach ($cols as $column => $order) {
if (in_array($column, $textsortcols)) {
$column = $DB->sql_order_by_text($column);
}
if ($order == SORT_ASC) {
$bits[] = $column . ' ASC';
} else {
@@ -531,7 +544,7 @@ class flexible_table {
* @return SQL fragment that can be used in an ORDER BY clause.
*/
public function get_sql_sort() {
return self::construct_order_by($this->get_sort_columns());
return self::construct_order_by($this->get_sort_columns(), $this->column_textsort);
}
/**
+1
View File
@@ -1380,6 +1380,7 @@ class assignment_base {
$table->no_sorting('finalgrade');
$table->no_sorting('outcome');
$table->text_sorting('submissioncomment');
// Start working -- this is necessary as soon as the niceties are over
$table->setup();