You are here

interface FormHelperInterface in Entity Share 8.3

Form helper interface methods.

Hierarchy

Expanded class hierarchy of FormHelperInterface

All classes that implement FormHelperInterface

1 file declares its use of FormHelperInterface
PullForm.php in modules/entity_share_client/src/Form/PullForm.php

File

modules/entity_share_client/src/Service/FormHelperInterface.php, line 12

Namespace

Drupal\entity_share_client\Service
View source
interface FormHelperInterface {

  /**
   * Prepare entities from an URI to request.
   *
   * @param array $json_data
   *   An array of data send by the JSON:API.
   * @param \Drupal\entity_share_client\Entity\RemoteInterface $remote
   *   The selected remote.
   * @param string $channel_id
   *   The selected channel id.
   *
   * @return array
   *   The array of options for the tableselect form type element.
   */
  public function buildEntitiesOptions(array $json_data, RemoteInterface $remote, $channel_id);

}

Members

Namesort descending Modifiers Type Description Overrides
FormHelperInterface::buildEntitiesOptions public function Prepare entities from an URI to request. 1