You are here

FormStateInterface.inc in Jssor Slider 7

Namespace

Drupal\Core\Form

File

src/shims/FormStateInterface.inc
View source
<?php

/**
 * Created by PhpStorm.
 * User: cravecode
 * Date: 2/14/15
 * Time: 5:55 PM
 */
namespace Drupal\Core\Form;

class FormStateInterface {
  public $global;
  public $values;
  function __construct($form_state = array()) {
    $this->values = $form_state['values'];
  }

}

Classes

Namesort descending Description
FormStateInterface