X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/3f3df99b377eca4f2ed8870ff3f4559abd0bec80..3af52fa729dd3790dcd6512b5c1e7c7226e41331:/tweeper.php diff --git a/tweeper.php b/tweeper.php index bfc07f2..f712c87 100644 --- a/tweeper.php +++ b/tweeper.php @@ -32,7 +32,7 @@ date_default_timezone_set('UTC'); */ class Tweeper { - private static $USER_AGENT = "Mozilla/5.0 (Windows NT 6.1; rv:22.0) Gecko/20130405 Firefox/22.0"; + private static $userAgent = "Mozilla/5.0 (Windows NT 6.1; rv:22.0) Gecko/20130405 Firefox/22.0"; /** * Constructor sets up {@link $generate_enclosure}. @@ -77,7 +77,7 @@ class Tweeper { CURLOPT_SSL_VERIFYHOST => FALSE, CURLOPT_SSL_VERIFYPEER => FALSE, CURLOPT_HTTPHEADER => array('Accept-language: en'), - CURLOPT_USERAGENT => Tweeper::$USER_AGENT, + CURLOPT_USERAGENT => Tweeper::$userAgent, )); $contents = curl_exec($ch); curl_close($ch); @@ -98,7 +98,7 @@ class Tweeper { CURLOPT_RETURNTRANSFER => TRUE, CURLOPT_SSL_VERIFYHOST => FALSE, CURLOPT_SSL_VERIFYPEER => FALSE, - CURLOPT_USERAGENT => Tweeper::$USER_AGENT, + CURLOPT_USERAGENT => Tweeper::$userAgent, )); curl_exec($ch); $url_info = curl_getinfo($ch); @@ -110,7 +110,7 @@ class Tweeper { /** * Generate an RSS element. */ - public static function generate_enclosure($url) { + public static function generateEnclosure($url) { $supported_content_types = array( "application/ogg", "audio/aac", @@ -203,7 +203,7 @@ class Tweeper { $xsltProcessor = new XSLTProcessor(); $xsltProcessor->registerPHPFunctions(); - $xsltProcessor->setParameter('', 'generateEnclosure', $this->generate_enclosure); + $xsltProcessor->setParameter('', 'generate-enclosure', $this->generate_enclosure); $xsltProcessor->importStylesheet($xslDoc); return $xsltProcessor; @@ -213,7 +213,7 @@ class Tweeper { * Convert json to xml. */ private function json_to_xml($json, $root_node_name) { - // Apparenty the ObjectNormalizer used afterwards is not able to handle + // Apparently the ObjectNormalizer used afterwards is not able to handle // the stdClass object created by json_decode() with the default setting // $assoc = false; so use $assoc = true. $data = json_decode($json, $assoc = TRUE);