Example #1
0
 /**
  * Constructs a FieldFormCommand object.
  *
  * @param string $data
  *   The data to pass on to the client side.
  */
 public function __construct($data)
 {
     parent::__construct('quickeditFieldForm', $data);
 }
Example #2
0
 /**
  * Constructs a FieldFormSavedCommand object.
  *
  * @param string $data
  *   The re-rendered edited field to pass on to the client side.
  * @param array $other_view_modes
  *   The same re-rendered edited field, but in different view modes, for other
  *   instances of the same field on the user's page. Keyed by view mode.
  */
 public function __construct($data, $other_view_modes = array())
 {
     parent::__construct('quickeditFieldFormSaved', $data);
     $this->other_view_modes = $other_view_modes;
 }
 /**
  * Constructs a GetUntransformedTextCommand object.
  *
  * @param string $data
  *   The data to pass on to the client side.
  */
 public function __construct($data)
 {
     parent::__construct('editorGetUntransformedText', $data);
 }
Example #4
0
 /**
  * Constructs a EntitySaveCommand object.
  *
  * @param string $data
  *   The data to pass on to the client side.
  */
 public function __construct($data)
 {
     parent::__construct('quickeditEntitySaved', $data);
 }
 /**
  * Constructs a FieldFormValidationErrorsCommand object.
  *
  * @param string $data
  *   The data to pass on to the client side.
  */
 public function __construct($data)
 {
     parent::__construct('quickeditFieldFormValidationErrors', $data);
 }