Drupal - CCK NodeReference alan programlı güncelleştirmek nasıl?

5 Cevap php

Ben bir düğüm (B tipi) oluşturmak çalışıyorum ve yaşıyorum node_save () yöntemini kullanarak bir A tipi düğümün CCK nodereference alanına atamak.

$node_type_A = node_load($some_nid);
$node_type_A->field_type_B_node_ref[]['nid'] = $node_type_B_nid;

$node_type_A = node_submit($node_type_A);
node_save($node_type_A);

Sonuç olarak, yeni bir tip B düğümü oluşturulur, ancak bir referans A tip düğüme atanacaktır. Herhangi bir yardım mutluluk duyacağız.

5 Cevap

GApple biçimi doğru, haklı, ama umurumda isteyebilirsiniz şeyler çift vardır.

Delta Value
First you need to know the delta value of the latest node reference attached to $node_type_A, the delta is actually a partial index, when combined with vid field of the $node_type_A, they become the index for node reference table in the database. In other words, its a count for $node_type_B which are referenced in $node_type_A, ok?

GApple doğru tekrar, tam olarak yeni bir başvuru eklemek için nereye söylemek zorundayım. Eğer delta değeri tam olarak (delta+1) yeni referans eklemek için nereye söyleyebiliriz var. İşte:

function get_current_delta($node_vid){
    return db_result(db_query("SELECT delta FROM {content_field_type_A_node_ref}
                               WHERE vid = '%d'
                               ORDER BY delta DESC
                               LIMIT 1", $node_vid));
}

Adding the new reference
We got delta! so we can attach the new $node_type_B node to our $node_type_A node:

// Loading type_A node.
$node_type_A = node_load($some_nid);

// Getting current delta value.
$current_delta = get_current_delta($node_type_A->vid);

// "Appending" a node reference based on delta. 
$node_type_A->field_type_B_node_ref += array($current_delta + 1 => array('nid' => $node_type_B_nid));

Resaving the updated node
Optionally call node_submit() to populate some essential fields in the node object and save it by utilizing node_save(). After all, you need to call content_insert() to make the node completely saved asidelong with its CCK fields:

// Resaving the updated node.
$node_type_A = node_submit($node_type_A);
node_save($node_type_A);
content_insert($node_type_A);

Flushing the content cache
Probably the most important part, this was killin' me for couple of days. CCK has a cache table in the database called cache_content (take a look at its structure), after resaving the updated node, you will notice that nothing has changed in the $node_type_A theme output even though that the tables are updated. We have to remove a record from that content cache table, this will force Drupal to show the latest snapshot of the data. You can define the following as a function:

db_query("DELETE FROM {cache_content} WHERE cid = '%s'", 'content:' . $node_type_A->nid . ':' . $node_type_A->vid);

Umarım yardımcı olur ;)

Ben sadece nesne biçimi için benzer bir şey yok benim kendi modüllerinden birini kontrol, ve $node_type_A->field_type_B_node_ref[]['nid'] doğru olmalıdır.

Kontrol etmek için bir şey, düğüm yüklediğinizde, CCK boş bir değere sahip düğüm referans dizi önceden doldurmak olmasıdır. Eğer sadece dizi ekleme operatörü kullanarak, bir değer izin alan yapılandırılmış varsa (field_type_B_node_ref[]) yerine yazılmadan, (field_type_B_node_ref[1]) göz ardı edilecek bir ikinci girişi yaratacak Mevcut değer (field_type_B_node_ref[0]). Dizi anahtarına mümkünse belirterek açıkça sahipsiniz.

Büyük yazılan, ama bir düzeltme: elle DB sorgulayarak hizada değil önbellek girişlerini yapmak. Durumunda birisi memcache kullanarak veya başka bir dış önbellek başarısız olacak.

cache_clear_all() temizlenmesi için arkadaşım.

Doğrudan CCK modülü Önerilen kod:

cache_clear_all('content:'. $node_type_A->nid .':'. $node_type_A->vid, content_cache_tablename());

I-$node->field_node_reference[0]['items'][0]['nid'] değil, $node->field_node_reference[0]['nid'] gibi CCK depolama düğüm referansları gösterir. Bunu taklit denediniz mi?

"Flushing İçerik önbellek" Bu benim için çalışıyor, sen node_load bir veri almak, özellikle ()