
| Current Path : /var/www/html/stolberg/web/core/lib/Drupal/Core/Form/ |
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/stolberg/web/core/lib/Drupal/Core/Form/ToConfig.php |
<?php
declare(strict_types=1);
namespace Drupal\Core\Form;
/**
* Enumeration of the special return values for ConfigTarget toConfig callables.
*
* @see \Drupal\Core\Form\ConfigTarget
*/
enum ToConfig {
// Appropriate to return from a toConfig callable when another toConfig
// callable handles setting this property path. In other words: "no-op".
case NoOp;
// Appropriate to return from a toConfig callable when the given form value
// should result in the targeted property path getting deleted.
// @see \Drupal\Core\Config\Config::clear()
case DeleteKey;
}