Newer
Older
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
<?php
if(!defined('OSTSCPINC') || !$thisstaff || !$thisstaff->canManageFAQ()) die('Access Denied');
$info=array();
$qstr='';
if($faq){
$title='Update FAQ: '.$faq->getQuestion();
$action='update';
$submit_text='Save Changes';
$info=$faq->getHashtable();
$info['id']=$faq->getId();
$info['topics']=$faq->getHelpTopicsIds();
$qstr='id='.$faq->getId();
}else {
$title='Add New FAQ';
$action='create';
$submit_text='Add FAQ';
if($category) {
$qstr='cid='.$category->getId();
$info['category_id']=$category->getId();
}
}
//TODO: Add attachment support.
$info=Format::htmlchars(($errors && $_POST)?$_POST:$info);
?>
<form action="faq.php?<?php echo $qstr; ?>" method="post" id="save" enctype="multipart/form-data">
<input type="hidden" name="do" value="<?php echo $action; ?>">
<input type="hidden" name="a" value="<?php echo Format::htmlchars($_REQUEST['a']); ?>">
<input type="hidden" name="id" value="<?php echo $info['id']; ?>">
<h2>FAQ</h2>
<table class="form_table" width="940" border="0" cellspacing="0" cellpadding="2">
<thead>
<tr>
<th colspan="2">
<h4><?php echo $title; ?></h4>
</th>
</tr>
</thead>
<tbody>
<tr>
<th colspan="2">
<em>FAQ Information</em>
</th>
</tr>
<tr>
<td colspan=2>
<div style="padding-top:3px;"><b>Question</b> <span class="error">* <?php echo $errors['question']; ?></span></div>
<input type="text" size="70" name="question" value="<?php echo $info['question']; ?>">
</td>
</tr>
<tr>
<td colspan=2>
<div><b>Category Listing</b>: <span class="faded">FAQ category the question belongs to.</span></div>
<select name="category_id" style="width:350px;">
<option value="0">Select FAQ Category </option>
<?php
$sql='SELECT category_id, name, ispublic FROM '.FAQ_CATEGORY_TABLE;
if(($res=db_query($sql)) && db_num_rows($res)) {
while($row=db_fetch_array($res)) {
echo sprintf('<option value="%d" %s>%s (%s)</option>',
$row['category_id'],
(($info['category_id']==$row['category_id'])?'selected="selected"':''),
$row['name'],
($info['ispublic']?'Public':'Internal'));
}
}
?>
</select>
<span class="error">* <?php echo $errors['category_id']; ?></span>
</td>
</tr>
<tr>
<td colspan=2>
<div><b>Listing Type</b>:
<span class="faded">Published questions are listed on public knowledgebase if the parent category is public.</span></div>
<input type="radio" name="ispublished" value="1" <?php echo $info['ispublished']?'checked="checked"':''; ?>>Public (publish)
<input type="radio" name="ispublished" value="0" <?php echo !$info['ispublished']?'checked="checked"':''; ?>>Internal (private)
<span class="error">* <?php echo $errors['ispublished']; ?></span>
</td>
</tr>
<tr>
<td colspan=2>
<div>
<b>Answer</b> <font class="error">* <?php echo $errors['answer']; ?></font></div>
<textarea name="answer" cols="21" rows="12" style="width:98%;" class="richtext"><?php echo $info['answer']; ?></textarea>
</td>
</tr>
<tr>
<td colspan=2>
<div><b>Attachments</b> (optional) <font class="error"> <?php echo $errors['files']; ?></font></div>
<?php
if($faq && ($files=$faq->getAttachments())) {
echo '<div id="faq_attachments"><span class="faded">Uncheck to delete the attachment on submit</span><br>';
foreach($files as $file) {
$hash=$file['hash'].md5($file['id'].session_id().$file['hash']);
echo sprintf('<label><input type="checkbox" name="files[]" id="f%d" value="%d" checked="checked">
<a href="file.php?h=%s">%s</a> </label> ',
$file['id'], $file['id'], $hash, $file['name']);
}
echo '</div><br>';
}
//TODO: add a setting on admin panel
if(count($files)<5) {
?>
<div>
<input type="file" name="attachments[]" value=""/>
</div>
<?}?>
<div class="faded">You can upload up to 5 attachments.</div>
</td>
</tr>
<?php
$sql='SELECT topic_id, topic FROM '.TOPIC_TABLE;
if(($res=db_query($sql)) && db_num_rows($res)) { ?>
<tr>
<th colspan="2">
<em><strong>Help Topics</strong>: Check all help topics related to this FAQ.</em>
</th>
</tr>
<tr><td>
<?php
while(list($topicId,$topic)=db_fetch_row($res)) {
echo sprintf('<input type="checkbox" name="topics[]" value="%d" %s>%s<br>',
$topicId,
(($info['topics'] && in_array($topicId,$info['topics']))?'checked="checked"':''),
$topic);
}
?>
</td>
</tr>
<?php
} ?>
<tr>
<th colspan="2">
<em><strong>Internal Notes</strong>: </em>
</th>
</tr>
<tr>
<td colspan=2>
<textarea name="notes" cols="21" rows="8" style="width: 80%;"><?php echo $info['notes']; ?></textarea>
</td>
</tr>
</tbody>
</table>
<p style="padding-left:225px;">
<input type="submit" name="submit" value="<?php echo $submit_text; ?>">
<input type="reset" name="reset" value="Reset">
<input type="button" name="cancel" value="Cancel" onclick='window.location.href="faq.php?<?php echo $qstr; ?>"'>
</p>
</form>