@@ -594,14 +594,14 @@ |
||
| 594 | 594 | { |
| 595 | 595 | $changelist = $this->getSparql()->queryChangeList($clang, $offset, $prop); |
| 596 | 596 | $bydate = array(); |
| 597 | - foreach($changelist as $concept) { |
|
| 597 | + foreach ($changelist as $concept) { |
|
| 598 | 598 | $concept['datestring'] = Punic\Calendar::formatDate($concept['date'], 'medium', $lang); |
| 599 | - $bydate[Punic\Calendar::getMonthName($concept['date'], 'wide', $lang, true) . Punic\Calendar::format($concept['date'], ' y', $lang) ][strtolower($concept['prefLabel'])] = $concept; |
|
| 599 | + $bydate[Punic\Calendar::getMonthName($concept['date'], 'wide', $lang, true) . Punic\Calendar::format($concept['date'], ' y', $lang)][strtolower($concept['prefLabel'])] = $concept; |
|
| 600 | 600 | } |
| 601 | 601 | return $bydate; |
| 602 | 602 | } |
| 603 | 603 | |
| 604 | - public function getTitle($lang=null) { |
|
| 604 | + public function getTitle($lang = null) { |
|
| 605 | 605 | return $this->config->getTitle($lang); |
| 606 | 606 | } |
| 607 | 607 | |
@@ -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 | } |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | * @param string $property the property to query |
| 31 | 31 | * @param string $lang preferred language for the literal, |
| 32 | 32 | */ |
| 33 | - private function getLiteral($property, $lang=null) |
|
| 33 | + private function getLiteral($property, $lang = null) |
|
| 34 | 34 | { |
| 35 | 35 | if (!isset($lang)) {; |
| 36 | 36 | $lang = $this->getEnvLang(); |
@@ -43,8 +43,9 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | // not found with selected language, try any language |
| 45 | 45 | $literal = $this->resource->getLiteral($property); |
| 46 | - if ($literal) |
|
| 47 | - return $literal->getValue(); |
|
| 46 | + if ($literal) { |
|
| 47 | + return $literal->getValue(); |
|
| 48 | + } |
|
| 48 | 49 | } |
| 49 | 50 | |
| 50 | 51 | /** |
@@ -85,8 +86,9 @@ discard block |
||
| 85 | 86 | public function getShortName() |
| 86 | 87 | { |
| 87 | 88 | $shortname = $this->getLiteral('skosmos:shortName'); |
| 88 | - if ($shortname) |
|
| 89 | - return $shortname; |
|
| 89 | + if ($shortname) { |
|
| 90 | + return $shortname; |
|
| 91 | + } |
|
| 90 | 92 | |
| 91 | 93 | // if no shortname exists fall back to the id |
| 92 | 94 | return $this->getId(); |
@@ -205,10 +207,12 @@ discard block |
||
| 205 | 207 | $ret = array(); |
| 206 | 208 | foreach ($resources as $res) { |
| 207 | 209 | $prop = $res->getURI(); |
| 208 | - if (EasyRdf_Namespace::shorten($prop) !== null) // shortening property labels if possible |
|
| 210 | + if (EasyRdf_Namespace::shorten($prop) !== null) { |
|
| 211 | + // shortening property labels if possible |
|
| 209 | 212 | { |
| 210 | 213 | $prop = EasyRdf_Namespace::shorten($prop); |
| 211 | 214 | } |
| 215 | + } |
|
| 212 | 216 | |
| 213 | 217 | $ret[] = $prop; |
| 214 | 218 | } |
@@ -225,10 +229,12 @@ discard block |
||
| 225 | 229 | $resources = $this->resource->allResources("skosmos:hasMultiLingualProperty"); |
| 226 | 230 | foreach ($resources as $res) { |
| 227 | 231 | $prop = $res->getURI(); |
| 228 | - if (EasyRdf_Namespace::shorten($prop) !== null) // shortening property labels if possible |
|
| 232 | + if (EasyRdf_Namespace::shorten($prop) !== null) { |
|
| 233 | + // shortening property labels if possible |
|
| 229 | 234 | { |
| 230 | 235 | $prop = EasyRdf_Namespace::shorten($prop); |
| 231 | 236 | } |
| 237 | + } |
|
| 232 | 238 | |
| 233 | 239 | if ($prop === $property) { |
| 234 | 240 | return true; |
@@ -329,11 +335,12 @@ discard block |
||
| 329 | 335 | public function getId() |
| 330 | 336 | { |
| 331 | 337 | $uriparts = explode("#", $this->resource->getURI()); |
| 332 | - if (count($uriparts) != 1) |
|
| 333 | - // hash namespace |
|
| 338 | + if (count($uriparts) != 1) { |
|
| 339 | + // hash namespace |
|
| 334 | 340 | { |
| 335 | 341 | return $uriparts[1]; |
| 336 | 342 | } |
| 343 | + } |
|
| 337 | 344 | |
| 338 | 345 | // slash namespace |
| 339 | 346 | $uriparts = explode("/", $this->resource->getURI()); |