我在我的內容樹中有兩個頁面sulu 1.0.13。在頁面「A」上,我通過內容類型爲「單一內部鏈接」的字段設置了頁面「B」的引用。Sulu cmf獲取引用者
當我在頁面「B」時,我想獲得引用頁面「A」。我在我的控制器中試過以下代碼:
$dm = $this->get('sulu_document_manager.document_manager');
$doc = $dm->find('992758cf-1da4-4e45-9ee4-ca9c4ec3998e'); // UUID of page "B"
$di = $this->get('sulu_document_manager.document_inspector');
$node = $di->getNode($doc);
$refs = $di->getReferrers($doc); // $refs is an empty collection
$refs = $node->getReferences(); // $refs is an empty collection
$refs = $node->getWeakReferences(); // $refs is an empty collection
$ refs始終是一個空集合。
什麼是正確的方式來獲取推薦頁面?
更新:我現在使用的版本1.1.0 RC2
你的問題並不十分清楚。請更清楚地描述您的問題,並嘗試自行解決問題。 – Greg