| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/enoikio/modules/webform/src/ |
Upload File : |
<?php
namespace Drupal\webform;
use Drupal\Core\Config\Entity\ConfigEntityStorageInterface;
use Drupal\Core\Config\Entity\ImportableEntityStorageInterface;
/**
* Provides an interface for Webform Options storage.
*/
interface WebformOptionsStorageInterface extends ConfigEntityStorageInterface, ImportableEntityStorageInterface {
/**
* Gets the names of all categories.
*
* @return string[]
* An array of translated categories, sorted alphabetically.
*/
public function getCategories();
/**
* Get all options grouped by category.
*
* @return string[]
* An array of options grouped by category.
*/
public function getOptions();
/**
* Get all likert options with 'Likert:' prefix removed.
*
* @return string[]
* An array of likert options.
*/
public function getLikerts();
/**
* Get list of composite elements that use the specified webform options.
*
* @param \Drupal\webform\WebformOptionsInterface $webform_options
* A webform options entity.
*
* @return array
* A list of composite elements that use the specified webform options.
*/
public function getUsedByCompositeElements(WebformOptionsInterface $webform_options);
/**
* Get list of webform that use the specified webform options.
*
* @param \Drupal\webform\WebformOptionsInterface $webform_options
* A webform options entity.
*
* @return array
* A list of webform that use the specified webform options.
*/
public function getUsedByWebforms(WebformOptionsInterface $webform_options);
}