Added class for updating fields based on time elapsed

This commit is contained in:
naomi 2022-04-22 16:25:49 +01:00
parent 86c0fb1f65
commit 537bb48b22
1 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,37 @@
<?php declare(strict_types = 1);
namespace Drupal\opencase;
use Drupal;
final class TimeBasedFieldUpdater {
private string $date_field;
private string $entity_type;
private array $conditions;
private string $date_format;
final public function __construct($entity_type, $date_field, $conditions = [], $date_format = 'Y-m-d')
{
$this->date_field = $date_field;
$this->conditions = $conditions;
$this->date_format = $date_format;
$this->entity_type = $entity_type;
}
final public function update($time_elapsed, $old_values, $new_values): void {
$query = Drupal::entityQuery($this->entity_type);
foreach($this->conditions as $cond_field=>$cond_value) {
$query->condition($cond_field, $cond_value);
}
foreach($old_values as $old_field=>$old_value) {
$query->condition($old_field, $old_value);
}
$query->condition($this->date_field, date($this->date_format, strtotime('-'.$time_elapsed)), "<");
foreach($query->execute() as $id) {
$entity = Drupal::entityTypeManager()->getStorage($this->entity_type)->load($id);
foreach($new_values as $new_field=>$new_value) {
$entity->set($new_field, $new_value);
}
$entity->save();
}
}
}