これは最初は簡単に思えたが、これで髪が抜けてしまった。
テーブルを使用しないカスタムビューハンドラを追加したいだけです。
phpが提案したビュー、hook_views_dataの$ data ['views'] ['mycustomfield']を実行しようとしましたが、それでも「mycustomfield colum not found」です。
何か助け?ありがとう!
これは最初は簡単に思えたが、これで髪が抜けてしまった。
テーブルを使用しないカスタムビューハンドラを追加したいだけです。
phpが提案したビュー、hook_views_dataの$ data ['views'] ['mycustomfield']を実行しようとしましたが、それでも「mycustomfield colum not found」です。
何か助け?ありがとう!
回答:
実際には簡単です。で利用可能な実装ビューグローバルハンドラーを見てくださいviews.views.incください。
以下は、テーブルがなくてもフィールドハンドラを追加する方法の例です。
以下のように、hook_views_dataでカスタムハンドラーを指定します。
/**
* Implements hook_views_data().
*/
function my_module_views_data() {
$data['custom']['table']['group'] = t('Custom');
$data['custom']['table']['join'] = array(
// #global is a special flag which let's a table appear all the time.
'#global' => array(),
);
$data['custom']['custom_handler'] = array(
'title' => t('Custom Handler'),
'help' => t('Custom Handler.'),
'field' => array(
'handler' => 'views_handler_custom_handler',
),
);
return $data;
}
ハンドラー用のincファイルを作成し、そこにロジックを配置します。以下のようなものここでは、ファイル名はviews_handler_custom_handler.incになります。
/**
* A handler to provide a field that is completely custom by the administrator.
*
* @ingroup views_field_handlers
*/
class views_handler_custom_handler extends views_handler_field {
function query() {
// do nothing -- to override the parent query.
}
function option_definition() {
$options = parent::option_definition();
// Override the alter text option to always alter the text.
$options['alter']['contains']['alter_text'] = array('default' => TRUE);
return $options;
}
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
// Remove the checkbox
unset($form['alter']['alter_text']);
unset($form['alter']['text']['#dependency']);
unset($form['alter']['text']['#process']);
}
function render($values) {
// Render your content.
return 'Sample';
}
}
モジュールの情報ファイルでこの新しいハンドラーファイルを指定します
これで、新しいフィールドハンドラーがフィールドリストに表示されます。