You are here

RealisticDummyContentBase.inc in Realistic Dummy Content 7

Define RealisticDummyContentBase autoload class.

File

api/includes/RealisticDummyContentBase.inc
View source
<?php

/**
 * @file
 *
 * Define RealisticDummyContentBase autoload class.
 */

/**
 * The most generic content manipulator.
 *
 * Because Realistic Dummy Content defines content as any data
 * including but not limited to entities, entities are managed
 * by a subclass of this, but we leave the door open to manipulators
 * of other types of data (including menus, for example, which are
 * not entites), which are not yet supported but which could be
 * in future releases. See the issue queue or open a new issue
 * at https://drupal.org/project/issues/realistic_dummy_content
 * if you would like to help with this!
 */
abstract class RealisticDummyContentBase {
  function env() {
    return RealisticDummyContentEnvironment::Get();
  }

}

Classes

Namesort descending Description
RealisticDummyContentBase The most generic content manipulator.