You are here

AssetInventoryItemList.php in farmOS 2.x

File

modules/core/inventory/src/Field/AssetInventoryItemList.php
View source
<?php

namespace Drupal\farm_inventory\Field;

use Drupal\Core\Field\FieldItemList;
use Drupal\Core\TypedData\ComputedItemListTrait;

/**
 * Computes the current inventory value for assets.
 */
class AssetInventoryItemList extends FieldItemList {
  use ComputedItemListTrait;

  /**
   * Computes the current inventory value for the asset.
   */
  protected function computeValue() {

    // Get the asset entity.
    $entity = $this
      ->getEntity();

    // Get the asset's current inventories.
    $inventories = \Drupal::service('asset.inventory')
      ->getInventory($entity);

    // Update the assets current inventory values to match.
    // @todo Cache this field computation.
    foreach ($inventories as $delta => $inventory) {
      $this->list[$delta] = $this
        ->createItem($delta, $inventory);
    }
  }

}

Classes

Namesort descending Description
AssetInventoryItemList Computes the current inventory value for assets.