-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoll_categorize.php
54 lines (49 loc) · 2.13 KB
/
poll_categorize.php
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
<?php
/**
* @package tikiwiki
*/
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
if (basename($_SERVER['SCRIPT_NAME']) === basename(__FILE__)) {
die('This script may only be included.');
}
//smarty is not there - we need setup
require_once('tiki-setup.php');
global $prefs;
if ($prefs['feature_polls'] == 'y') {
#echo '<div>hier</div>';
$polllib = TikiLib::lib('poll');
$categlib = TikiLib::lib('categ');
if (! isset($_REQUEST['poll_title'])) {
$_REQUEST['poll_title'] = 'rate it!';
}
if (
(isset($_REQUEST["poll_template"]) and $_REQUEST["poll_template"])
|| (isset($_REQUEST["olpoll"]) and $_REQUEST["olpoll"])
) {
$catObjectId = $categlib->is_categorized($cat_type, $cat_objid);
if (! $catObjectId) {
$catObjectId = $categlib->add_categorized_object($cat_type, $cat_objid, $cat_desc, $cat_name, $cat_href);
if (! $catObjectId) {
Feedback::error(tr('Error categorizing poll object'));
}
}
if (isset($_REQUEST["poll_template"]) and $_REQUEST["poll_template"]) {
if ($polllib->has_object_polls($catObjectId) && $prefs['poll_multiple_per_object'] != 'y') {
$polllib->remove_object_poll($cat_type, $cat_objid);
}
$pollid = $polllib->create_poll($_REQUEST["poll_template"], $cat_objid . ': ' . $_REQUEST['poll_title']);
$result = $polllib->poll_categorize($catObjectId, $pollid, $_REQUEST['poll_title']);
} else {
$olpoll = $polllib->get_poll($_REQUEST["olpoll"]);
$result = $polllib->poll_categorize($catObjectId, $_REQUEST["olpoll"], $olpoll['title']);
}
if ($result && $result->numRows()) {
Feedback::success(tr('Poll associated with wiki page %0', htmlspecialchars($cat_objid)));
} else {
Feedback::error(tr('Poll not associated with wiki page %0', htmlspecialchars($cat_objid)));
}
}
}