Defines the locale string storage interface.
Hierarchy
- interface \Drupal\locale\StringStorageInterface
File
- core/modules/locale/src/StringStorageInterface.php, line 8
Namespace
Drupal\locale
Members
Name | Modifiers | Type | Description |
---|---|---|---|
StringStorageInterface::countStrings | public | function | Counts source strings. |
StringStorageInterface::countTranslations | public | function | Counts translations. |
StringStorageInterface::createString | public | function | Creates a source string object bound to this storage but not saved. |
StringStorageInterface::createTranslation | public | function | Creates a string translation object bound to this storage but not saved. |
StringStorageInterface::delete | public | function | Delete string from storage. |
StringStorageInterface::deleteStrings | public | function | Deletes source strings and translations using conditions. |
StringStorageInterface::deleteTranslations | public | function | Deletes translations using conditions. |
StringStorageInterface::findString | public | function | Loads a string source object, fast query. |
StringStorageInterface::findTranslation | public | function | Loads a string translation object, fast query. |
StringStorageInterface::getLocations | public | function | Loads string location information. |
StringStorageInterface::getStrings | public | function | Loads multiple source string objects. |
StringStorageInterface::getTranslations | public | function | Loads multiple string translation objects. |
StringStorageInterface::save | public | function | Save string object to storage. |
Please login to continue.