Для сортировки информационных элементов по рейтингу (оценкам) используйте следующий код
$InformationSystem = & singleton('InformationSystem');
$property = array();
$property['Order'] = 'DESC';
$property['OrderField'] = 'comment_grade';
$property['sql_from'] = ' LEFT JOIN comment_table ON comment_table.information_items_id = information_items_table.information_items_id ';
$items_on_page = 15;
$items_begin = 0;
$InformationSystem_id = 1;
$InformationSystem->ShowInformationSystem($InformationSystem_id, false, 'СписокЭлементовИнфосистемы', $items_on_page, $items_begin, array(), $property);