CommonDBTM::getLinkURL PHP Method

getLinkURL() public method

Get the link url to an item
public getLinkURL ( ) : string
return string : HTML link
    function getLinkURL()
    {
        global $CFG_GLPI;
        if (!isset($this->fields['id'])) {
            return '';
        }
        $link = $this->getFormURLWithID($this->getID());
        $link .= $this->isTemplate() ? "&withtemplate=1" : "";
        return $link;
    }
CommonDBTM