00001 <?php
00008 class views_handler_sort_ncs_last_comment_name extends views_handler_sort {
00009 function query() {
00010 $this->ensure_my_table();
00011 $join = new views_join();
00012 $join->construct('users', $this->table_alias, 'last_comment_uid', 'uid');
00013
00014
00015
00016
00017
00018 $this->user_table = $this->query->ensure_table('ncs_users', $this->relationship, $join);
00019 $this->user_field = $this->query->add_field($this->user_table, 'name');
00020
00021
00022 $this->query->add_orderby(NULL, "LOWER(COALESCE($this->user_table.name, $this->table_alias.$this->field))", $this->options['order'], $this->table_alias . '_' . $this->field);
00023 }
00024 }