Skip to content
Snippets Groups Projects
Commit 59a81b7e authored by Alex Barth's avatar Alex Barth
Browse files

Use hook_taxonomy_term_N(), half ass change to term processor.

parent d17e69a2
No related branches found
No related tags found
No related merge requests found
...@@ -325,8 +325,8 @@ function feeds_feeds_plugins() { ...@@ -325,8 +325,8 @@ function feeds_feeds_plugins() {
/** /**
* Implements hook_node_load(). * Implements hook_node_load().
*/ */
function feeds_node_load($node) { function feeds_node_load($nodes) {
_feeds_node_processor_node_load($node); _feeds_node_processor_node_load($nodes);
} }
/** /**
...@@ -424,9 +424,11 @@ function feeds_node_delete($node) { ...@@ -424,9 +424,11 @@ function feeds_node_delete($node) {
/** /**
* FeedsNodeProcessor's hook_node_load(). * FeedsNodeProcessor's hook_node_load().
*/ */
function _feeds_node_processor_node_load($node) { function _feeds_node_processor_node_load($nodes) {
if ($result = db_query("SELECT imported, guid, url, feed_nid FROM {feeds_node_item} WHERE nid = :nid", array(':nid' => $node->nid))->fetch()) { if ($items = db_query("SELECT nid, imported, guid, url, feed_nid FROM {feeds_node_item} WHERE nid IN nids(:nids)", array(':nids' => array_keys($nodes)))) {
$node->feeds_node_item = $result; foreach ($items as $item) {
$node->{$item->nid} = $item;
}
} }
} }
...@@ -488,6 +490,48 @@ function feeds_taxonomy($op = NULL, $type = NULL, $term = NULL) { ...@@ -488,6 +490,48 @@ function feeds_taxonomy($op = NULL, $type = NULL, $term = NULL) {
} }
} }
/**
* Implements hook_taxonomy_term_update().
*/
function feeds_taxonomy_term_update($term) {
if (isset($term->feeds_importer_id)) {
db_delete('feeds_term_item')
->condition('tid', $term->tid)
->execute();
}
}
/**
* Implements hook_taxonomy_term_insert().
*/
function feeds_taxonomy_term_insert($term) {
if ($term->feeds_importer_id) {
$record = array(
'id' => $term->feeds_importer_id,
'tid' => $term->tid,
);
drupal_write_record('feeds_term_item', $record);
}
}
/**
* Implements hook_taxonomy_term_delete().
*/
function feeds_taxonomy_term_delete($term) {
db_delete('feeds_term_item')
->condition('tid', $term->tid)
->execute();
}
/**
* Implements hook_taxonomy_delete().
*/
function feeds_taxonomy_term_delete($term) {
db_delete('feeds_term_item')
->condition('tid', $term->tid)
->execute();
}
/** /**
* Implements hook_form_alter(). * Implements hook_form_alter().
*/ */
......
...@@ -47,7 +47,7 @@ class FeedsTermProcessor extends FeedsProcessor { ...@@ -47,7 +47,7 @@ class FeedsTermProcessor extends FeedsProcessor {
} }
// Save the term. // Save the term.
$term['importer_id'] = $this->id; $term['feeds_importer_id'] = $this->id;
$term['feed_nid'] = $this->feed_nid; $term['feed_nid'] = $this->feed_nid;
taxonomy_save_term($term); taxonomy_save_term($term);
if ($tid) { if ($tid) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment