public function ContentEntityCloneFormBase::getValues in Entity Clone 8
Get all new values provided by the specific form element.
Parameters
\Drupal\Core\Form\FormStateInterface $form_state: The form state.
Return value
array An array containing all new values.
Overrides EntityCloneFormInterface::getValues
File
- src/
EntityClone/ Content/ ContentEntityCloneFormBase.php, line 233
Class
- ContentEntityCloneFormBase
- Class ContentEntityCloneFormBase.
Namespace
Drupal\entity_clone\EntityClone\ContentCode
public function getValues(FormStateInterface $form_state) {
return $form_state
->getValues();
}