Copy the following code in a file and save it as wcddl_lc.php and paste the file in the modules folder

PHP Code: 
<?php 
    
/*BEGIN_INFO
    WGTools Link Checker<br>
    END_INFO*/
if(!defined("WCDDL_GUTS")) 
    exit;
$download $core->fetchDownload(true);
    global 
$core
$lcurl 'http://wgtools.com/link-checker/?url=' $download['url'];
$wglc '<a target="_blank" href="' $lcurl '"><strong>Check Download Links</strong></a>';
    
$core->setTemplateVar("linkchecker",$wglc);
    
?>
add <?=$core->templateVar("linkchecker")?> wherever you want in leftbar.php


Codes are from WGTools Link Checker, I've just managed to make it into a module.

After I've done this that I've noticed that there was a WGTools Link Checker addon for WCDDL v1 but I don't know if it's the same
Snell Reviewed by Snell on . [WCDDL v2]WGTools Link Checker Copy the following code in a file and save it as wcddl_lc.php and paste the file in the modules folder <?php /*BEGIN_INFO WGTools Link Checker<br> END_INFO*/ if(!defined("WCDDL_GUTS")) exit; $download = $core->fetchDownload(true); global $core; Rating: 5