123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- /**
- * TripalVocabController extends DrupalDefaultEntityController.
- *
- * Our subclass of DrupalDefaultEntityController lets us add a few
- * important create, update, and delete methods.
- */
- class TripalVocabController extends EntityAPIController {
- public function __construct($entityType) {
- parent::__construct($entityType);
- }
- public function create(array $values = array()) {
- return parent::create($values);
- }
- /**
- * Delete a single entity.
- *
- * Really a convenience function for deleteMultiple().
- */
- public function delete($entity) {
- $transaction = db_transaction();
- try {
- // Invoke hook_entity_delete().
- module_invoke_all('entity_delete', $entity, $entity->type);
- field_attach_delete('TripalVocab', $entity);
- db_delete('tripal_term')
- ->condition('term_id', $entity->term_id)
- ->execute();
- }
- catch (Exception $e) {
- $transaction->rollback();
- watchdog_exception('tripal_entities', $e);
- throw $e;
- return FALSE;
- }
- return TRUE;
- }
- /**
- * Saves the custom fields using drupal_write_record().
- */
- public function save($entity) {
- global $user;
- $pkeys = array();
- $transaction = db_transaction();
- try {
- // If our entity has no id, then we need to give it a
- // time of creation.
- if (empty($entity->id)) {
- $entity->created = time();
- $invocation = 'entity_insert';
- }
- else {
- $invocation = 'entity_update';
- $pkeys = array('id');
- }
- // Invoke hook_entity_presave().
- module_invoke_all('entity_presave', $entity, $entity->type);
- // Write out the entity record.
- $record = array(
- 'namespace' => $entity->namespace,
- 'created' => $entity->created,
- 'changed' => time(),
- );
- if ($invocation == 'entity_update') {
- $record['id'] = $entity->id;
- }
- $success = drupal_write_record('tripal_vocab', $record, $pkeys);
- if ($success == SAVED_NEW) {
- $entity->id = $record['id'];
- }
- // Now we need to either insert or update the fields which are
- // attached to this entity. We use the same primary_keys logic
- // to determine whether to update or insert, and which hook we
- // need to invoke.
- if ($invocation == 'entity_insert') {
- field_attach_insert('TripalVocab', $entity);
- }
- else {
- field_attach_update('TripalVocab', $entity);
- }
- // Invoke either hook_entity_update() or hook_entity_insert().
- module_invoke_all('entity_postsave', $entity, $entity->type);
- module_invoke_all($invocation, $entity, $entity->type);
- return $entity;
- }
- catch (Exception $e) {
- $transaction->rollback();
- watchdog_exception('tripal_entity', $e);
- drupal_set_message("Could not save the entity:" . $e->getMessage(), "error");
- return FALSE;
- }
- }
- }
|