<div dir="ltr"><div><div><div>Hi all,<br></div>I'm trying to add a link to our organizations module. I've got it working, by adding it directly to the PHP file. The problem is that VTiger modifies the URL of my link, adding "&Module=" to the end. I gather that link URLs are supposed to be either local to VTiger's path, or JS functions. How can I get my link's URL to be left alone?<br><br></div>Here's what I did. This is in Modules/Accounts/Models/DetailView.php, just above the "return $linkModelList;" line:<br><br>        //AutoDist addition: hard-code a link to Request Tracker in this links list<br>        $rtLink = array(<br>            'linktype' => 'DETAILVIEWBASIC',<br>            'linklabel' => 'View AutoDist Tickets',<br>            'linkurl' => '<a href="https://tickets.mysite.com">https://tickets.mysite.com</a>', //this URL gets modified by VT and I don't know how to stop it<br>            'linkicon' => ''<br>        );<br>        $linkModelList['DETAILVIEW'][] = Vtiger_Link_Model::getInstanceFromValues($rtLink);<br><br></div>Eventually, I'll need to dynamically generate that URL, inserting the a value from one of the organization's custom fields as part of the address. If anyone has tips on that, I'd appreciate help there, too. For now, though, I just need to get the link itself to work. I'm guessing at where the code should go, so I'm very probably doing it all wrong. :) Thanks for any help.<br><div><br><div><div><div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div>Alex Hall<br></div>Automatic Distributors, IT department<br></div><a href="mailto:ahall@autodist.com" target="_blank">ahall@autodist.com</a><br></div></div>
</div></div></div></div></div>