Version: 4.3.0, by bananalive
Developer Last Online: Nov 2023
Category: New Posting Features -
Version: 4.0.x
Rating:
Released: 01-27-2010
Last Update: 10-04-2011
Installs: 1410
DB Changes Uses Plugins Auto-Templates
Additional Files Translations
No support by the author.
Easily create forms with no HTML or PHP knowledge. Questions can be made compulsory and are checked before the form is submitted. Forms can be previewed. (You can create multiple forms)
Screenshots
There are two posts full of screenshots of this modification
Upload the contents of upload folder to forum root (Allow Overwrite "YES" for overwrite) clientscript\easyforms.css -> \clientscript\
clientscript\easyforms.js -> \clientscript\
can anyone help me how to use that template hook in form before submit? I want to add some php confrim dialog when user click on "Submit". So for example user need to accept custom rules by clicking on "YES" button and form will be sent, otherwise nothing happend (stay on form page).
I still interesting in this, may be community will agree with me? I think first page of Forms page have to be more informative, include statistics and help about forms.
This will bring forms on new level, as I think
Another suggestion is to have different permissions for different forms. This thing is very demanded for me!
And the last but not least, is Form Results Statistics, for example:
who submitted answers and how many answers,
how many views have form,
who viewed it and how many times,
I don't know, for the beggining this is enough, at least we will have the place where we can see Form Results Statistic
And big respect to you! Thank you! Your mod is awesome!
Excuse my English please
Added forms views and number of form results in latest version
please tell me if I understand this correctly. I want to move the current users from user group 25 to user group 26 once they have submitted the form. using the following form hook, before submit will accomplish this?
PHP Code:
if ($complete)
{
/*replace 18 with choosen usergroupid you want to add them to*/
$newmembergroupid = '26';
$user['membergroupids']=explode(',',$user['membergroupids']);
foreach($user['membergroupids'] AS $mi => $mii)
{
/*replace 17 with usergroupid you want to remove them from*/
if ($mii==25)
{
unset($user['membergroupids'][$mi]);
}
}
$user['membergroupids'][]=$newmembergroupid;
$display_usergroup = $newmembergroupid;
$user['membergroupids']=implode(',',$user['membergroupids']);
$userdata =& datamanager_init('User', $vbulletin, ERRTYPE_STANDARD);
$userdata->set_existing($userinfo);
$userdata->set('membergroupids', $user['membergroupids']);
$userdata->set_usertitle(
$userinfo['usertitle'],
true,
$vbulletin->usergroupcache["$newmembergroupid"],
false,
true
);
$userdata->save();
}
Thanks, i mean something elste, but this is good too
BTW: I mean ... user fill form, click on [Submit] button and PHP warning popped up with Text like "Do you accept the rules?" and [Yes] / [No] choice. Click on "Yes" - submit form, Click on "No" - nothing happend, just back on form (php warn disappear).
I've downloaded, installed this addon and created a test form, but I don't now how to open the form automatically in a forum by clicking on the "New Thread" Button.