How to load parent element header in Drupal

I want to expand the nodes with the name of the parent number so that I can display a link to the hierarchy.

I have a solution that sometimes works:

function modulename_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) 
{
    switch ($op) 
    {
        case 'view':
        loadParentTitle($node);
        break;
    }
}

function loadParentTitle(&$node)
{
    $title = $node->title;
    $query = "SELECT mlid, p1, p2,p4,p5,p6,p7,p8,p9  FROM menu_links WHERE link_title like '%%%s%%'";

    $data =  db_fetch_array(db_query($query, $title));

    $mlid = $data["mlid"];
    $i = 9;
    while (($data["p". $i] == 0 || $data["p". $i] == $mlid) && $i >= 0) 
    {
        $i--;
    }
    if ($i > 0)
    {
        $query = "SELECT `link_title` as parentTitle from  `menu_links` WHERE  mlid = " . $data["p" . $i]; 
        $data =  db_fetch_array(db_query($query));
        $parentTitle = ($data["parentTitle"]);
    }
    else
    {
        $parentTitle = $title;
    }
    $node->content['#parentTitle'] = $parentTitle;
}

This works as long as the title of the item matches the title of the menu. However, I am looking for a solution that will work all the time. Any ideas?

+3
source share
1 answer

You did not really indicate what you mean by β€œparent node”, but the mlid of the parent of the menu link is stored in menu_links.plid. Now link_path will be node / nid, and you can get the name from there.

$mlid = db_result(db_query("SELECT plid FROM {menu_links} WHERE link_path = 'node/%d'", $node->nid));
$link_path = db_result(db_query("SELECT link_path FROM {menu_links} WHERE mlid = %d", $mlid));
$title = db_result(db_query("SELECT title FROM {node} WHERE nid = %d", substr($link_path, 5));

JOIN, ( CONCAT ('node/', nid) = parent.link_path), . .

P.S. check_plain ($ title) , ?:)

+5

Source: https://habr.com/ru/post/1744220/


All Articles