The problem
You have a link TV that the client wants to either enter a resource ID (with no fiddly link [[~ ]] markup), or an external link. They also want the external link to open in a new tab.
The solution
Snippet called 'intExtLink'
<?php
if (is_numeric ($input)){
$url = $modx->makeUrl($input);
$fullLink = 'href="'.$url.'"';
}else{
$fullLink = 'href="'.$input.'" target="_blank"';
}
return $fullLink;
Example markup/usage
[[+tv.link:notempty=`<a [[+tv.link:intExtLink]] title="View more information">`]]
<img src="[[+tv.image]]">
[[+tv.link:notempty=`</a>`]]
Hope this helps someone, somewhere.
Improvements are obviously welcomed.
Shaun