This repository has been archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
poll_categorize.php
45 lines (41 loc) · 1.7 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
<?php
/**
* @package tikiwiki
*/
// (c) Copyright 2002-2016 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.
// $Id$
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"]) {
$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 ($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']);
$polllib->poll_categorize($catObjectId, $pollid, $_REQUEST['poll_title']);
} elseif (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);
}
$olpoll = $polllib->get_poll($_REQUEST["olpoll"]);
$polllib->poll_categorize($catObjectId, $_REQUEST["olpoll"], $olpoll['title']);
}
}