You are here

public function boxes_box::use_multistep_create in Boxes 7

Declare if the box should use a multistep form for the create form.

This might me necessary for forms that use ajax on the options form. Currently Context does not load this block correctly and the ajax in the form will not work. Methinks Context UI Editor needs to be upgraded to D7 AJAX framework for this to not be required. That said the functionality is potentially useful even with proper functioning AJAX.

File

plugins/boxes_box.inc, line 132

Class

boxes_box
Abstract base class defining a box. A boxes content plugin provides a form of options for configuring content and renders content for display.

Code

public function use_multistep_create() {
  return FALSE;
}