X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Flib%2FDrupal%2FCore%2FEntity%2FEntityForm.php;h=796502861cae0a900ea63bae3e9205f8e3fa48ba;hb=5b8bb166bfa98770daef9de5c127fc2e6ef02340;hp=35062185e9f86f0f2b907687b2b10cda48b7c276;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/lib/Drupal/Core/Entity/EntityForm.php b/web/core/lib/Drupal/Core/Entity/EntityForm.php index 35062185e..796502861 100644 --- a/web/core/lib/Drupal/Core/Entity/EntityForm.php +++ b/web/core/lib/Drupal/Core/Entity/EntityForm.php @@ -38,6 +38,8 @@ class EntityForm extends FormBase implements EntityFormInterface { * @var \Drupal\Core\Entity\EntityManagerInterface * * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * + * @see https://www.drupal.org/node/2549139 */ protected $entityManager; @@ -219,6 +221,17 @@ class EntityForm extends FormBase implements EntityFormInterface { /** * Returns an array of supported actions for the current entity form. * + * This function generates a list of Form API elements which represent + * actions supported by the current entity form. + * + * @param array $form + * An associative array containing the structure of the form. + * @param \Drupal\Core\Form\FormStateInterface $form_state + * The current state of the form. + * + * @return array + * An array of supported Form API action elements keyed by name. + * * @todo Consider introducing a 'preview' action here, since it is used by * many entity types. */