Home
last modified time | relevance | path

Searched refs:addTriple (Results 1 – 6 of 6) sorted by relevance

/plugin/strata/_test/
H A Dstrataquerytest.inc.php31 $this->_triples->addTriple($bob, 'class', 'person', 'wiki');
32 $this->_triples->addTriple($alice, 'class', 'person', 'wiki');
33 $this->_triples->addTriple($carol, 'class', 'person', 'wiki');
35 $this->_triples->addTriple($bob, 'name', 'Bob', 'wiki');
36 $this->_triples->addTriple($alice, 'name', 'Alice', 'wiki');
37 $this->_triples->addTriple($carol, 'name', 'Carol', 'wiki');
39 $this->_triples->addTriple($bob, 'identifier', 'Β', 'wiki');
40 $this->_triples->addTriple($alice, 'identifier', 'α', 'wiki');
41 $this->_triples->addTriple($carol, 'identifier', 'γ', 'wiki');
43 $this->_triples->addTriple(
[all...]
H A Dstorage.test.php14 $OK = $this->_triples->addTriple('Bob', 'knows', 'Alice', 'wiki');
34 $OK = $this->_triples->addTriple('Bob', 'knows', 'Alice', 'wiki');
36 $OK =$this->_triples->addTriple('Alice', 'knows', 'Carol', 'wiki');
47 $OK = $this->_triples->addTriple('*', 'select', '%', 'wiki');
49 $OK =$this->_triples->addTriple('_', '(', '`', 'wiki');
51 $OK =$this->_triples->addTriple(';', '\'', '"', 'wiki');
H A Dstorage_graphs.test.php14 $OK = $this->_triples->addTriple('Bob', 'knows', 'Alice', 'knowledgebase of bob');
16 $OK = $this->_triples->addTriple('Alice', 'knows', 'Carol', 'knowledgebase of alice');
H A Dstorage_removes.test.php16 $OK = $this->_triples->addTriple('Bob', 'knows', 'Alice', 'wiki');
18 $OK =$this->_triples->addTriple('Alice', 'knows', 'Carol', 'wiki');
20 $OK =$this->_triples->addTriple('Alice', 'dislikes', 'Carol', 'wiki');
/plugin/strata/
H A Daction.php142 $triples->addTriple($id, $util->getTitleKey(), $title, $id);
/plugin/strata/helper/
H A Dtriples.php205 function addTriple($subject, $predicate, $object, $graph) {
187 function addTriple($subject, $predicate, $object, $graph) { global() function in helper_plugin_strata_triples