| 5 forum.module | _forum_get_topic_order($sortby) |
| 6 forum.module | _forum_get_topic_order($sortby) |
| 7 forum.module | _forum_get_topic_order($sortby) |
| 8 forum.module | _forum_get_topic_order($sortby) |
1 call to _forum_get_topic_order()
File
- modules/
forum/ forum.module, line 1236 - Provides discussion forums.
Code
function _forum_get_topic_order($sortby) {
switch ($sortby) {
case 1:
return array('field' => 'f.last_comment_timestamp', 'sort' => 'desc');
break;
case 2:
return array('field' => 'f.last_comment_timestamp', 'sort' => 'asc');
break;
case 3:
return array('field' => 'f.comment_count', 'sort' => 'desc');
break;
case 4:
return array('field' => 'f.comment_count', 'sort' => 'asc');
break;
}
}
Login or register to post comments