Lines Matching refs:id

68         $id = 'id',  argument
78 $this->url4id = $id;
113 public function siocURL($type, $id, $page = "") argument
117 if ($id) {
124 $id_part = $this->urlseparator . $myID . $this->urlequal . $id;
242 public function addForum($id, $url) argument
244 $this->forums[$id] = $url;
247 public function addUser($id, $url) argument
249 $this->users[$id] = $url;
269 foreach ($this->forums as $id => $url) {
285 foreach ($this->forums as $id => $url) {
288 … $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('forum', $id) . "\"/>\n";
301 foreach ($this->users as $id => $url) {
304 … $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('user', $id) . "\"/>\n";
330 private $id; variable in SIOCUser
343 $id, argument
354 $this->id = $id;
428 private $id; variable in SIOCThread
444 …public function __construct($id, $url, $page, $views = '', $tags = array(), $subject = '', $create… argument
446 $this->id = $id;
458 public function addPost($id, $url, $prev = '', $next = '') argument
460 $this->posts[$id] = array("url" => $url, "prev" => $prev, "next" => $next);
464 public function addRelated($id, $url) argument
466 $this->related[$id] = $url;
474 public function addParentForum($id, $url) argument
476 $this->parents[$id] = $url;
496 foreach ($this->parents as $id => $uri) {
499 … $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('forum', $id) . "\"/>\n";
506 foreach ($this->tags as $id => $tag) {
534 foreach ($this->related as $id => $url) {
542 foreach ($this->posts as $id => $data) {
545 … $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('post', $id) . "\"/>\n";
557 …$rdf .= "\r<rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('thread', $this->id, $this->page + 1) . …
578 private $id; variable in SIOCForum
595 $id, argument
605 $this->id = $id;
620 public function addPost($id, $url) argument
622 $this->posts[$id] = $url;
625 public function addThread($id, $url) argument
627 $this->threads[$id] = $url;
630 public function addParentForum($id, $url) argument
632 $this->parents[$id] = $url;
658 foreach ($this->parents as $id => $uri) {
661 … $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('forum', $id) . "\"/>\n";
668 foreach ($this->threads as $id => $uri) {
671 … $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('thread', $id) . "\"/>\n";
678 foreach ($this->posts as $id => $url) {
681 … $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('post', $id) . "\"/>\n";
754 …$rdf .= "\r<rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('forum', $this->id, $this->page + 1) . "…
813 public function addComment($id, $url) argument
815 $this->comments[$id] = $url;
818 public function addReplyOf($id, $url) argument
820 $this->reply_of[$id] = $url;
893 foreach ($this->has_part as $id => $url) {
900 foreach ($this->reply_of as $id => $url) {
903 … $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('post', $id) . "\"/>\n";
909 foreach ($this->comments as $id => $url) {
915 … $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('comment', $id) . "\"/>\n";