Form builder plugin

Skip to end of metadata
Go to start of metadata

Build your forms quickly and easily.

This plugin is completely based on zend_form, so all the parameters and methods of Zend_Form, Zend_Form_Element... are available.

For more informations about Zend_Form, see here :

http://framework.zend.com/manual/en/zend.form.html

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.
  1. Nov 07, 2011

    Cecilia says:

    Hi, I'm new with Pimcore and haven't learned the system yet. So far, it looks l...

    Hi,

    I'm new with Pimcore and haven't learned the system yet. So far, it looks like a really great open source system! Also, have I understood the license correctly that it is free to use Pimcore, modify and add source code for business as well as personal use as long as all the copyright notices on each file stays intact?

    Okay, to my question: I've downloaded this extension through Pimcore Admin and Download Extensions but I'm getting an error: 

    2011-11-06T00:05:49+01:00 ALERT (1): Pimcore::initPlugins() [482]: [Exception] with message: Table 'pimcore_1.4.2.plugin_formbuilder' doesn't exist

    I've also tried downloading Sitemap and got the same error. It seems like this is a Pimcore error or just simply something that I have missed to do. It fails to create and drop defined table(s) for that specific plugin even though I am using a db user that has all privileges which includes CREATE and DROP. I get the error already when I open Manage Extensions after downloading the plugin. Have anyone else had the same problem? I've created MyPlugin by using the example in the Pimcore documentation and that works fine. Also if I create the db tables manually for formbuilder plugin, everything works fine. 

    Thank you in advance.

    Cecilia

    1. Dec 23

      Christoph Batik says:

      Hi Cecilia! I have got the same problems. Only when I execute the install S...

      Hi Cecilia!

      I have got the same problems. Only when I execute the install SQL statements manually, then the extensions are able to work. But on my local webserver it works fine. So it must be a problem on your (our) server(s). Unfortunately I can't tell you what's the cause for this problem exactly is, but we know now, that it should associate with the server configuration.

      Best regards
      Christoph

  2. Dec 30

    Rafał Gałka says:

    From my analisys shows that problem occurs in newest version of Pimcore (1.4.2)....

    From my analisys shows that problem occurs in newest version of Pimcore (1.4.2). When you installing this version you can choose database driver between "mysqli" and "Pdo_Mysql". mysqli is selected as default driver now and all plugins installers using Pdo_Mysql behavior. You can change driver in <database> section of website/var/config/system.xml:

    <adapter>Pdo_Mysql</adapter>
  3. Jan 08

    Johannes Volk says:

    Hey, how i can define the Error-Messages ? in the Form ...  • '' is no vali...

    Hey, how i can define the Error-Messages ? in the Form ...  • '' is no valid email address in the basic format local-part@hostname
    •'' is no valid email address in the basic format local-part@hostname

    Thanks for Response ... 

    1. Jan 09

      Christoph Batik says:

      Hallo Johannes! Schau einmal im Plugin-Verzeichnis in /data/lang/errors. Do...

      Hallo Johannes!

      Schau einmal im Plugin-Verzeichnis in /data/lang/errors. Dort findest Du für Deine Sprache die Language-Files, in denen Du die Fehlermeldungen anpassen kannst.

      LG
      Christoph

  4. Feb 28

    Johannes Volk says:

    Hey,  i have an Problem with FormBuilder. When type the Special Characters...

    Hey, 

    i have an Problem with FormBuilder. When type the Special Characters in Label or Description-Fields: " or , it cames an Server Exeption Error. Other Special Characters running. 

    Have anybody an Idea ? 

    1. Mar 19

      Ben Freke says:

      Hi Johannes I had a similar problem in 1.4.4. where the label text was being tu...

      Hi Johannes

      I had a similar problem in 1.4.4. where the label text was being turned into an array if I had commas or html tags. Here's how I had to change the decorator for it to work in my situation. It's inside a switch statement as I want to add some frontend validation to each element as well. I'll post the complete solution up when I'm happy that it works as expected.

      case 'Zend_Form_Element_Checkbox':
                              $element->getDecorator('Label')->setOptions(array(
                                  'placement' => 'APPEND',
                                  'escape' => false
                              ));
                              break;

      That should be enough to get you going?

      With the comma's I have to escape them in the admin as "," , I don't fully understand why. I will figure it out eventually though.