api_link_documentation($documentation, $branch, $class_did = NULL, $aggressive_classes = FALSE)Turns function names into links in documentation.
$documentation Documentation to scan for function names.
$branch Branch to make the links in.
$aggressive_classes Try linking every word with a capital letter to a class or interface.
Documentation with function names formatted as links.
contrib-6/api/api.module, line 1774
<?php
function api_link_documentation($documentation, $branch, $class_did = NULL, $aggressive_classes = FALSE) {
return _filter_url(api_filter_documentation($documentation, $branch, $class_did, $aggressive_classes), NULL);
}
?>