WebformOptionsStorageInterface.php in Webform 6.x
Same filename and directory in other branches
Namespace
Drupal\webformFile
src/WebformOptionsStorageInterface.phpView source
<?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);
}
Interfaces
Name | Description |
---|---|
WebformOptionsStorageInterface | Provides an interface for Webform Options storage. |