回答:
これを行うためのサンプルコードを以下に示します。
function hook_form_alter(&$form, &$form_state, $form_id) {
switch($form_id) {
case 'views_exposed_form':
$allowed_categories = db_query("SELECT 1 as tid, "Term Name (2)" as `name`")->fetchAllKeyed();
$allowed_categories = array_reverse($allowed_categories, TRUE);
$allowed_categories['All'] = '- Any -';
$allowed_categories = array_reverse($allowed_categories, TRUE);
$form['field_category_tid']['#options'] = $allowed_categories;
break;
}
}
クエリを変更して、2つの列(tidとカウント付きの名前)を返すようにします。
function hook_form_alter(&$form, &$form_state, $form_id) {
switch($form_id){
case 'views_exposed_form':
if ($form_state['view']->name == 'viewname') {
//must add some bool so this doesn't get into infinite loop
if(!isset($form_state['view']->gg)){
$form_state['view']->gg = TRUE;
$form_state['view']->execute();
}
$form['results_count'] = array(
'#markup' => t('!count results match your criteria', array('!count' => '<b>'.$form_state['view']->total_rows.'</b>')),
'#weight' => -99,
);
}
break;
}
}
これは私の実際のサイトの例です。field_marka_prochnostiは、分類語彙で表されるノードのフィールドです。phpMyAdminを使用して、テーブルの名前とそのテーブルのフィールドの名前を調べ、クエリを作成しました。bricksale_omegaは私のテーマの名前です。
function bricksale_omega_form_alter(&$form, &$form_state, $form_id) {
switch($form_id){
case 'views_exposed_form':
foreach ($form['field_marka_prochnosti_tid']['#options'] as $tid => &$value) {
$query = db_select('field_data_field_marka_prochnosti', 'f')
->condition('f.field_marka_prochnosti_tid', $tid);
$query->addExpression('COUNT(*)');
$count = $query->execute()->fetchField();
$value = $value . ' (' . $count . ')';
}
break;
}
}