
| Current Path : /var/www/html/12park/web/modules/contrib/webform/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park/web/modules/contrib/webform/src/WebformTranslationManagerInterface.php |
<?php
namespace Drupal\webform;
/**
* Defines an interface for webform element translation classes.
*/
interface WebformTranslationManagerInterface {
/**
* Determine if the translated webform should be displayed.
*
* @return bool
* TRUE if the translated webform should be displayed.
*/
public function isAdminRoute();
/**
* Get webform elements for specific language.
*
* @param \Drupal\webform\WebformInterface $webform
* A webform.
* @param string $langcode
* The language code for the webform elements.
* @param bool $reset
* (optional) Whether to reset the translated config cache. Defaults to
* FALSE.
*
* @return array
* A webform's translated elements.
*/
public function getElements(WebformInterface $webform, $langcode = NULL, $reset = FALSE);
/**
* Get base webform elements for the site's default language.
*
* @param \Drupal\webform\WebformInterface $webform
* A webform.
*
* @return array
* Base webform elements as a flattened associative array.
*/
public function getBaseElements(WebformInterface $webform);
/**
* Get flattened associative array of translated element properties.
*
* @param \Drupal\webform\WebformInterface $webform
* A webform.
*
* @return array
* A associative array of translated element properties.
*/
public function getSourceElements(WebformInterface $webform);
/**
* Get flattened associative array of translated element properties.
*
* @param \Drupal\webform\WebformInterface $webform
* A webform.
* @param string $langcode
* The language code for the translated element properties.
*
* @return array
* A associative array of translated element properties.
*/
public function getTranslationElements(WebformInterface $webform, $langcode);
/**
* Get the original langcode for a webform.
*
* @param \Drupal\webform\WebformInterface $webform
* A webform.
*
* @return string
* The original langcode for a webform.
*/
public function getOriginalLangcode(WebformInterface $webform);
}