summaryrefslogtreecommitdiff
path: root/utils/refs.php
blob: 0589cff7f59467b6c8fcc02334fbb9a09ebe5fb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php /* -*- Mode: php; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */

include_once($UTIL_DIR . "/modules.php");

class Ref {
	public $mod;
	public $id;

	function show()
	{
		$str = "";
		$module = loadModule($this->mod);
		if($module && method_exists($module, "showRef")) {
			$str .= "<div class=\"ref\">\n";
			$str .= /*"[".$this->mod."] - ".*/$module->showRef($this->id);
			$str .= "</div>\n";
		}
		return $str;
	}

	function Ref($mod, $id)
	{
		$this->mod = $mod;
		$this->id = $id;
	}
}

class Refs {
	public $refs = array();

	function show()
	{
		$str = "";
		$str .= "<div class=\"refs\">\n";
		$str .= "  <div class=\"refs_header\">References:</div>\n";
		foreach($this->refs as $ref) {
			$str .= $ref->show();
		}
		$str .= "</div>";
		return $str;
	}

  public function write($fp, $indent)
  {
    if($this->refs) {
      fwrite($fp, $indent."<refs>\n");
      foreach($this->refs as $ref) {
        fwrite($fp, $indent."  <ref mod=\"".$ref->mod."\" id=\"".$ref->id."\"/>\n");
      }
      fwrite($fp, $indent."</refs>\n");
    }
  }

	public function add($ref)
	{
		array_push($this->refs, $ref);
	}

  public function Refs($refsnode = NULL)
	{
		if(!$refsnode) return;

		$refs = $refsnode->getElementsByTagName('ref');
		foreach($refs as $r) {
			$ref = new Ref($r->getAttribute('mod'),
										 $r->getAttribute('id'));
			$this->add($ref);
		}

	}

}

function refsAddWidget($form, $refslist)
{
  $form->addWidget(new ListEditor("References:", "refslist",
                                  new LineEdit("ID", "ref_id"),
                                  new LineEdit("Module", "ref_mod"),
                                  $refslist, true));
}

function refsAddHiddenWidget($form, $lst)
{
  $vallst = array();
  $vallst["refslist_hidden"] = serialize(refsGetCommaListFromRefs($lst));
  $form->addWidget(new Hidden($vallst));
}

function refsGetFromHidden($vals)
{
  $refslist = unserialize($vals["refslist_hidden"]);
  return $refslist;
}

function refsGetCommaListFromRefs($refs)
{
  $lst = array();
  foreach($refs->refs as $ref) {
    array_push($lst, $ref->mod.":".$ref->id);
  }
  return $lst;
}

function refsGetRefsFromHidden($vals)
{
  $r = refsGetFromHidden($vals);

  $refs = new Refs();
  foreach($r as $k => $val) {
    $v = explode(":", $val);
    $refmod = $v[0];
    $refid = $v[1];
    $ref = new Ref($refmod, $refid);
    $refs->add($ref);
  }

  return $refs;
}

function refsGetRefsFromWidget()
{
  $lst = refsGetValuesFromWidget();
  $refs = new Refs();
  foreach($lst as $val) {
    $v = explode(":", $val);
    $refmod = $v[0];
    $refid = $v[1];
    $ref = new Ref($refmod, $refid);
    $refs->add($ref);
  }
  return $refs;
}

function refsGetValuesFromWidget()
{
  global $GLOBALS;
  return $GLOBALS["refslist"];
}
?>