refactored time based field update stuff
This commit is contained in:
@ -4,28 +4,28 @@ namespace Drupal\opencase;
|
||||
use Drupal;
|
||||
|
||||
final class TimeBasedFieldUpdater {
|
||||
private string $date_field;
|
||||
private string $date_field_to_compare;
|
||||
private string $entity_type;
|
||||
private array $conditions;
|
||||
private array $where;
|
||||
private string $date_format;
|
||||
|
||||
final public function __construct($entity_type, $date_field, $conditions = [], $date_format = 'Y-m-d')
|
||||
final public function __construct($entity_type, $where = [], $date_field_to_compare, $date_format = 'Y-m-d')
|
||||
{
|
||||
$this->date_field = $date_field;
|
||||
$this->conditions = $conditions;
|
||||
$this->date_field_to_compare = $date_field_to_compare;
|
||||
$this->where = $where;
|
||||
$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) {
|
||||
foreach($this->where 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)), "<");
|
||||
$query->condition($this->date_field_to_compare, 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) {
|
||||
|
Reference in New Issue
Block a user