clean install

This commit is contained in:
2024-12-10 15:08:16 +01:00
commit e14eb2d8fd
31193 changed files with 3555714 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
<?php
namespace Drupal\views;
/**
* A class representing a view result row.
*/
#[\AllowDynamicProperties]
class ResultRow {
/**
* The entity for this result.
*
* @var \Drupal\Core\Entity\EntityInterface
*/
// phpcs:ignore Drupal.Classes.PropertyDeclaration, Drupal.NamingConventions.ValidVariableName.LowerCamelName
public $_entity = NULL;
/**
* An array of relationship entities.
*
* @var \Drupal\Core\Entity\EntityInterface[]
*/
// phpcs:ignore Drupal.Classes.PropertyDeclaration, Drupal.NamingConventions.ValidVariableName.LowerCamelName
public $_relationship_entities = [];
/**
* An incremental number which represents the row in the entire result.
*
* @var int
*/
public $index;
/**
* Constructs a ResultRow object.
*
* @param array $values
* (optional) An array of values to add as properties on the object.
*/
public function __construct(array $values = []) {
foreach ($values as $key => $value) {
$this->{$key} = $value;
}
}
/**
* Resets the _entity and _relationship_entities properties.
*/
public function resetEntityData() {
$this->_entity = NULL;
$this->_relationship_entities = [];
}
}