Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drupal / drupal-driver / src / Drupal / Driver / Cores / AbstractCore.php
diff --git a/vendor/drupal/drupal-driver/src/Drupal/Driver/Cores/AbstractCore.php b/vendor/drupal/drupal-driver/src/Drupal/Driver/Cores/AbstractCore.php
deleted file mode 100644 (file)
index 0265418..0000000
+++ /dev/null
@@ -1,91 +0,0 @@
-<?php
-
-namespace Drupal\Driver\Cores;
-
-use Drupal\Component\Utility\Random;
-use Symfony\Component\DependencyInjection\Container;
-
-/**
- * Base class for core drivers.
- */
-abstract class AbstractCore implements CoreInterface {
-
-  /**
-   * System path to the Drupal installation.
-   *
-   * @var string
-   */
-  protected $drupalRoot;
-
-  /**
-   * URI for the Drupal installation.
-   *
-   * @var string
-   */
-  protected $uri;
-
-  /**
-   * Random generator.
-   *
-   * @var \Drupal\Component\Utility\Random
-   */
-  protected $random;
-
-  /**
-   * {@inheritdoc}
-   */
-  public function __construct($drupal_root, $uri = 'default', Random $random = NULL) {
-    $this->drupalRoot = realpath($drupal_root);
-    $this->uri = $uri;
-    if (!isset($random)) {
-      $random = new Random();
-    }
-    $this->random = $random;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getRandom() {
-    return $this->random;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getFieldHandler($entity, $entity_type, $field_name) {
-    $reflection = new \ReflectionClass($this);
-    $core_namespace = $reflection->getShortName();
-    $field_types = $this->getEntityFieldTypes($entity_type);
-    $camelized_type = Container::camelize($field_types[$field_name]);
-    $default_class = sprintf('\Drupal\Driver\Fields\%s\DefaultHandler', $core_namespace);
-    $class_name = sprintf('\Drupal\Driver\Fields\%s\%sHandler', $core_namespace, $camelized_type);
-    if (class_exists($class_name)) {
-      return new $class_name($entity, $entity_type, $field_name);
-    }
-    return new $default_class($entity, $entity_type, $field_name);
-  }
-
-  /**
-   * Expands properties on the given entity object to the expected structure.
-   *
-   * @param \stdClass $entity
-   *   Entity object.
-   */
-  protected function expandEntityFields($entity_type, \stdClass $entity) {
-    $field_types = $this->getEntityFieldTypes($entity_type);
-    foreach ($field_types as $field_name => $type) {
-      if (isset($entity->$field_name)) {
-        $entity->$field_name = $this->getFieldHandler($entity, $entity_type, $field_name)
-          ->expand($entity->$field_name);
-      }
-    }
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function clearStaticCaches() {
-  }
-
-}