私は、トップ10の最も人気のある分類用語(タグ)をリストするビューを作成しています。現在、すべての用語を返すビューがあり、ビューを10に制限できますが、人気度(つまり、すべてのノードで使用される回数)によって用語を並べ替える方法を理解できません。
誰かこれの経験がありますか?
最後に、データベースから用語を取得してグループ化/ソートするための独自のカスタムモジュールを作成しました。
投稿用に以下のコードを少し変更し、変更したバージョンをテストしていないことに注意してください。また、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.に移植するのにそれほど時間はかかりませんが、.
次のようになります。
ビュー3には(非常にベータ版の)「グループ化」機能があります。これを使用して、カウントフィールドを注文できるはずです。
私はそれが動作することを保証しませんが、それはおそらく試してみる価値があります。
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が「重量」を計算するための若干のオーバーヘッドを追加することです。通常は、使用しないタグサイズを提示します。
利点は、無料でキャッシュを取得できることです。