Skip to content

Commit

Permalink
Merge pull request #898 from NatLibFi/isothes-property-order
Browse files Browse the repository at this point in the history
Set the order of isothes hierarchy properties
  • Loading branch information
joelit authored Nov 19, 2019
2 parents 4e4d2c6 + 508c256 commit 88f6bae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/Concept.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class Concept extends VocabularyDataObject
public function __construct($model, $vocab, $resource, $graph, $clang)
{
parent::__construct($model, $vocab, $resource);
$this->order = array("rdf:type", "dc:isReplacedBy", "skos:definition", "skos:broader", "skos:narrower", "skos:related", "skos:altLabel", "skosmos:memberOf", "skos:note", "skos:scopeNote", "skos:historyNote", "rdfs:comment", "dc11:source", "dc:source", "skos:prefLabel");
$this->order = array("rdf:type", "dc:isReplacedBy", "skos:definition", "skos:broader", "isothes:broaderGeneric", "isothes:broaderPartitive", "isothes:broaderInstantial", "skos:narrower", "isothes:narrowerGeneric", "isothes:narrowerPartitive", "isothes:narrowerInstantial", "skos:related", "skos:altLabel", "skosmos:memberOf", "skos:note", "skos:scopeNote", "skos:historyNote", "rdfs:comment", "dc11:source", "dc:source", "skos:prefLabel");
$this->graph = $graph;
$this->clang = $clang;
// setting the Punic plugins locale for localized datetime conversions
Expand Down

0 comments on commit 88f6bae

Please sign in to comment.