aboutsummaryrefslogtreecommitdiff
path: root/www/ajaxVote.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/ajaxVote.php')
-rw-r--r--www/ajaxVote.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/www/ajaxVote.php b/www/ajaxVote.php
new file mode 100644
index 0000000..f2572fb
--- /dev/null
+++ b/www/ajaxVote.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * We re-use vote.php but set the ajax flag
+ */
+$httpContentType = 'text/xml';
+$GLOBALS['ajaxRequest'] = true;
+require 'vote.php';
+
+$bs = SemanticScuttle_Service_Factory::get('Bookmark');
+$ts = SemanticScuttle_Service_Factory::get('Template');
+$bmrow = $bs->getBookmark($bookmark);
+
+switch ($GLOBALS['votingMode']) {
+case 2:
+ $template = 'bookmarks-vote-horizontal.inc.tpl.php';
+ break;
+default:
+ $template = 'bookmarks-vote.inc.tpl.php';
+}
+
+echo '<voteresult><bookmark>' . $bookmark . '</bookmark>'
+ . '<html xmlns="http://www.w3.org/1999/xhtml">';
+$ts->loadTemplate(
+ $template, array('row' => $bmrow)
+);
+
+echo '</html></voteresult>';
+?> \ No newline at end of file