MyBB.de Forum
Poll on Index - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Veröffentlichungen und -Support (https://www.mybb.de/forum/forum-82.html)
+--- Thema: Poll on Index (/thread-22754.html)

Seiten: Seiten: 1 2


Poll on Index - MyBB.de Bot - 26.09.2010

Eine neue Erweiterung wurde veröffentlicht: Poll on Index

Zitat:You can display a poll on your index page or your portal page.

Compatibility
MyBB 1.4: Yes
MyBB 1.6: Yes



RE: Poll on Index - Simon - 22.12.2011

gibt es auch eine möglichkeit, dass die umfrage nur angezeigt wird, wenn der user auch die berechtigung hat den thread zu lesen?


RE: Poll on Index - Simon - 30.12.2011

push :o


RE: Poll on Index - Jockl - 30.12.2011

Prinzipiell gibt es diese Möglichkeit schon. Dazu müsste man in der Abfrage nach der pid der Umfrage überprüfen, ob sich diese in einem Forum befindet, das dem jeweiligen User nicht einsehbar ist. Die Fkt., die das überprüft, heißt get_unviewable_forums().

Vielleicht sieht sich krafdi (Plugin-Autor) das mal an...


Edit:

Probier mal folgendes aus (ohne Gewähr!)

suche in der Plugin-Datei nach
PHP-Code:
$query $db->simple_select("polls""*""pid='".$mybb->settings['polltoshow']."'"$options); 
und ersetze das durch
PHP-Code:
$unviewwhere "";
$unviewable get_unviewable_forums();
if(
$unviewable)
{
    
$unviewwhere "AND t.fid NOT IN ($unviewable)";
}
 
//$query = $db->simple_select("polls", "*", "pid='".$mybb->settings['polltoshow']."'", $options);
    
$query $db->query("
    SELECT p.*, t.tid, t.fid AS pollchek
    FROM "
.TABLE_PREFIX."polls p
    LEFT JOIN "
.TABLE_PREFIX."threads t ON (t.tid=p.tid)
    WHERE pid='"
.$mybb->settings['polltoshow']."' {$unviewwhere}
"
); 



RE: Poll on Index - Simon - 30.12.2011

klappt danke Big Grin


RE: Poll on Index - awex - 08.03.2012

wie macht man das mit dem plugin das die umfragen auf der startseite angezeigt werden?


RE: Poll on Index - Jockl - 08.03.2012

http://mods.mybb.com/uploads/previews/1132-1232709960-poi_acp.png


RE: Poll on Index - Speedmaster - 10.12.2012

Wo kann ich die Frage, und die Antwort hinzufügen?


RE: Poll on Index - GreenDragon - 10.12.2012

Dieses Plugin hat nur den Zweck, dass die Umfrage auch im Index erscheint. Die Umfrage selbst muss über die normale Umfragefunktion bei der Beitragserstellung hinzugefügt werden.


RE: Poll on Index - Speedmaster - 10.12.2012

Ich hab jetzt in einem Thread eine Umfrage gestartet. wo finde ich die PID?