1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php /** * Description of RecognizeURL * * @author Sander */ class RecognizeURL { public static function GetContentHandler($url){ if(FanFictionNet::Matches($url)){ return new FanFictionNet($url); } return null; } } ?>