cee739e627
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@498 b3834d28-1941-0410-a4f8-b48e95affb8f
28 lines
682 B
PHP
28 lines
682 B
PHP
<?php
|
|
/**
|
|
* We re-use vote.php but set the ajax flag
|
|
*/
|
|
$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';
|
|
}
|
|
|
|
header('Content-Type: text/xml; charset=utf-8');
|
|
echo '<voteresult><bookmark>' . $bookmark . '</bookmark>'
|
|
. '<html xmlns="http://www.w3.org/1999/xhtml">';
|
|
$ts->loadTemplate(
|
|
$template, array('row' => $bmrow)
|
|
);
|
|
|
|
echo '</html></voteresult>';
|
|
?>
|