123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <?php
- /**
- * @file
- * Test moduel for the entity API.
- */
- /**
- * Implements hook_entity_info().
- */
- function entity_test_entity_info() {
- $return = array(
- 'entity_test' => array(
- 'label' => t('Test Entity'),
- 'plural label' => t('Test Entities'),
- 'description' => t('An entity type used by the entity API tests.'),
- 'entity class' => 'EntityClass',
- 'controller class' => 'EntityAPIController',
- 'base table' => 'entity_test',
- 'fieldable' => TRUE,
- 'entity keys' => array(
- 'id' => 'pid',
- 'bundle' => 'name',
- ),
- // Make use the class' label() and uri() implementation by default.
- 'label callback' => 'entity_class_label',
- 'uri callback' => 'entity_class_uri',
- 'bundles' => array(),
- 'bundle keys' => array(
- 'bundle' => 'name',
- ),
- 'module' => 'entity_test',
- ),
- 'entity_test_type' => array(
- 'label' => t('Test entity type'),
- 'entity class' => 'Entity',
- 'controller class' => 'EntityAPIControllerExportable',
- 'base table' => 'entity_test_type',
- 'fieldable' => FALSE,
- 'bundle of' => 'entity_test',
- 'exportable' => TRUE,
- 'entity keys' => array(
- 'id' => 'id',
- 'name' => 'name',
- ),
- 'module' => 'entity_test',
- ),
- 'entity_test2' => array(
- 'label' => t('Test Entity (revision support)'),
- 'entity class' => 'EntityClassRevision',
- 'controller class' => 'EntityAPIController',
- 'base table' => 'entity_test2',
- 'revision table' => 'entity_test2_revision',
- 'fieldable' => TRUE,
- 'entity keys' => array(
- 'id' => 'pid',
- 'revision' => 'revision_id',
- ),
- // Make use of the class label() and uri() implementation by default.
- 'label callback' => 'entity_class_label',
- 'uri callback' => 'entity_class_uri',
- 'bundles' => array(),
- 'bundle keys' => array(
- 'bundle' => 'name',
- ),
- ),
- );
- // Add bundle info but bypass entity_load() as we cannot use it here.
- $types = db_select('entity_test_type', 'et')
- ->fields('et')
- ->execute()
- ->fetchAllAssoc('name');
- foreach ($types as $name => $type) {
- $return['entity_test']['bundles'][$name] = array(
- 'label' => $type->label,
- );
- }
- // Support entity cache module.
- if (module_exists('entitycache')) {
- $return['entity_test']['field cache'] = FALSE;
- $return['entity_test']['entity cache'] = TRUE;
- }
- return $return;
- }
- /**
- * Gets an array of all test entity types, keyed by the name.
- *
- * @param $name
- * If set, the type with the given name is returned.
- */
- function entity_test_get_types($name = NULL) {
- $types = entity_load_multiple_by_name('entity_test_type', isset($name) ? array($name) : FALSE);
- return isset($name) ? reset($types) : $types;
- }
- /**
- * Load multiple test entities based on certain conditions.
- *
- * @param $pids
- * An array of entity IDs.
- * @param $conditions
- * An array of conditions to match against the {entity} table.
- * @param $reset
- * A boolean indicating that the internal cache should be reset.
- * @return
- * An array of test entity objects, indexed by pid.
- */
- function entity_test_load_multiple($pids = array(), $conditions = array(), $reset = FALSE) {
- return entity_load('entity_test', $pids, $conditions, $reset);
- }
- /**
- * Delete multiple test entities.
- *
- * @param $pids
- * An array of test entity IDs.
- */
- function entity_test_delete_multiple(array $pids) {
- entity_get_controller('entity_test')->delete($pids);
- }
- /**
- * Main class for test entities.
- */
- class EntityClass extends Entity {
- public function __construct(array $values = array(), $entityType = NULL) {
- parent::__construct($values, 'entity_test');
- }
- /**
- * Override buildContent() to add the username to the output.
- */
- public function buildContent($view_mode = 'full', $langcode = NULL) {
- $content['user'] = array(
- '#markup' => "User: ". format_username(user_load($this->uid)),
- );
- return entity_get_controller($this->entityType)->buildContent($this, $view_mode, $langcode, $content);
- }
- /**
- * Specifies the default label, which is picked up by label() by default.
- */
- protected function defaultLabel() {
- $type = entity_test_get_types($this->name);
- return $type->label;
- }
- /**
- * Specifies the default uri, which is picked up by uri() by default.
- */
- protected function defaultURI() {
- return array('path' => 'custom/' . $this->identifier());
- }
- }
- /**
- * Main class for test entities (with revision support).
- */
- class EntityClassRevision extends EntityClass {
- public function __construct(array $values = array(), $entityType = NULL) {
- Entity::__construct($values, 'entity_test2');
- }
- }
- /**
- *
- *
- * Some hook implementations used by the tests.
- *
- *
- */
- /**
- * Implements hook_entity_insert().
- */
- function entity_test_entity_insert($entity, $entity_type) {
- if ($entity_type == 'entity_test_type') {
- $_SESSION['entity_hook_test']['entity_insert'][] = entity_id($entity_type, $entity);
- }
- }
- /**
- * Implements hook_entity_update().
- */
- function entity_test_entity_update($entity, $entity_type) {
- $_SESSION['entity_hook_test']['entity_update'][] = entity_id($entity_type, $entity);
- }
- /**
- * Implements hook_entity_delete().
- */
- function entity_test_entity_delete($entity, $entity_type) {
- if ($entity_type == 'entity_test_type') {
- $_SESSION['entity_hook_test']['entity_delete'][] = entity_id($entity_type, $entity);
- }
- }
- /**
- * Implements hook_entity_test_type_insert().
- */
- function entity_test_entity_test_type_insert($entity) {
- $_SESSION['entity_hook_test']['entity_test_type_insert'][] = $entity->identifier();
- }
- /**
- * Implements hook_entity_test_type_update().
- */
- function entity_test_entity_test_type_update($entity) {
- $_SESSION['entity_hook_test']['entity_test_type_update'][] = $entity->identifier();
- // Determine changes on update.
- if (!empty($entity->original) && $entity->original->label == 'test_changes') {
- if ($entity->original->label != $entity->label) {
- $entity->label .= '_update';
- }
- }
- }
- /**
- * Implements hook_entity_test_type_delete().
- */
- function entity_test_entity_test_type_delete($entity) {
- $_SESSION['entity_hook_test']['entity_test_type_delete'][] = $entity->identifier();
- }
- /**
- * Implements hook_entity_test_type_presave().
- */
- function entity_test_entity_test_type_presave($entity) {
- // Determine changes.
- if (!empty($entity->original) && $entity->original->label == 'test_changes') {
- if ($entity->original->label != $entity->label) {
- $entity->label .= '_presave';
- }
- }
- }
- /**
- * Implements hook_entity_property_info_alter() for testing an property of type
- * 'entity'.
- */
- function entity_test_entity_property_info_alter(&$info) {
- $info['node']['properties']['reference'] = array(
- 'label' => t('Test reference'),
- 'description' => t('A generic entity reference.'),
- 'getter callback' => 'entity_test_entity_getter',
- 'setter callback' => 'entity_test_entity_setter',
- 'type' => 'entity',
- );
- }
- /**
- * Getter callback for the 'reference' property.
- */
- function entity_test_entity_getter($node) {
- if (empty($node->entity)) {
- $node->entity = array('type' => 'user', 'id' => $node->uid);
- }
- // We have to return the entity wrapped.
- // Special handling for anonymous user.
- if ($node->entity['type'] === 'user' && empty($node->entity['id'])) {
- return entity_metadata_wrapper('user', drupal_anonymous_user());
- }
- else {
- return entity_metadata_wrapper($node->entity['type'], $node->entity['id']);
- }
- }
- /**
- * Setter callback for the 'reference' property.
- */
- function entity_test_entity_setter($node, $property_name, $wrapper) {
- // The entity has to be passed wrapped.
- $node->entity = array('type' => $wrapper->type(), 'id' => $wrapper->getIdentifier());
- }
|