Правильно понимаю, что можно только так:
mymodule.views.inc
function mymodule_views_data() {
$data['first']['table']['group'] = t('first');
$data['first']['table']['base'] = array(
'field' => 'nid',
'title' => t('first'),
'help' => t('first'),
'weight' => -10,
);
$data['second']['table']['group'] = t('second');
$data['second']['table']['base'] = array(
'field' => 'nid',
'title' => t('second'),
'help' => t('second'),
'weight' => -10,
);
return $data;
}
а вот так нельзя
first.inc
function mymodule_views_data() {
$data['first']['table']['group'] = t('first');
$data['first']['table']['base'] = array(
'field' => 'nid',
'title' => t('first'),
'help' => t('first'),
'weight' => -10,
);
return $data;
}
second.inc
function mymodule_views_data() {
$data['second']['table']['group'] = t('second');
$data['second']['table']['base'] = array(
'field' => 'nid',
'title' => t('second'),
'help' => t('second'),
'weight' => -10,
);
return $data;
}