回答:
次のようになります。
ビュー3には(非常にベータ版の)「グループ化」機能があります。これを使用して、カウントフィールドを注文できるはずです。
私はそれが動作することを保証しませんが、それはおそらく試してみる価値があります。
最後に、データベースから用語を取得してグループ化/ソートするための独自のカスタムモジュールを作成しました。
投稿用に以下のコードを少し変更し、変更したバージョンをテストしていないことに注意してください。また、PostgreSQLを使用するサイト用に作成されたことも注目に値しますが、MySQLで動作するはずです。
/**
* Implements hook_block_info().
*/
function MYMODULE_block_info() {
$blocks['poptags'] = array(
'info' => t('Most Popular Tags'),
'cache' => DRUPAL_NO_CACHE
);
return $blocks;
}
/**
* Implements hook_block_view().
*/
function MYMODULE_block_view($delta = '') {
$block = array();
switch ($delta) {
case 'poptags':
$block['subject'] = t('Most Popular Tags');
$block['content'] = _MYMODULE_popular_terms();
break;
}
return $block;
}
function _MYMODULE_popular_terms() {
$vocabId = 1;
$links = array();
$results = db_query_range('SELECT taxonomy_term_data.tid, taxonomy_term_data.name, count(taxonomy_term_data.tid) AS times_used FROM taxonomy_term_data INNER JOIN taxonomy_index ON taxonomy_term_data.tid = taxonomy_index.tid WHERE taxonomy_term_data.vid = :vid GROUP BY taxonomy_term_data.tid, taxonomy_term_data.name ORDER BY times_used DESC', 0, 10, array(':vid' => $vocabId));
foreach ($results as $term) {
$links['term-link-' . db_escape_field($term->name)] = array('title' => $term->name, 'href' => drupal_get_path_alias('taxonomy/term/' . $term->tid));
}
return theme('links', array('links' => $links, 'attributes' => array('class' => 'term-links')));
}
MYMODULE
モジュールの名前を変更することを忘れないでください。最後$vocabId = 1
に、_MYMODULE_popular_terms
関数の行を、用語を一覧表示する語彙のvid(語彙ID)に変更します。
これはDrupal 7専用ですが、Drupal 6に移植するのにそれほど時間はかかりません。
tagadelicからデータをプルできます。
$output = '';
$vids = array(1, 2, 3, 4); #Taxonomy vocabulary-ids you want to be included.
$top_tags = tagadelic_get_weighted_tags($vids, 6, 10);
foreach ($terms as $term) {
$weight = $term->weight;
$output .= l($term->name, drupal_get_path_alias('taxonomy/term/' . $term->tid), array(
'attributes' => array(
'class' => array("tagadelic", "level$weight"),
'rel' => 'tag',
'title' => $term->description,
)
)
) . " \n";
}
return $output;
唯一の欠点は、tagadelicが「重量」を計算するための若干のオーバーヘッドを追加することです。通常は、使用しないタグサイズを提示します。
利点は、無料でキャッシュを取得できることです。