
| Current Path : /var/www/html/rocksensor1/web/core/modules/layout_builder/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/rocksensor1/web/core/modules/layout_builder/src/TempStoreIdentifierInterface.php |
<?php
namespace Drupal\layout_builder;
/**
* Provides an interface that allows an object to provide its own tempstore key.
*
* @todo Move to \Drupal\Core\TempStore in https://www.drupal.org/node/3026957.
*/
interface TempStoreIdentifierInterface {
/**
* Gets a string suitable for use as a tempstore key.
*
* @return string
* A string to be used as the key for a tempstore item.
*/
public function getTempstoreKey();
}