@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | // specify where to look for templates and cache |
38 | 38 | $loader = new Twig_Loader_Filesystem('view'); |
39 | 39 | // initialize Twig environment |
40 | - $this->twig = new Twig_Environment($loader, array('cache' => $tmpDir,'auto_reload' => true)); |
|
40 | + $this->twig = new Twig_Environment($loader, array('cache' => $tmpDir, 'auto_reload' => true)); |
|
41 | 41 | $this->twig->addExtension(new Twig_Extensions_Extension_I18n()); |
42 | 42 | // used for setting the base href for the relative urls |
43 | 43 | $this->twig->addGlobal("BaseHref", $this->getBaseHref()); |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $this->twig->addFilter(new Twig_SimpleFilter('link_url', array($this, 'linkUrlFilter'))); |
65 | 65 | |
66 | 66 | // register a Twig filter for generating strings from language codes with CLDR |
67 | - $langFilter = new Twig_SimpleFilter('lang_name', function ($langcode, $lang) { |
|
67 | + $langFilter = new Twig_SimpleFilter('lang_name', function($langcode, $lang) { |
|
68 | 68 | return Language::getName($langcode, $lang); |
69 | 69 | }); |
70 | 70 | $this->twig->addFilter($langFilter); |
@@ -111,18 +111,18 @@ discard block |
||
111 | 111 | $localname = $vocab->getLocalName($uri); |
112 | 112 | if ($localname !== $uri && $localname === urlencode($localname)) { |
113 | 113 | // check that the prefix stripping worked, and there are no problematic chars in localname |
114 | - $paramstr = sizeof($params) > 0 ? '?' . http_build_query($params) : ''; |
|
114 | + $paramstr = sizeof($params) > 0 ? '?'.http_build_query($params) : ''; |
|
115 | 115 | if ($type && $type !== '' && $type !== 'vocab' && !($localname === '' && $type === 'page')) { |
116 | - return "$vocid/$lang/$type/$localname" . $paramstr; |
|
116 | + return "$vocid/$lang/$type/$localname".$paramstr; |
|
117 | 117 | } |
118 | 118 | |
119 | - return "$vocid/$lang/$localname" . $paramstr; |
|
119 | + return "$vocid/$lang/$localname".$paramstr; |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | // case 2: URI outside vocabulary namespace, or has problematic chars |
123 | 123 | // pass the full URI as parameter instead |
124 | 124 | $params['uri'] = $uri; |
125 | - return "$vocid/$lang/$type/?" . http_build_query($params); |
|
125 | + return "$vocid/$lang/$type/?".http_build_query($params); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
@@ -279,12 +279,12 @@ discard block |
||
279 | 279 | private function createFeedbackHeaders($fromName, $fromEmail, $toMail) |
280 | 280 | { |
281 | 281 | $headers = "MIME-Version: 1.0″ . '\r\n"; |
282 | - $headers .= "Content-type: text/html; charset=UTF-8" . "\r\n"; |
|
282 | + $headers .= "Content-type: text/html; charset=UTF-8"."\r\n"; |
|
283 | 283 | if ($toMail) { |
284 | - $headers .= "Cc: " . $this->model->getConfig()->getFeedbackAddress() . "\r\n"; |
|
284 | + $headers .= "Cc: ".$this->model->getConfig()->getFeedbackAddress()."\r\n"; |
|
285 | 285 | } |
286 | 286 | |
287 | - $headers .= "From: $fromName <$fromEmail>" . "\r\n" . 'X-Mailer: PHP/' . phpversion(); |
|
287 | + $headers .= "From: $fromName <$fromEmail>"."\r\n".'X-Mailer: PHP/'.phpversion(); |
|
288 | 288 | return $headers; |
289 | 289 | } |
290 | 290 | |
@@ -299,20 +299,20 @@ discard block |
||
299 | 299 | { |
300 | 300 | $toAddress = ($toMail) ? $toMail : $this->model->getConfig()->getFeedbackAddress(); |
301 | 301 | if ($fromVocab !== null && $fromVocab !== '') { |
302 | - $message = 'Feedback from vocab: ' . strtoupper($fromVocab) . "<br />" . $message; |
|
302 | + $message = 'Feedback from vocab: '.strtoupper($fromVocab)."<br />".$message; |
|
303 | 303 | } |
304 | 304 | |
305 | - $subject = SERVICE_NAME . " feedback"; |
|
305 | + $subject = SERVICE_NAME." feedback"; |
|
306 | 306 | $headers = $this->createFeedbackHeaders($fromName, $fromEmail, $toMail); |
307 | 307 | $envelopeSender = FEEDBACK_ENVELOPE_SENDER; |
308 | 308 | $params = empty($envelopeSender) ? '' : "-f $envelopeSender"; |
309 | 309 | |
310 | 310 | // adding some information about the user for debugging purposes. |
311 | - $message = $message . "<br /><br /> Debugging information:" |
|
312 | - . "<br />Timestamp: " . date(DATE_RFC2822) |
|
313 | - . "<br />User agent: " . $request->getServerConstant('HTTP_USER_AGENT') |
|
314 | - . "<br />IP address: " . $request->getServerConstant('REMOTE_ADDR') |
|
315 | - . "<br />Referer: " . $request->getServerConstant('HTTP_REFERER'); |
|
311 | + $message = $message."<br /><br /> Debugging information:" |
|
312 | + . "<br />Timestamp: ".date(DATE_RFC2822) |
|
313 | + . "<br />User agent: ".$request->getServerConstant('HTTP_USER_AGENT') |
|
314 | + . "<br />IP address: ".$request->getServerConstant('REMOTE_ADDR') |
|
315 | + . "<br />Referer: ".$request->getServerConstant('HTTP_REFERER'); |
|
316 | 316 | |
317 | 317 | try { |
318 | 318 | mail($toAddress, $subject, $message, $headers, $params); |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | header("HTTP/1.0 404 Not Found"); |
321 | 321 | $template = $this->twig->loadTemplate('error-page.twig'); |
322 | 322 | if ($this->model->getConfig()->getLogCaughtExceptions()) { |
323 | - error_log('Caught exception: ' . $e->getMessage()); |
|
323 | + error_log('Caught exception: '.$e->getMessage()); |
|
324 | 324 | } |
325 | 325 | |
326 | 326 | echo $template->render( |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | $vocids = ($vocabs !== null && $vocabs !== '') ? explode(' ', $vocabs) : null; |
368 | 368 | $vocabObjects = array(); |
369 | 369 | if ($vocids) { |
370 | - foreach($vocids as $vocid) { |
|
370 | + foreach ($vocids as $vocid) { |
|
371 | 371 | $vocabObjects[] = $this->model->getVocabulary($vocid); |
372 | 372 | } |
373 | 373 | } |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | } catch (Exception $e) { |
379 | 379 | header("HTTP/1.0 404 Not Found"); |
380 | 380 | if ($this->model->getConfig()->getLogCaughtExceptions()) { |
381 | - error_log('Caught exception: ' . $e->getMessage()); |
|
381 | + error_log('Caught exception: '.$e->getMessage()); |
|
382 | 382 | } |
383 | 383 | $this->invokeGenericErrorPage($request, $e->getMessage()); |
384 | 384 | return; |
@@ -394,7 +394,7 @@ discard block |
||
394 | 394 | 'search_count' => $counts, |
395 | 395 | 'languages' => $this->languages, |
396 | 396 | 'search_results' => $searchResults, |
397 | - 'rest' => $parameters->getOffset()>0, |
|
397 | + 'rest' => $parameters->getOffset() > 0, |
|
398 | 398 | 'global_search' => true, |
399 | 399 | 'term' => $request->getQueryParam('q'), |
400 | 400 | 'lang_list' => $langList, |
@@ -419,7 +419,7 @@ discard block |
||
419 | 419 | } catch (Exception $e) { |
420 | 420 | header("HTTP/1.0 404 Not Found"); |
421 | 421 | if ($this->model->getConfig()->getLogCaughtExceptions()) { |
422 | - error_log('Caught exception: ' . $e->getMessage()); |
|
422 | + error_log('Caught exception: '.$e->getMessage()); |
|
423 | 423 | } |
424 | 424 | |
425 | 425 | echo $template->render( |
@@ -440,7 +440,7 @@ discard block |
||
440 | 440 | } catch (Exception $e) { |
441 | 441 | header("HTTP/1.0 404 Not Found"); |
442 | 442 | if ($this->model->getConfig()->getLogCaughtExceptions()) { |
443 | - error_log('Caught exception: ' . $e->getMessage()); |
|
443 | + error_log('Caught exception: '.$e->getMessage()); |
|
444 | 444 | } |
445 | 445 | |
446 | 446 | echo $template->render( |
@@ -457,7 +457,7 @@ discard block |
||
457 | 457 | 'vocab' => $vocab, |
458 | 458 | 'search_results' => $searchResults, |
459 | 459 | 'search_count' => $counts, |
460 | - 'rest' => $parameters->getOffset()>0, |
|
460 | + 'rest' => $parameters->getOffset() > 0, |
|
461 | 461 | 'limit_parent' => $parameters->getParentLimit(), |
462 | 462 | 'limit_type' => $request->getQueryParam('type') ? explode('+', $request->getQueryParam('type')) : null, |
463 | 463 | 'limit_group' => $parameters->getGroupLimit(), |
@@ -582,7 +582,7 @@ discard block |
||
582 | 582 | * Loads and renders the view containing a list of recent changes in the vocabulary. |
583 | 583 | * @param Request $request |
584 | 584 | */ |
585 | - public function invokeChangeList($request, $prop='dc:created') |
|
585 | + public function invokeChangeList($request, $prop = 'dc:created') |
|
586 | 586 | { |
587 | 587 | // set language parameters for gettext |
588 | 588 | $this->setLanguageProperties($request->getLang()); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $starttime = microtime(true); |
72 | 72 | $result = $this->client->query($query); |
73 | 73 | $elapsed = intval(round((microtime(true) - $starttime) * 1000)); |
74 | - if(method_exists($result, 'numRows')) { |
|
74 | + if (method_exists($result, 'numRows')) { |
|
75 | 75 | $numRows = $result->numRows(); |
76 | 76 | $logger->info("[qid $queryId] result: $numRows rows returned in $elapsed ms"); |
77 | 77 | } else { // graph result |
@@ -87,20 +87,20 @@ discard block |
||
87 | 87 | * @param Vocabulary[]|null $vocabs |
88 | 88 | * @return string |
89 | 89 | */ |
90 | - protected function generateFromClause($vocabs=null) { |
|
90 | + protected function generateFromClause($vocabs = null) { |
|
91 | 91 | $graphs = array(); |
92 | 92 | $clause = ''; |
93 | 93 | if (!$vocabs) { |
94 | 94 | return $this->graph !== '?graph' && $this->graph !== NULL ? "FROM <$this->graph>" : ''; |
95 | 95 | } |
96 | - foreach($vocabs as $vocab) { |
|
96 | + foreach ($vocabs as $vocab) { |
|
97 | 97 | $graph = $vocab->getGraph(); |
98 | 98 | if (!in_array($graph, $graphs)) { |
99 | 99 | array_push($graphs, $graph); |
100 | 100 | } |
101 | 101 | } |
102 | 102 | foreach ($graphs as $graph) { |
103 | - if($graph !== NULL) |
|
103 | + if ($graph !== NULL) |
|
104 | 104 | $clause .= "FROM NAMED <$graph> "; |
105 | 105 | } |
106 | 106 | return $clause; |
@@ -698,7 +698,7 @@ discard block |
||
698 | 698 | foreach ($graphs as $graph) { |
699 | 699 | $values[] = "<$graph>"; |
700 | 700 | } |
701 | - return "FILTER (?graph IN (" . implode(',', $values) . "))"; |
|
701 | + return "FILTER (?graph IN (".implode(',', $values)."))"; |
|
702 | 702 | } |
703 | 703 | |
704 | 704 | /** |
@@ -708,16 +708,16 @@ discard block |
||
708 | 708 | * @return string sparql query clauses |
709 | 709 | */ |
710 | 710 | protected function formatLimitAndOffset($limit, $offset) { |
711 | - $limit = ($limit) ? 'LIMIT ' . $limit : ''; |
|
712 | - $offset = ($offset) ? 'OFFSET ' . $offset : ''; |
|
711 | + $limit = ($limit) ? 'LIMIT '.$limit : ''; |
|
712 | + $offset = ($offset) ? 'OFFSET '.$offset : ''; |
|
713 | 713 | // eliminating whitespace and line changes when the conditions aren't needed. |
714 | 714 | $limitandoffset = ''; |
715 | 715 | if ($limit && $offset) { |
716 | - $limitandoffset = "\n" . $limit . "\n" . $offset; |
|
716 | + $limitandoffset = "\n".$limit."\n".$offset; |
|
717 | 717 | } elseif ($limit) { |
718 | - $limitandoffset = "\n" . $limit; |
|
718 | + $limitandoffset = "\n".$limit; |
|
719 | 719 | } elseif ($offset) { |
720 | - $limitandoffset = "\n" . $offset; |
|
720 | + $limitandoffset = "\n".$offset; |
|
721 | 721 | } |
722 | 722 | |
723 | 723 | return $limitandoffset; |
@@ -737,7 +737,7 @@ discard block |
||
737 | 737 | } |
738 | 738 | } |
739 | 739 | |
740 | - return implode(' UNION ', $typePatterns);; |
|
740 | + return implode(' UNION ', $typePatterns); ; |
|
741 | 741 | } |
742 | 742 | |
743 | 743 | /** |
@@ -869,14 +869,14 @@ discard block |
||
869 | 869 | // if search language and UI/display language differ, must also consider case where there is no prefLabel in |
870 | 870 | // the display language; in that case, should use the label with the same language as the matched label |
871 | 871 | $labelcondFallback = ($searchLang != $lang) ? |
872 | - "OPTIONAL { # in case previous OPTIONAL block gives no labels\n" . |
|
872 | + "OPTIONAL { # in case previous OPTIONAL block gives no labels\n". |
|
873 | 873 | "?s skos:prefLabel ?label . FILTER (LANGMATCHES(LANG(?label), LANG(?match))) }" : ""; |
874 | 874 | |
875 | 875 | // Including the labels if there is no query term given. |
876 | 876 | if ($rawterm === '') { |
877 | 877 | $labelClause = "?s skos:prefLabel ?label ."; |
878 | - $labelClause = ($lang) ? $labelClause . " FILTER (LANGMATCHES(LANG(?label), '$lang'))" : $labelClause . ""; |
|
879 | - return $labelClause . " BIND(?label AS ?match)"; |
|
878 | + $labelClause = ($lang) ? $labelClause." FILTER (LANGMATCHES(LANG(?label), '$lang'))" : $labelClause.""; |
|
879 | + return $labelClause." BIND(?label AS ?match)"; |
|
880 | 880 | } |
881 | 881 | |
882 | 882 | /* |
@@ -937,15 +937,15 @@ discard block |
||
937 | 937 | |
938 | 938 | $schemecond = ''; |
939 | 939 | if (!empty($schemes)) { |
940 | - foreach($schemes as $scheme) { |
|
940 | + foreach ($schemes as $scheme) { |
|
941 | 941 | $schemecond .= "?s skos:inScheme <$scheme> . "; |
942 | 942 | } |
943 | 943 | } |
944 | 944 | |
945 | 945 | // extra conditions for parent and group, if specified |
946 | - $parentcond = ($params->getParentLimit()) ? "?s skos:broader+ <" . $params->getParentLimit() . "> ." : ""; |
|
947 | - $groupcond = ($params->getGroupLimit()) ? "<" . $params->getGroupLimit() . "> skos:member ?s ." : ""; |
|
948 | - $pgcond = $parentcond . $groupcond; |
|
946 | + $parentcond = ($params->getParentLimit()) ? "?s skos:broader+ <".$params->getParentLimit()."> ." : ""; |
|
947 | + $groupcond = ($params->getGroupLimit()) ? "<".$params->getGroupLimit()."> skos:member ?s ." : ""; |
|
948 | + $pgcond = $parentcond.$groupcond; |
|
949 | 949 | |
950 | 950 | $orderextra = $this->isDefaultEndpoint() ? $this->graph : ''; |
951 | 951 | |
@@ -1018,9 +1018,9 @@ discard block |
||
1018 | 1018 | $hit['type'][] = $this->shortenUri($typeuri); |
1019 | 1019 | } |
1020 | 1020 | |
1021 | - if(!empty($fields)) { |
|
1021 | + if (!empty($fields)) { |
|
1022 | 1022 | foreach ($fields as $prop) { |
1023 | - $propname = $prop . 's'; |
|
1023 | + $propname = $prop.'s'; |
|
1024 | 1024 | if (isset($row->$propname)) { |
1025 | 1025 | foreach (explode("\n", $row->$propname->getValue()) as $line) { |
1026 | 1026 | $rdata = str_getcsv($line, ',', '"', '"'); |
@@ -1035,7 +1035,7 @@ discard block |
||
1035 | 1035 | $propvals = $rdata[2]; |
1036 | 1036 | } |
1037 | 1037 | |
1038 | - $hit['skos:' . $prop][] = $propvals; |
|
1038 | + $hit['skos:'.$prop][] = $propvals; |
|
1039 | 1039 | } |
1040 | 1040 | } |
1041 | 1041 | } |
@@ -1495,7 +1495,7 @@ discard block |
||
1495 | 1495 | if (!isset($row->label) || $row->label->getLang() === $lang) { |
1496 | 1496 | $ret[$row->object->getUri()] = $val; |
1497 | 1497 | } elseif ($row->label->getLang() === $fallbacklang) { |
1498 | - $val['label'] .= ' (' . $row->label->getLang() . ')'; |
|
1498 | + $val['label'] .= ' ('.$row->label->getLang().')'; |
|
1499 | 1499 | $ret[$row->object->getUri()] = $val; |
1500 | 1500 | } |
1501 | 1501 | } |
@@ -1591,10 +1591,10 @@ discard block |
||
1591 | 1591 | |
1592 | 1592 | $label = null; |
1593 | 1593 | if (isset($row->label)) { |
1594 | - if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang . "-") == 0) { |
|
1594 | + if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang."-") == 0) { |
|
1595 | 1595 | $label = $row->label->getValue(); |
1596 | 1596 | } else { |
1597 | - $label = $row->label->getValue() . " (" . $row->label->getLang() . ")"; |
|
1597 | + $label = $row->label->getValue()." (".$row->label->getLang().")"; |
|
1598 | 1598 | } |
1599 | 1599 | |
1600 | 1600 | } |
@@ -1670,8 +1670,8 @@ discard block |
||
1670 | 1670 | foreach ($result as $row) { |
1671 | 1671 | if (isset($row->top) && isset($row->label)) { |
1672 | 1672 | $label = $row->label->getValue(); |
1673 | - if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang . "-") !== 0) { |
|
1674 | - $label .= ' (' . $row->label->getLang() . ')'; |
|
1673 | + if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang."-") !== 0) { |
|
1674 | + $label .= ' ('.$row->label->getLang().')'; |
|
1675 | 1675 | } |
1676 | 1676 | $top = array('uri' => $row->top->getUri(), 'topConceptOf' => $row->topuri->getUri(), 'label' => $label, 'hasChildren' => filter_var($row->children->getValue(), FILTER_VALIDATE_BOOLEAN)); |
1677 | 1677 | if (isset($row->notation)) { |
@@ -1772,8 +1772,8 @@ discard block |
||
1772 | 1772 | $label = null; |
1773 | 1773 | if (isset($row->childlabel)) { |
1774 | 1774 | $label = $row->childlabel->getValue(); |
1775 | - if ($row->childlabel->getLang() !== $lang && strpos($row->childlabel->getLang(), $lang . "-") !== 0) { |
|
1776 | - $label .= " (" . $row->childlabel->getLang() . ")"; |
|
1775 | + if ($row->childlabel->getLang() !== $lang && strpos($row->childlabel->getLang(), $lang."-") !== 0) { |
|
1776 | + $label .= " (".$row->childlabel->getLang().")"; |
|
1777 | 1777 | } |
1778 | 1778 | |
1779 | 1779 | } |
@@ -1794,8 +1794,8 @@ discard block |
||
1794 | 1794 | } |
1795 | 1795 | if (isset($row->label)) { |
1796 | 1796 | $preflabel = $row->label->getValue(); |
1797 | - if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang . "-") !== 0) { |
|
1798 | - $preflabel .= ' (' . $row->label->getLang() . ')'; |
|
1797 | + if ($row->label->getLang() && $row->label->getLang() !== $lang && strpos($row->label->getLang(), $lang."-") !== 0) { |
|
1798 | + $preflabel .= ' ('.$row->label->getLang().')'; |
|
1799 | 1799 | } |
1800 | 1800 | |
1801 | 1801 | $ret[$uri]['prefLabel'] = $preflabel; |
@@ -1952,10 +1952,10 @@ discard block |
||
1952 | 1952 | 'type' => array($row->type->shorten()), |
1953 | 1953 | ); |
1954 | 1954 | if (isset($row->label)) { |
1955 | - if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang . "-") == 0) { |
|
1955 | + if ($row->label->getLang() == $lang || strpos($row->label->getLang(), $lang."-") == 0) { |
|
1956 | 1956 | $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue(); |
1957 | 1957 | } else { |
1958 | - $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue() . " (" . $row->label->getLang() . ")"; |
|
1958 | + $values[$row->conc->getURI()]['prefLabel'] = $row->label->getValue()." (".$row->label->getLang().")"; |
|
1959 | 1959 | } |
1960 | 1960 | |
1961 | 1961 | } |
@@ -1996,7 +1996,7 @@ discard block |
||
1996 | 1996 | */ |
1997 | 1997 | private function generateChangeListQuery($lang, $offset, $prop) { |
1998 | 1998 | $fcl = $this->generateFromClause(); |
1999 | - $offset = ($offset) ? 'OFFSET ' . $offset : ''; |
|
1999 | + $offset = ($offset) ? 'OFFSET '.$offset : ''; |
|
2000 | 2000 | |
2001 | 2001 | $query = <<<EOQ |
2002 | 2002 | SELECT DISTINCT ?concept ?date ?label $fcl |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | * Returns information (as a graph) for one or more concept URIs |
454 | 454 | * @param mixed $uris concept URI (string) or array of URIs |
455 | 455 | * @param string|null $arrayClass the URI for thesaurus array class, or null if not used |
456 | - * @param \Vocabulary[]|null $vocabs vocabularies to target |
|
456 | + * @param Vocabulary[] $vocabs vocabularies to target |
|
457 | 457 | * @return \Concept[] |
458 | 458 | */ |
459 | 459 | public function queryConceptInfoGraph($uris, $arrayClass = null, $vocabs = array()) { |
@@ -673,7 +673,7 @@ discard block |
||
673 | 673 | |
674 | 674 | /** |
675 | 675 | * Generate a VALUES clause for limiting the targeted graphs. |
676 | - * @param Vocabulary[]|null $vocabs array of Vocabulary objects to target |
|
676 | + * @param Vocabulary[] $vocabs array of Vocabulary objects to target |
|
677 | 677 | * @return string VALUES clause, or "" if not necessary to limit |
678 | 678 | */ |
679 | 679 | protected function formatValuesGraph($vocabs) { |
@@ -853,6 +853,7 @@ discard block |
||
853 | 853 | * @param string $searchLang language code used for matching labels (null means any language) |
854 | 854 | * @param string[] $props properties to target e.g. array('skos:prefLabel','skos:altLabel') |
855 | 855 | * @param boolean $unique restrict results to unique concepts (default: false) |
856 | + * @param string $filterGraph |
|
856 | 857 | * @return string sparql query |
857 | 858 | */ |
858 | 859 | protected function generateConceptSearchQueryInner($term, $lang, $searchLang, $props, $unique, $filterGraph) |
@@ -1118,6 +1119,7 @@ discard block |
||
1118 | 1119 | /** |
1119 | 1120 | * Generates sparql query clauses used for creating the alphabetical index. |
1120 | 1121 | * @param string $letter the letter (or special class) to search for |
1122 | + * @param string $lang |
|
1121 | 1123 | * @return array of sparql query clause strings |
1122 | 1124 | */ |
1123 | 1125 | private function formatFilterConditions($letter, $lang) { |
@@ -46,12 +46,16 @@ discard block |
||
46 | 46 | $this->client = new EasyRdf\Sparql\Client($endpoint); |
47 | 47 | |
48 | 48 | // set graphClause so that it can be used by all queries |
49 | - if ($this->isDefaultEndpoint()) // default endpoint; query any graph (and catch it in a variable) |
|
49 | + if ($this->isDefaultEndpoint()) { |
|
50 | + // default endpoint; query any graph (and catch it in a variable) |
|
50 | 51 | { |
51 | 52 | $this->graphClause = "GRAPH $graph"; |
52 | - } elseif ($graph) // query a specific graph |
|
53 | + } |
|
54 | + } elseif ($graph) { |
|
55 | + // query a specific graph |
|
53 | 56 | { |
54 | 57 | $this->graphClause = "GRAPH <$graph>"; |
58 | + } |
|
55 | 59 | } else // query the default graph |
56 | 60 | { |
57 | 61 | $this->graphClause = ""; |
@@ -100,8 +104,9 @@ discard block |
||
100 | 104 | } |
101 | 105 | } |
102 | 106 | foreach ($graphs as $graph) { |
103 | - if($graph !== NULL) |
|
104 | - $clause .= "FROM NAMED <$graph> "; |
|
107 | + if($graph !== NULL) { |
|
108 | + $clause .= "FROM NAMED <$graph> "; |
|
109 | + } |
|
105 | 110 | } |
106 | 111 | return $clause; |
107 | 112 | } |
@@ -1847,8 +1852,7 @@ discard block |
||
1847 | 1852 | if (sizeof($ret) > 0) { |
1848 | 1853 | // existing concept, with children |
1849 | 1854 | return $ret; |
1850 | - } |
|
1851 | - else { |
|
1855 | + } else { |
|
1852 | 1856 | // nonexistent concept |
1853 | 1857 | return null; |
1854 | 1858 | } |
@@ -64,15 +64,15 @@ discard block |
||
64 | 64 | private function initializeVocabularies() |
65 | 65 | { |
66 | 66 | if (!file_exists($this->getConfig()->getVocabularyConfigFile())) { |
67 | - throw new Exception($this->getConfig()->getVocabularyConfigFile() . ' is missing, please provide one.'); |
|
67 | + throw new Exception($this->getConfig()->getVocabularyConfigFile().' is missing, please provide one.'); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | try { |
71 | 71 | // use APC user cache to store parsed vocabularies.ttl configuration |
72 | 72 | if ($this->cache->isAvailable()) { |
73 | 73 | // @codeCoverageIgnoreStart |
74 | - $key = realpath($this->getConfig()->getVocabularyConfigFile()) . ", " . filemtime($this->getConfig()->getVocabularyConfigFile()); |
|
75 | - $nskey = "namespaces of " . $key; |
|
74 | + $key = realpath($this->getConfig()->getVocabularyConfigFile()).", ".filemtime($this->getConfig()->getVocabularyConfigFile()); |
|
75 | + $nskey = "namespaces of ".$key; |
|
76 | 76 | $this->graph = $this->cache->fetch($key); |
77 | 77 | $this->namespaces = $this->cache->fetch($nskey); |
78 | 78 | if ($this->graph === false || $this->namespaces === false) { // was not found in cache |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | $this->parseVocabularies($this->getConfig()->getVocabularyConfigFile()); |
86 | 86 | } |
87 | 87 | } catch (Exception $e) { |
88 | - echo "Error: " . $e->getMessage(); |
|
88 | + echo "Error: ".$e->getMessage(); |
|
89 | 89 | } |
90 | 90 | } |
91 | 91 | |
@@ -456,7 +456,7 @@ discard block |
||
456 | 456 | public function getVocabularyCategories() |
457 | 457 | { |
458 | 458 | $cats = $this->graph->allOfType('skos:Concept'); |
459 | - if(empty($cats)) { |
|
459 | + if (empty($cats)) { |
|
460 | 460 | return array(new VocabularyCategory($this, null)); |
461 | 461 | } |
462 | 462 | |
@@ -629,7 +629,7 @@ discard block |
||
629 | 629 | // using apc cache for the resource if available |
630 | 630 | if ($this->cache->isAvailable()) { |
631 | 631 | // @codeCoverageIgnoreStart |
632 | - $key = 'fetch: ' . $uri; |
|
632 | + $key = 'fetch: '.$uri; |
|
633 | 633 | $resource = $this->cache->fetch($key); |
634 | 634 | if ($resource === null || $resource === false) { // was not found in cache, or previous request failed |
635 | 635 | $resource = $this->fetchResourceFromUri($uri); |
@@ -650,7 +650,7 @@ discard block |
||
650 | 650 | */ |
651 | 651 | public function getSparqlImplementation($dialect, $endpoint, $graph) |
652 | 652 | { |
653 | - $classname = $dialect . "Sparql"; |
|
653 | + $classname = $dialect."Sparql"; |
|
654 | 654 | |
655 | 655 | return new $classname($endpoint, $graph, $this); |
656 | 656 | } |
@@ -108,10 +108,12 @@ discard block |
||
108 | 108 | |
109 | 109 | private function initializeNamespaces() { |
110 | 110 | foreach ($this->namespaces as $prefix => $fullUri) { |
111 | - if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) // if not already defined |
|
111 | + if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) { |
|
112 | + // if not already defined |
|
112 | 113 | { |
113 | 114 | EasyRdf\RdfNamespace::set($prefix, $fullUri); |
114 | 115 | } |
116 | + } |
|
115 | 117 | } |
116 | 118 | } |
117 | 119 | |
@@ -423,10 +425,12 @@ discard block |
||
423 | 425 | // register vocabulary ids as RDF namespace prefixes |
424 | 426 | $prefix = preg_replace('/\W+/', '', $voc->getId()); // strip non-word characters |
425 | 427 | try { |
426 | - if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) // if not already defined |
|
428 | + if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) { |
|
429 | + // if not already defined |
|
427 | 430 | { |
428 | 431 | EasyRdf\RdfNamespace::set($prefix, $voc->getUriSpace()); |
429 | 432 | } |
433 | + } |
|
430 | 434 | |
431 | 435 | } catch (Exception $e) { |
432 | 436 | // not valid as namespace identifier, ignore |
@@ -538,8 +542,9 @@ discard block |
||
538 | 542 | } |
539 | 543 | |
540 | 544 | foreach ($vocabs as $vocab) { |
541 | - if ($vocab->getConceptLabel($uri, null) !== null) |
|
542 | - return $vocab; |
|
545 | + if ($vocab->getConceptLabel($uri, null) !== null) { |
|
546 | + return $vocab; |
|
547 | + } |
|
543 | 548 | } |
544 | 549 | |
545 | 550 | // if the URI couldn't be found, fall back to the first vocabulary |
@@ -50,6 +50,7 @@ discard block |
||
50 | 50 | * @param Vocabulary $vocab |
51 | 51 | * @param EasyRdf\Resource $resource |
52 | 52 | * @param EasyRdf\Graph $graph |
53 | + * @param string|null $clang |
|
53 | 54 | */ |
54 | 55 | public function __construct($model, $vocab, $resource, $graph, $clang) |
55 | 56 | { |
@@ -526,6 +527,7 @@ discard block |
||
526 | 527 | |
527 | 528 | /** |
528 | 529 | * Gets the groups/arrays the concept belongs to. |
530 | + * @param boolean $includeArrays |
|
529 | 531 | */ |
530 | 532 | public function getReverseResources($includeArrays) { |
531 | 533 | $groups = array(); |
@@ -121,9 +121,9 @@ discard block |
||
121 | 121 | |
122 | 122 | // 3. label in a subtag of the current language |
123 | 123 | // We need to check all the labels in case one of them matches a subtag of the current language |
124 | - foreach($this->resource->allLiterals('skos:prefLabel') as $label) { |
|
124 | + foreach ($this->resource->allLiterals('skos:prefLabel') as $label) { |
|
125 | 125 | // the label lang code is a subtag of the UI lang eg. en-GB - create a new literal with the main language |
126 | - if ($label !== null && strpos($label->getLang(), $lang . '-') === 0) { |
|
126 | + if ($label !== null && strpos($label->getLang(), $lang.'-') === 0) { |
|
127 | 127 | return EasyRdf\Literal::create($label, $lang); |
128 | 128 | } |
129 | 129 | } |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | // 4. label in any language, including literal with empty language tag |
132 | 132 | $label = $this->resource->label(); |
133 | 133 | if ($label !== null) { |
134 | - return $label->getLang() ? $label->getValue() . " (" . $label->getLang() . ")" : $label->getValue(); |
|
134 | + return $label->getLang() ? $label->getValue()." (".$label->getLang().")" : $label->getValue(); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | // empty |
@@ -462,14 +462,14 @@ discard block |
||
462 | 462 | |
463 | 463 | // making a human readable string from the timestamps |
464 | 464 | if ($created != '') { |
465 | - $ret = gettext('skosmos:created') . ' ' . (Punic\Calendar::formatDate($created, 'short')); |
|
465 | + $ret = gettext('skosmos:created').' '.(Punic\Calendar::formatDate($created, 'short')); |
|
466 | 466 | } |
467 | 467 | |
468 | 468 | if ($modified != '') { |
469 | 469 | if ($created != '') { |
470 | - $ret .= ', ' . gettext('skosmos:modified') . ' ' . (Punic\Calendar::formatDate($modified, 'short')); |
|
470 | + $ret .= ', '.gettext('skosmos:modified').' '.(Punic\Calendar::formatDate($modified, 'short')); |
|
471 | 471 | } else { |
472 | - $ret .= ' ' . ucfirst(gettext('skosmos:modified')) . ' ' . (Punic\Calendar::formatDate($modified, 'short')); |
|
472 | + $ret .= ' '.ucfirst(gettext('skosmos:modified')).' '.(Punic\Calendar::formatDate($modified, 'short')); |
|
473 | 473 | } |
474 | 474 | |
475 | 475 | } |
@@ -477,12 +477,12 @@ discard block |
||
477 | 477 | trigger_error($e->getMessage(), E_USER_WARNING); |
478 | 478 | $ret = ''; |
479 | 479 | if ($this->resource->get('dc:modified')) { |
480 | - $modified = (string) $this->resource->get('dc:modified'); |
|
481 | - $ret = gettext('skosmos:modified') . ' ' . $modified; |
|
480 | + $modified = (string)$this->resource->get('dc:modified'); |
|
481 | + $ret = gettext('skosmos:modified').' '.$modified; |
|
482 | 482 | } |
483 | 483 | if ($this->resource->get('dc:created')) { |
484 | - $created .= (string) $this->resource->get('dc:created'); |
|
485 | - $ret .= ' ' . gettext('skosmos:created') . ' ' . $created; |
|
484 | + $created .= (string)$this->resource->get('dc:created'); |
|
485 | + $ret .= ' '.gettext('skosmos:created').' '.$created; |
|
486 | 486 | } |
487 | 487 | } |
488 | 488 | return $ret; |
@@ -592,7 +592,7 @@ discard block |
||
592 | 592 | $ret = array(); |
593 | 593 | foreach ($labels as $lit) { |
594 | 594 | // filtering away subsets of the current language eg. en vs en-GB |
595 | - if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang() . '-') !== 0) { |
|
595 | + if ($lit->getLang() != $this->clang && strpos($lit->getLang(), $this->getEnvLang().'-') !== 0) { |
|
596 | 596 | $prop = in_array($lit, $prefLabels) ? 'skos:prefLabel' : 'skos:altLabel'; |
597 | 597 | $ret[$this->literalLanguageToString($lit)][] = new ConceptPropertyValueLiteral($lit, $prop); |
598 | 598 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | { |
25 | 25 | $label = is_string($this->getLabel()) ? $this->getLabel() : $this->getLabel()->getValue(); |
26 | 26 | if ($this->vocab->getConfig()->sortByNotation()) { |
27 | - $label = $this->getNotation() . $label; |
|
27 | + $label = $this->getNotation().$label; |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | return $label; |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | public function getReifiedPropertyValues() { |
121 | 121 | $ret = array(); |
122 | 122 | $props = $this->resource->propertyUris(); |
123 | - foreach($props as $prop) { |
|
123 | + foreach ($props as $prop) { |
|
124 | 124 | $prop = (EasyRdf\RdfNamespace::shorten($prop) !== null) ? EasyRdf\RdfNamespace::shorten($prop) : $prop; |
125 | 125 | foreach ($this->resource->allLiterals($prop) as $val) { |
126 | 126 | if ($prop !== 'rdf:value' && $this->resource->get($prop)) { // shown elsewhere |