-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathissue.php
More file actions
executable file
·153 lines (127 loc) · 5.65 KB
/
Copy pathissue.php
File metadata and controls
executable file
·153 lines (127 loc) · 5.65 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
/********************************************************************************
* *
* (c) Copyright 2010 The Open University UK *
* *
* This software is freely distributed in accordance with *
* the GNU Lesser General Public (LGPL) license, version 3 or later *
* as published by the Free Software Foundation. *
* For details see LGPL: http://www.fsf.org/licensing/licenses/lgpl.html *
* and GPL: http://www.fsf.org/licensing/licenses/gpl-3.0.html *
* *
* This software is provided by the copyright holders and contributors "as is" *
* and any express or implied warranties, including, but not limited to, the *
* implied warranties of merchantability and fitness for a particular purpose *
* are disclaimed. In no event shall the copyright owner or contributors be *
* liable for any direct, indirect, incidental, special, exemplary, or *
* consequential damages (including, but not limited to, procurement of *
* substitute goods or services; loss of use, data, or profits; or business *
* interruption) however caused and on any theory of liability, whether in *
* contract, strict liability, or tort (including negligence or otherwise) *
* arising in any way out of the use of this software, even if advised of the *
* possibility of such damage. *
* *
********************************************************************************/
include_once("config.php");
include_once("includes/header.php");
global $USER;
$nodeid = required_param("nodeid",PARAM_TEXT);
// default parameters
$start = optional_param("start",0,PARAM_INT);
$max = optional_param("max",20,PARAM_INT);
$orderby = optional_param("orderby","date",PARAM_ALPHA);
$sort = optional_param("sort","DESC",PARAM_ALPHA);
// filter parameters
$direction = optional_param("direction","right",PARAM_ALPHA);
$filtergroup = optional_param("filtergroup","",PARAM_TEXT);
$filterlist = optional_param("filterlist","",PARAM_TEXT);
$filternodetypes = optional_param("filternodetypes","",PARAM_TEXT);
$filterusers = optional_param("filterusers","",PARAM_TEXT);
// network search parameters
$netnodeid = optional_param("netnodeid","",PARAM_TEXT);
$netq = optional_param("netq","",PARAM_TEXT);
$netscope = optional_param("netscope","",PARAM_TEXT);
$netlinkgroup = optional_param("netlinkgroup","",PARAM_TEXT);
$netdepth = optional_param("netdepth",1,PARAM_INT);
$netdirection = optional_param("netdirection",'both',PARAM_TEXT);
$netlabelmatch = optional_param("netlabelmatch",'false',PARAM_TEXT);
$agentlastrun = optional_param("agentlastrun",'',PARAM_TEXT);
$node = getNode($nodeid);
if($node instanceof Error){
echo "<h1>Idea not found</h1>";
include_once("includes/footer.php");
die;
}
$args = array();
$args["nodeid"] = $nodeid;
$args["start"] = $start;
$args["max"] = $max;
$args["orderby"] = $orderby;
$args["sort"] = $sort;
$args["direction"] = $direction;
$args["filtergroup"] = $filtergroup;
$args["filterlist"] = $filterlist;
$args["filternodetypes"] = $filternodetypes;
$args["filterusers"] = $filterusers;
$args["netnodeid"] = $netnodeid;
$args["netq"] = $netq;
$args["netscope"] = $netscope;
$args["netlinkgroup"] = $netlinkgroup;
$args["netdepth"] = $netdepth;
$args["netdirection"] = $netdirection;
$args["netlabelmatch"] = $netlabelmatch;
$args["agentlastrun"] = $agentlastrun;
$args["title"] = $node->name;
?>
<div id="context">
<div id="contextinfo">
<h1><?php print $node->name; ?></h1>
<?php if ($node->description != "") { ?>
<div id="desc_display" class="active" onClick="desctoggle()">
Show Description
</div>
<div id="desc_text"><?php echo $node->description; ?></div>
<script type="text/javascript">
$('desc_text').toggle();
function desctoggle () {
$('desc_text').toggle();
if ($('desc_text').visible()) {
$('desc_display').update("Hide Description");
} else {
$('desc_display').update("Show Description");
}
}
</script>
<?php } ?>
</div>
</div>
<div style="clear:both;"></div>
<div id="tabber">
<ul id="tabs" class="tab">
<li class="tab">
<a class="tab" id="tab-conn" href="#conn-net">
<span class="tab">
Arguments (<span id="conn-list-count">0</span>)
</span>
</a>
</li>
</ul>
<div id="tabs-content">
<div id='tab-content-conn' class='tabcontent'>
<div class="loading">
<img src='<?php echo $CFG->homeAddress; ?>images/ajax-loader.gif'/>
<br/>
(Loading arguments...)
</div>
</div>
</div>
</div>
<script type='text/javascript'>
var CONTEXT = 'issuenode';
var NODE_ARGS = CONN_ARGS = NEIGHBOURHOOD_ARGS = NET_ARGS =
URL_ARGS = USER_ARGS = <?php echo json_encode($args); ?>;
</script>
<script type='text/javascript'
src='<?php echo $CFG->homeAddress; ?>includes/tabber.js'>
</script>
<?php include_once("includes/footer.php"); ?>