Confirmation form plugin

  • Views Views: 14,211
  • Last updated Last updated:

Navigation

         Form Article Plugin Tutorial
      Autofill form plugin
      Clone form plugin
      Comment form plugin
      Email form plugin
      EXIF form plugin
      FTP form plugin
      J2store form plugin
      Kunena form plugin
      Limit form plugin
      Logs form plugin
      Mailchimp form plugin
      Paginate form plugin
      Paypal form plugin
      PHP form plugin
      Pingdotfm form plugin
      Receipt form plugin
      Redirect form plugin
      REST form plugin
      Slack form plugin (+)
      SMS form plugin
      Twitter form plugin
      Upsert form plugin
      VBforum form plugin
      Create a Search Form
      Accordion Form Groups
  • The confirmation plug-in gives your users the chance to review their form's data, and to re-edit it before a final submission.

    There are no plug-in Options for this plug-in.

    To test if you are in the form or its confirmation page your js would be:


    window.addEvent('domready', function () {
    var confirm = document.getElement('input[name=fabrik_confirmation]');
    if (typeOf(confirm) !== 'null') {
    // you are on the confirmation page
    } else {
    // you are NOT on the confirmation page
    }
    });

    To complete, I found that in another post ( from Hugh, just tested):

    And your php would be:
    PHP:

    if ($this->app->input->get('fabrik_confirmation', '') === '1') {
    //you are on the confirmation page

    } else {
    // you are NOT on the confirmation page

    }
Back
Top