Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
Poll? Editor? (1 viewing) (1) Guest
Go to bottom Favoured: 2
TOPIC: Poll? Editor?
#280
Poll? Editor? 1 Year, 4 Months ago  
Thank You very much for this.

We (www.tocnet.nu) uses Joomlaboard right now, we have made some smaller modifications that we pretty easy could transfer to FireBoard.

But now to my Q:

Q1: Will there be any option to let users create own polls inside a thread?

Q2: We would like to use some wysiwyg-editor in the forum, could this be an option?

Q3: What about using other joomla-bots inside the forum, is it possible? I thought I saw something about that but now I can not find how to do it, if it is possible. (as Xtypo or EasyTube and so on)

Br
Thobbe
And keep up the good work!

PS.
How can I donate to Your work?
Ds.
Thobbe (User)
Senior Boarder
Posts: 50
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#292
Re:Poll? Editor? 1 Year, 4 Months ago  
Well, well, it would be required for a professional forum.
LocaLiceR (User)
FB Translation Team
"Do It Now!"
Moderator
Posts: 335
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Joomla.org.hu Location: Hungary Birthdate: 1958-10-14
Logged Logged
 
Do not give fish to the hungry man teach him how to fish instead
 
The administrator has disabled public write access.  
#701
Re:Poll? Editor? 1 Year, 4 Months ago  
Thobbe wrote:

Q3: What about using other joomla-bots inside the forum, is it possible? I thought I saw something about that but now I can not find how to do it, if it is possible. (as Xtypo or EasyTube and so on)

It is possible in Joomlaboard, you can see the Glossary-bot in action here.

In JB, the lines to insert in view.php are:
Code:


line 13:
    
    class t{ var $text = ""; } // Déclarer une classe avec une variable "text"
    
line 461ff:
    
        global $_MAMBOTS; // variables globale des Mambots
        $row = new t(); // Nouvelle instance de cette classe t
        $row->text = $sb_message_txt; // définir la propritét text de cet objet (corp du msg)
        $_MAMBOTS->loadBotGroup( 'content' ); // charger les bots de contenu
        $params =& new mosParameters( '' ); // pas de paramètre
        $results = $_MAMBOTS->trigger( 'onPrepareContent', array( &$row, &$params, 0 ), true ); // execute l'action des bots
        $msg_text = $row->text; // remplace le corp du msg par le resultat des bots
        /*Fin de l'activation des bots de contenu sur le message */



It should definitely also work in Fireboard, and it would be great to see that in the next release (this als simplifies Badwords integration).
hypnotoad (User)
Expert Boarder
Posts: 111
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#704
Re:Poll? Editor? 1 Year, 4 Months ago  
Quite interesting, I was just talking about this with Riba and Aliyar.

This is something cool for the next release
danialt (Admin)
BoJ Team
Simplicity
Moderator
Posts: 933
graphgraph
User Online Now Click here to see the profile of this user
Gender: Male Birthdate: 1978-05-25
Logged Logged
 
Best Of Joomla Team
FireBoard Project Manager
 
The administrator has disabled public write access.  
#735
Re:Poll? Editor? 1 Year, 4 Months ago  
Thank You hypnotoad!

I am sorry to say I am still lost. Tried it out in JB (for a start) bot I am not sure I did it right, nothing seems to happend, none of my mambots works in JB. Everything else still works.

When You write line 13 and 461 (FF?) are You counting from the first actual line of code? Because my line 13 is still about GNU-license.

Could You perhaps show me (us) a line before where You put in the codes? Both for lin 13 and 461?

I would preciate it very much!





hypnotoad wrote:
Thobbe wrote:

Q3: What about using other joomla-bots inside the forum, is it possible? I thought I saw something about that but now I can not find how to do it, if it is possible. (as Xtypo or EasyTube and so on)

It is possible in Joomlaboard, you can see the Glossary-bot in action here.

In JB, the lines to insert in view.php are:
Code:


line 13:
    
    class t{ var $text = ""; } // Déclarer une classe avec une variable "text"
    
line 461ff:
    
        global $_MAMBOTS; // variables globale des Mambots
        $row = new t(); // Nouvelle instance de cette classe t
        $row->text = $sb_message_txt; // définir la propritét text de cet objet (corp du msg)
        $_MAMBOTS->loadBotGroup( 'content' ); // charger les bots de contenu
        $params =& new mosParameters( '' ); // pas de paramètre
        $results = $_MAMBOTS->trigger( 'onPrepareContent', array( &$row, &$params, 0 ), true ); // execute l'action des bots
        $msg_text = $row->text; // remplace le corp du msg par le resultat des bots
        /*Fin de l'activation des bots de contenu sur le message */



It should definitely also work in Fireboard, and it would be great to see that in the next release (this als simplifies Badwords integration).
Thobbe (User)
Senior Boarder
Posts: 50
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#1277
Re:Poll? Editor? 1 Year, 4 Months ago  
OK, sorry - here's the code inserted in the surrounding JB code, I had taken the other code off my notes of adjustments I made to all kinds of Joomla code, to keep track.


Code:


// Dont allow direct linking
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
class t{ var $text = ""; } // <===== insert!



and

Code:

f ($is_moderator || ($my->id > 0  && $sbConfig['useredit']==1 && $my->id == $fmessage->userid))
$msg_edit = jb_get_link('edit',_GEN_EDIT,JB_LIVEURL.'&amp;func=post&amp;do=edit&amp;id='.$fmessage->id.'&amp;catid='.$catid);
else
$msg_edit = '';

// Mambot support for message, insert from here:
global $_MAMBOTS; // variables globale des Mambots
$row = new t(); // Nouvelle instance de cette classe t
$row->text = $sb_message_txt; // définir la propritét text de cet objet (corp du msg)
$_MAMBOTS->loadBotGroup( 'content' ); // charger les bots de contenu
$params =& new mosParameters( '' ); // pas de paramètre
$results = $_MAMBOTS->trigger( 'onPrepareContent', array( &$row, &$params, 0 ), true ); // execute l'action des bots
$msg_text = $row->text; // remplace le corp du msg par le resultat des bots
// ==> end of insertion


// moderator functions
$msg_move=''; $msg_delete='';$msg_sticky='';$msg_lock='';

hypnotoad (User)
Expert Boarder
Posts: 111
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#1279
Re:Poll? Editor? 1 Year, 4 Months ago  
Thank You so very much.
It works now.

Still have problems with some mambots though, but that is another thread I guess, so thank You again

Post edited by: Thobbe, at: 2007/04/21 11:22
Thobbe (User)
Senior Boarder
Posts: 50
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#1294
Re:Poll? Editor? 1 Year, 4 Months ago  
I raise the questions again, I know it isn´t so polite to bump Your own thread but since everything is happening so fast now I would preciate if there would be any solutions for my Q1 and Q2.

Q1: Will there be any option to let users create own polls inside a thread?

Q2: We would like to use some wysiwyg-editor in the forum, could this be an option?



Br
Thobbe


Q3: What about using other joomla-bots inside the forum, is it possible? I thought I saw something about that but now I can not find how to do it, if it is possible. (as Xtypo or EasyTube and so on) Q3 is SOLVED
Thobbe (User)
Senior Boarder
Posts: 50
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
Go to top
Powered by FireBoard - Creditsget the latest posts directly to your desktop