You are here

ConfigPagesStorage.php in Config Pages 8.2

Same filename and directory in other branches
  1. 8.3 src/ConfigPagesStorage.php

File

src/ConfigPagesStorage.php
View source
<?php

namespace Drupal\config_pages;

use Drupal\config_pages\Entity\ConfigPages;
use Drupal\Core\Entity\Sql\SqlContentEntityStorage;

/**
 * Defines the storage handler class for ConfigPages.
 *
 * This extends the base storage class, adding required special handling for
 * ConfigPages entities.
 */
class ConfigPagesStorage extends SqlContentEntityStorage {

  /**
   * {@inheritdoc}
   */
  public function load($id) {
    $entity = NULL;

    // Default behavior allow to load entity by ID.
    if (is_numeric($id)) {
      $entities = parent::loadMultiple([
        $id,
      ]);
      $entity = isset($entities[$id]) ? $entities[$id] : NULL;
    }
    else {

      // If config page type name given try to load it.
      $entity = ConfigPages::config($id);
    }
    return $entity;
  }

  /**
   * {@inheritdoc}
   */
  public function loadMultiple(array $ids = NULL) {
    $entities = [];

    // Return all entities if $ids is NULL.
    if (empty($ids)) {
      return parent::loadMultiple();
    }

    // Use module load method to get ConfigPage loaded by id.
    foreach ($ids as $id) {
      $entity = $this
        ->load($id);
      if (!empty($entity)) {
        $entities[$entity
          ->id()] = $entity;
      }
    }
    return $entities;
  }

}

Classes

Namesort descending Description
ConfigPagesStorage Defines the storage handler class for ConfigPages.