You are here

public function WebformStepsButtonBuilder::__construct in Webform steps 7

File

./webform_steps.module, line 94

Class

WebformStepsButtonBuilder

Code

public function __construct($current, $finished) {
  $this->current = $current;
  $this->finished = $finished;
  $this->default = array(
    '#type' => 'submit',
    '#attributes' => array(
      'class' => array(
        'step-button',
      ),
    ),
    '#name' => 'step-btn',
  );
}