@@ -76,10 +76,12 @@ |
||
76 | 76 | */ |
77 | 77 | public function getUriSpace() |
78 | 78 | { |
79 | - if ($this->urispace === null) // initialize cache |
|
79 | + if ($this->urispace === null) { |
|
80 | + // initialize cache |
|
80 | 81 | { |
81 | 82 | $this->urispace = $this->resource->getLiteral('void:uriSpace')->getValue(); |
82 | 83 | } |
84 | + } |
|
83 | 85 | |
84 | 86 | return $this->urispace; |
85 | 87 | } |
@@ -598,6 +598,9 @@ |
||
598 | 598 | return $bydate; |
599 | 599 | } |
600 | 600 | |
601 | + /** |
|
602 | + * @param string $lang |
|
603 | + */ |
|
601 | 604 | public function getTitle($lang=null) { |
602 | 605 | return $this->config->getTitle($lang); |
603 | 606 | } |
@@ -10,6 +10,9 @@ |
||
10 | 10 | */ |
11 | 11 | class VocabularyCategory extends DataObject |
12 | 12 | { |
13 | + /** |
|
14 | + * @param Model $model |
|
15 | + */ |
|
13 | 16 | public function __construct($model, $resource) |
14 | 17 | { |
15 | 18 | if (!($model instanceof Model)) { |
@@ -23,6 +23,9 @@ |
||
23 | 23 | } |
24 | 24 | } |
25 | 25 | |
26 | + /** |
|
27 | + * @param string $name |
|
28 | + */ |
|
26 | 29 | private function getConstant($name, $default) |
27 | 30 | { |
28 | 31 | if (defined($name) && constant($name)) { |
@@ -55,6 +55,7 @@ |
||
55 | 55 | |
56 | 56 | /** |
57 | 57 | * Steps back, restoring the previous character or statement read() to the input buffer. |
58 | + * @param string $chars |
|
58 | 59 | */ |
59 | 60 | protected function unread($chars) |
60 | 61 | { |
@@ -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 | } |
@@ -79,10 +79,12 @@ |
||
79 | 79 | if ($sortable !== null) { |
80 | 80 | uksort($sortable, array($this, 'mycompare')); |
81 | 81 | foreach ($sortable as $prop => $vals) { |
82 | - if (is_array($prop)) // the ConceptProperty objects have their own sorting methods |
|
82 | + if (is_array($prop)) { |
|
83 | + // the ConceptProperty objects have their own sorting methods |
|
83 | 84 | { |
84 | 85 | ksort($sortable[$prop]); |
85 | 86 | } |
87 | + } |
|
86 | 88 | } |
87 | 89 | } |
88 | 90 | return $sortable; |
@@ -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(); |
@@ -312,8 +312,7 @@ discard block |
||
312 | 312 | foreach ($res->propertyUris() as $prop) { |
313 | 313 | $this->addPropertyValues($res, $prop, $seen); |
314 | 314 | } |
315 | - } |
|
316 | - else { |
|
315 | + } else { |
|
317 | 316 | foreach ($props as $prop) { |
318 | 317 | if ($res->hasProperty($prop)) { |
319 | 318 | $this->addPropertyValues($res, $prop, $seen); |
@@ -850,8 +849,7 @@ discard block |
||
850 | 849 | if (!in_array($vocabUriSpace, $context, true)) { |
851 | 850 | if (!isset($context[$vocabPrefix])) { |
852 | 851 | $context[$vocabPrefix] = $vocabUriSpace; |
853 | - } |
|
854 | - else if ($context[$vocabPrefix] !== $vocabUriSpace) { |
|
852 | + } else if ($context[$vocabPrefix] !== $vocabUriSpace) { |
|
855 | 853 | $i = 2; |
856 | 854 | while (isset($context[$vocabPrefix . $i]) && $context[$vocabPrefix . $i] !== $vocabUriSpace) { |
857 | 855 | $i += 1; |
@@ -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 | |
@@ -425,10 +427,12 @@ discard block |
||
425 | 427 | // register vocabulary ids as RDF namespace prefixes |
426 | 428 | $prefix = preg_replace('/\W+/', '', $voc->getId()); // strip non-word characters |
427 | 429 | try { |
428 | - if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) // if not already defined |
|
430 | + if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) { |
|
431 | + // if not already defined |
|
429 | 432 | { |
430 | 433 | EasyRdf\RdfNamespace::set($prefix, $voc->getUriSpace()); |
431 | 434 | } |
435 | + } |
|
432 | 436 | |
433 | 437 | } catch (Exception $e) { |
434 | 438 | // not valid as namespace identifier, ignore |
@@ -551,8 +555,9 @@ discard block |
||
551 | 555 | |
552 | 556 | // no preferred vocabulary, or it was not found, search in which vocabulary the concept has a label |
553 | 557 | foreach ($vocabs as $vocab) { |
554 | - if ($vocab->getConceptLabel($uri, null) !== null) |
|
555 | - return $vocab; |
|
558 | + if ($vocab->getConceptLabel($uri, null) !== null) { |
|
559 | + return $vocab; |
|
560 | + } |
|
556 | 561 | } |
557 | 562 | |
558 | 563 | // if the URI couldn't be found, fall back to the first vocabulary |
@@ -12,6 +12,9 @@ discard block |
||
12 | 12 | /** content language */ |
13 | 13 | private $clang; |
14 | 14 | |
15 | + /** |
|
16 | + * @param Model $model |
|
17 | + */ |
|
15 | 18 | public function __construct($model, $vocab, $resource, $prop, $clang = '') |
16 | 19 | { |
17 | 20 | parent::__construct($model, $vocab, $resource); |
@@ -76,6 +79,9 @@ discard block |
||
76 | 79 | return $this->vocab->getTitle(); |
77 | 80 | } |
78 | 81 | |
82 | + /** |
|
83 | + * @param ConceptPropertyValue $member |
|
84 | + */ |
|
79 | 85 | public function addSubMember($member, $lang = '') |
80 | 86 | { |
81 | 87 | $label = $member->getLabel($lang) ? $member->getLabel($lang) : $member->getLabel(); |