Сохранение в таблицу taxonomy_index
Вопрос такой:
Есть хук node_submit. Добавляю в таблицу taxonomy_index
function hook_node_submit($node, $form, &$form_state) {
$query = db_insert('taxonomy_index')->fields(array('nid', 'tid', 'sticky', 'created'));
$query->values(array(
'nid' => 27,
'tid' => 53,
'sticky' => 0,
'created' => time(),
));
$query->execute();
dvm($query);
}