tripal_chado.field_storage.inc 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  1. <?php
  2. /**
  3. * Implements hook_field_storage_info().
  4. */
  5. function tripal_chado_field_storage_info() {
  6. return array(
  7. 'field_chado_storage' => array(
  8. 'label' => t('Chado'),
  9. 'description' => t('Stores fields in the local Chado database.'),
  10. 'settings' => array(),
  11. // The logo_url key is supported by Tripal. It's not a Drupal key. It's
  12. // used for adding a logo or picture for the data store to help make it
  13. // more easily recognized on the field_ui_field_overview_form. Ideally
  14. // the URL should point to a relative path on the local Drupal site.
  15. 'logo_url' => url(drupal_get_path('module', 'tripal') . '/theme/images/250px-ChadoLogo.png'),
  16. ),
  17. );
  18. }
  19. /**
  20. * Implements hook_field_storage_write().
  21. */
  22. function tripal_chado_field_storage_write($entity_type, $entity, $op, $fields) {
  23. // Get the bundle and the term for this entity.
  24. $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
  25. $term = entity_load('TripalTerm', array('id' => $entity->term_id));
  26. $term = reset($term);
  27. // Convert the Tripal term entity into the appropriate record in Chado.
  28. $dbxref = tripal_get_dbxref(array('accession' => $term->accession, 'db_id' => array('name' => $term->vocab->vocabulary)));
  29. $cvterm = tripal_get_cvterm(array('dbxref_id' => $dbxref->dbxref_id));
  30. // Get the base table, type field and record_id from the entity.
  31. $base_table = $entity->chado_table;
  32. $type_field = $entity->chado_column;
  33. $record = $entity->chado_record;
  34. $record_id = $entity->chado_record_id;
  35. $base_schema = chado_get_schema($base_table);
  36. $base_pkey = $base_schema['primary key'][0];
  37. // Convert the fields into a key/value list of fields and their values.
  38. $field_vals = tripal_chado_field_storage_write_merge_fields($fields, $entity_type, $entity);
  39. // First, write the record for the base table. If we have a record id then
  40. // this is an update and we need to set the primary key. If not, then this
  41. // is an insert and we need to set the type_id if the table supports it.
  42. $values = $field_vals[$base_table];
  43. if ($record_id) {
  44. $values[$base_pkey] = $record_id;
  45. }
  46. elseif ($type_field) {
  47. $values[$type_field] = $cvterm->cvterm_id;
  48. }
  49. $base_record_id = tripal_chado_field_storage_write_table($base_table, $values);
  50. // If this is an insert then add the chado_entity record.
  51. if ($op == FIELD_STORAGE_INSERT) {
  52. // Add a record to the chado_entity table so that the data for the
  53. // fields can be pulled from Chado when loaded the next time.
  54. $record = array(
  55. 'entity_id' => $entity->id,
  56. 'record_id' => $base_record_id,
  57. 'data_table' => $base_table,
  58. );
  59. $success = drupal_write_record('chado_entity', $record);
  60. if (!$success) {
  61. drupal_set_message('Unable to insert new Chado entity.', 'error');
  62. }
  63. // Add the record to the proper chado entity table too
  64. $chado_entity_table = tripal_chado_get_bundle_entity_table($bundle);
  65. $record = array(
  66. 'entity_id' => $entity->id,
  67. 'record_id' => $base_record_id,
  68. );
  69. $success = drupal_write_record($chado_entity_table, $record);
  70. if (!$success) {
  71. drupal_set_message('Unable to insert new Chado entity.', 'error');
  72. }
  73. }
  74. // Now that we have handled the base table, we need to handle linking tables.
  75. foreach ($field_vals as $table_name => $details) {
  76. // Skip the base table as we've already dealt with it.
  77. if ($table_name == $base_table) {
  78. continue;
  79. }
  80. foreach ($details as $delta => $values) {
  81. $record_id = tripal_chado_field_storage_write_table($table_name, $values);
  82. }
  83. }
  84. }
  85. /**
  86. * Write (inserts/updates/deletes) values for a Chado table.
  87. *
  88. * The $values array is of the same format used by chado_insert_record() and
  89. * chado_update_record(). However, both of those methods will use any nested
  90. * arrays (i.e. representing foreign keys) to select an appropriate record ID
  91. * that can be substituted as the value. Here, the nested arrays are
  92. * either inserted or updated as well, but the choice is determined if the
  93. * primary key value is present. If present an update occurs, if not present
  94. * then an insert occurs.
  95. *
  96. * This function is recursive and nested arrays from the lowest point of the
  97. * "tree" are dealt with first.
  98. *
  99. * @param $table_name
  100. * The name of the table on which the insertion/update is performed.
  101. * @param $values
  102. * The values array for the insertion.
  103. *
  104. * @throws Exception
  105. *
  106. * @return
  107. * The unique record ID.
  108. */
  109. function tripal_chado_field_storage_write_table($table_name, $values) {
  110. $schema = chado_get_schema($table_name);
  111. $fkeys = $schema['foreign keys'];
  112. $pkey = $schema['primary key'][0];
  113. // Fields with a cardinality greater than 1 will often submit an
  114. // empty form. We want to remove these empty submissions. We can detect
  115. // them if all of the fields are empty.
  116. $num_empty = 0;
  117. foreach ($values as $column => $value) {
  118. if (!$value) {
  119. $num_empty++;
  120. }
  121. }
  122. if ($num_empty == count(array_keys($values))) {
  123. return '';
  124. }
  125. // If the primary key column has a value but all other values are empty then
  126. // this is a delete.
  127. if (array_key_exists($pkey, $values) and $values[$pkey]) {
  128. $num_vals = 0;
  129. foreach ($values as $value) {
  130. if ($value) {
  131. $num_vals++;
  132. }
  133. }
  134. if ($num_vals == 1) {
  135. $new_vals[$pkey] = $values[$pkey];
  136. if (!chado_delete_record($table_name, $new_vals)) {
  137. throw new Exception('Could not delete record from table: "' . $table_name . '".');
  138. }
  139. return '';
  140. }
  141. }
  142. // If the primary key column does not have a value then this is an insert.
  143. if (!array_key_exists($pkey, $values) or !$values[$pkey] or !isset($values[$pkey])) {
  144. // Before inserting, we want to make sure the record does not
  145. // already exist. Using the unique constraint check for a matching record.
  146. $options = array('is_duplicate' => TRUE);
  147. $is_duplicate = chado_select_record($table_name, array('*'), $values, $options);
  148. if($is_duplicate) {
  149. $record = chado_select_record($table_name, array('*'), $values);
  150. return $record[0]->$pkey;
  151. }
  152. // Insert the values array as a new record in the table but remove the
  153. // pkey as it should be set.
  154. $new_vals = $values;
  155. unset($new_vals[$pkey]);
  156. $record = chado_insert_record($table_name, $new_vals);
  157. if ($record === FALSE) {
  158. throw new Exception('Could not insert Chado record into table: "' . $table_name . '".');
  159. }
  160. return $record[$pkey];
  161. }
  162. // If we've made it to this point then this is an update.
  163. // TODO: what if the unique constraint matches another record? That is
  164. // not being tested for here.
  165. $match[$pkey] = $values[$pkey];
  166. if (!chado_update_record($table_name, $match, $values)) {
  167. drupal_set_message("Could not update Chado record in table: $table_name.", 'error');
  168. }
  169. return $values[$pkey];
  170. }
  171. /**
  172. * Implements hook_field_storage_load().
  173. *
  174. * Responsible for loading the fields from the Chado database and adding
  175. * their values to the entity.
  176. */
  177. function tripal_chado_field_storage_load($entity_type, $entities, $age,
  178. $fields, $options) {
  179. $load_current = $age == FIELD_LOAD_CURRENT;
  180. global $language;
  181. $langcode = $language->language;
  182. foreach ($entities as $id => $entity) {
  183. if (property_exists($entity, 'chado_table')) {
  184. // Get the base table and record id for the fields of this entity.
  185. $base_table = $entity->chado_table;
  186. $type_field = $entity->chado_column;
  187. $record_id = $entity->chado_record_id;
  188. }
  189. else {
  190. $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
  191. $base_table = $bundle->data_table;
  192. $type_field = $bundle->type_column;
  193. // Get the record id for the fields of this entity.
  194. $chado_entity_table = tripal_chado_get_bundle_entity_table($bundle);
  195. $details = db_select($chado_entity_table, 'ce')
  196. ->fields('ce')
  197. ->condition('entity_id', $entity->id)
  198. ->execute()
  199. ->fetchObject();
  200. if (!$details) {
  201. // TODO: what to do if record is missing!
  202. }
  203. $record_id = isset($details->record_id) ? $details->record_id : '';
  204. }
  205. // Get this table's schema.
  206. $schema = chado_get_schema($base_table);
  207. $pkey_field = $schema['primary key'][0];
  208. // Get the base record if one exists
  209. $columns = array('*');
  210. $match = array($pkey_field => $record_id);
  211. $record = chado_generate_var($base_table, $match);
  212. $entity->chado_record = $record;
  213. // Iterate through the entity's fields so we can get the column names
  214. // that need to be selected from each of the tables represented.
  215. $tables = array();
  216. foreach ($fields as $field_id => $ids) {
  217. // By the time this hook runs, the relevant field definitions have been
  218. // populated and cached in FieldInfo, so calling field_info_field_by_id()
  219. // on each field individually is more efficient than loading all fields in
  220. // memory upfront with field_info_field_by_ids().
  221. $field = field_info_field_by_id($field_id);
  222. $field_name = $field['field_name'];
  223. $field_type = $field['type'];
  224. $field_module = $field['module'];
  225. // Get the instance for this field. If no instance exists then skip
  226. // loading of this field. This can happen when a field is deleted from
  227. // a bundle using the user UI form.
  228. // TODO: how to deal with deleted fields?
  229. $instance = field_info_instance($entity_type, $field_name, $entity->bundle);
  230. if (!$instance) {
  231. continue;
  232. }
  233. // Skip fields that don't map to a Chado table.
  234. if (!array_key_exists('settings', $instance) or
  235. !array_key_exists('chado_table', $instance['settings'])) {
  236. continue;
  237. }
  238. // Get the Chado table and column for this field.
  239. $field_table = $instance['settings']['chado_table'];
  240. $field_column = $instance['settings']['chado_column'];
  241. // There are only two types of fields: 1) fields that represent a single
  242. // column of the base table, or 2) fields that represent a linked record
  243. // in a many-to-one relationship with the base table.
  244. // Type 1: fields from base tables.
  245. if ($field_table == $base_table) {
  246. // Set an empty value by default, and if there is a record, then update.
  247. $entity->{$field_name}['und'][0]['value'] = '';
  248. if ($record and property_exists($record, $field_column)) {
  249. // If the field column is an object then it's a FK to another table.
  250. // and because $record object is created by the chado_generate_var()
  251. // function we must go one more level deeper to get the value
  252. if (is_object($record->$field_column)) {
  253. $fkey_column = $field_column;
  254. foreach($schema['foreign keys'] as $table => $fk_details) {
  255. foreach($fk_details['columns'] as $lfkey => $rfkey) {
  256. if ($lfkey == $field_column) {
  257. $fkey_column = $rfkey;
  258. }
  259. }
  260. }
  261. $entity->{$field_name}['und'][0]['chado-' . $field_table . '__' . $field_column] = $record->$field_column->$fkey_column;
  262. }
  263. else {
  264. // For non FK fields we'll make the field value be the same
  265. // as the column value.
  266. $entity->{$field_name}['und'][0]['value'] = $record->$field_column;
  267. $entity->{$field_name}['und'][0]['chado-' . $field_table . '__' . $field_column] = $record->$field_column;
  268. }
  269. }
  270. // Allow the creating module to alter the value if desired. The
  271. // module should do this if the field has any other form elements
  272. // that need populationg besides the value which was set above.
  273. tripal_load_include_field_class($field_type);
  274. if (class_exists($field_type) and is_subclass_of($field_type, 'TripalField')) {
  275. $tfield = new $field_type($field, $instance);
  276. $tfield->load($entity, array('record' => $record));
  277. }
  278. // For text fields that were not handled by a TripalField class we
  279. // want to automatically expand those fields.
  280. else {
  281. if ($schema['fields'][$field_column]['type'] == 'text') {
  282. $record = chado_expand_var($record, 'field', "$field_table.$field_column");
  283. $entity->{$field_name}['und'][0]['value'] = $record->$field_column;
  284. // Text fields that have a text_processing == 1 setting need a
  285. // special 'format' element too:
  286. if (array(key_exists('text_processing', $instance['settings']) and
  287. $instance['settings']['text_processing'] == 1)) {
  288. // TODO: we need a way to write the format back to the
  289. // instance settings if the user changes it when using the form.
  290. $entity->{$field_name}['und'][0]['format'] = array_key_exists('format', $instance['settings']) ? $instance['settings']['format'] : 'full_html';
  291. }
  292. }
  293. }
  294. }
  295. // Type 2: fields for linked records. These fields will have any number
  296. // of form elements that might need populating so we'll offload the
  297. // loading of these fields to the field itself.
  298. if ($field_table != $base_table) {
  299. // Set an empty value by default, and let the hook function update it.
  300. $entity->{$field_name}['und'][0]['value'] = '';
  301. tripal_load_include_field_class($field_type);
  302. if (class_exists($field_type) && method_exists($field_type, 'load')) {
  303. $tfield = new $field_type($field, $instance);
  304. $tfield->load($entity, array('record' => $record));
  305. }
  306. }
  307. } // end: foreach ($fields as $field_id => $ids) {
  308. } // end: foreach ($entities as $id => $entity) {
  309. }
  310. /**
  311. * Merges the values of all fields into a single array keyed by table name.
  312. */
  313. function tripal_chado_field_storage_write_merge_fields($fields, $entity_type, $entity) {
  314. $all_fields = array();
  315. $base_fields = array();
  316. // Iterate through all of the fields and organize them into a
  317. // new fields array keyed by the table name
  318. foreach ($fields as $field_id => $ids) {
  319. // Get the field name and information about it.
  320. $field = field_info_field_by_id($field_id);
  321. $field_name = $field['field_name'];
  322. $instance = field_info_instance('TripalEntity', $field['field_name'], $entity->bundle);
  323. // Some fields (e.g. chado_linker_cvterm_adder) don't add data to
  324. // Chado so they don't have a table, but they are still attached to the
  325. // entity. Just skip these.
  326. if (!array_key_exists('chado_table', $instance['settings'])) {
  327. continue;
  328. }
  329. $chado_table = $instance['settings']['chado_table'];
  330. $chado_column = $instance['settings']['chado_column'];
  331. $base_table = $instance['settings']['base_table'];
  332. // Iterate through the field's items. Fields with cardinality ($delta) > 1
  333. // are multi-valued.
  334. $items = field_get_items($entity_type, $entity, $field_name);
  335. $temp = array();
  336. foreach ($items as $delta => $item) {
  337. // A field may have multiple items. The field can use items
  338. // indexed with "chado-" to represent values that should map directly
  339. // to chado tables and fields.
  340. $value_set = FALSE;
  341. foreach ($item as $item_name => $value) {
  342. $matches = array();
  343. if (preg_match('/^chado-(.*?)__(.*?)$/', $item_name, $matches)) {
  344. $table_name = $matches[1];
  345. $column_name = $matches[2];
  346. // If this field belongs to the base table then we just add
  347. // those values in... there's no delta.
  348. if ($table_name == $base_table) {
  349. $base_fields[$table_name][$column_name] = $value;
  350. }
  351. else {
  352. $temp[$table_name][$delta][$column_name] = $value;
  353. }
  354. $value_set = TRUE;
  355. }
  356. }
  357. // If there is no value set for the field using the
  358. // chado-[table_name]__[field name] naming schema then check if a 'value'
  359. // item is present and if so use that for the table column value.
  360. if (!$value_set and array_key_exists('value', $items[$delta]) and
  361. !is_array($items[$delta]['value'])) {
  362. // If this field belongs to the base table then we just add
  363. // those values in... there's no delta.
  364. if ($base_table == $chado_table) {
  365. $base_fields[$chado_table][$chado_column] = $item['value'];
  366. }
  367. else {
  368. $temp[$chado_table][$delta][$chado_column] = $item['value'];
  369. }
  370. }
  371. }
  372. // Now merge the records for this field with the $new_fields array
  373. foreach ($temp as $table_name => $details) {
  374. foreach ($details as $delta => $list) {
  375. $all_fields[$table_name][] = $list;
  376. }
  377. }
  378. }
  379. $all_fields = array_merge($base_fields, $all_fields);
  380. return $all_fields;
  381. }
  382. /**
  383. * Implements hook_field_storage_query().
  384. */
  385. function tripal_chado_field_storage_query($query) {
  386. // Initialize the result array.
  387. $result = array(
  388. 'TripalEntity' => array()
  389. );
  390. // There must always be an entity filter that includes the bundle. Otherwise
  391. // it would be too overwhelming to search every table of every content type
  392. // for a matching field.
  393. if (!array_key_exists('bundle', $query->entityConditions)) {
  394. return $result;
  395. }
  396. $bundle = tripal_load_bundle_entity(array('name' => $query->entityConditions['bundle']));
  397. if (!$bundle) {
  398. return;
  399. }
  400. $data_table = $bundle->data_table;
  401. $type_column = $bundle->type_column;
  402. $type_id = $bundle->type_id;
  403. $schema = chado_get_schema($data_table);
  404. $pkey = $schema['primary key'][0];
  405. // Initialize the Query object.
  406. $cquery = chado_db_select($data_table, 'base');
  407. $cquery->fields('base', array($pkey));
  408. // Iterate through all the conditions and add to the filters array
  409. // a chado_select_record compatible set of filters.
  410. foreach ($query->fieldConditions as $index => $condition) {
  411. $field = $condition['field'];
  412. $field_name = $field['field_name'];
  413. $field_type = $field['type'];
  414. // Skip conditions that don't belong to this storage type.
  415. if ($field['storage']['type'] != 'field_chado_storage') {
  416. continue;
  417. }
  418. // The Chado settings for a field are part of the instance and each bundle
  419. // can have the same field but with different Chado mappings. Therefore,
  420. // we need to iterate through the bundles to get the field instances.
  421. foreach ($field['bundles']['TripalEntity'] as $bundle_name) {
  422. // If there is a bundle filter for the entity and if the field is not
  423. // associated with the bundle then skip it.
  424. if (array_key_exists('bundle', $query->entityConditions)) {
  425. if (strtolower($query->entityConditions['bundle']['operator']) == 'in' and
  426. !array_key_exists($bundle_name, $query->entityConditions['bundle']['value'])) {
  427. continue;
  428. }
  429. else if ($query->entityConditions['bundle']['value'] != $bundle_name) {
  430. continue;
  431. }
  432. }
  433. // Allow the field to update the query object.
  434. $instance = field_info_instance('TripalEntity', $field['field_name'], $bundle_name);
  435. if (tripal_load_include_field_class($field_type)) {
  436. $field_obj = new $field_type($field, $instance);
  437. $field_obj->query($cquery, $condition);
  438. }
  439. // If there is no ChadoField class for this field then add the
  440. // condition as is.
  441. else {
  442. $alias = $field['field_name'];
  443. $chado_table = $instance['settings']['chado_table'];
  444. $base_table = $instance['settings']['base_table'];
  445. $bschema = chado_get_schema($base_table);
  446. $bpkey = $bschema['primary key'][0];
  447. if ($chado_table == $base_table) {
  448. // Get the base table column that is associated with the term
  449. // passed as $condition['column'].
  450. $base_field = tripal_get_chado_semweb_column($chado_table, $condition['column']);
  451. $cquery->condition('base.' . $base_field , $condition['value'], $condition['operator']);
  452. }
  453. if ($chado_table != $base_table) {
  454. // TODO: I don't think we'll get here because linker fields will
  455. // always have a custom field that should implement a query()
  456. // function. But just in case here's a note to handle it.
  457. }
  458. }
  459. }
  460. } // end foreach ($query->fieldConditions as $index => $condition) {
  461. // Now join with the chado entity table to get published records only.
  462. $chado_entity_table = tripal_chado_get_bundle_entity_table($bundle);
  463. $cquery->join($chado_entity_table, 'CE', "CE.record_id = base.$pkey");
  464. $cquery->join('tripal_entity', 'TE', "CE.entity_id = TE.id");
  465. $cquery->fields('CE', array('entity_id'));
  466. $cquery->fields('TE', array('bundle'));
  467. if (array_key_exists('start', $query->range)) {
  468. $cquery->range($query->range['start'], $query->range['length']);
  469. }
  470. // Make sure we only get records of the correct entity type
  471. $cquery->condition('TE.bundle', $query->entityConditions['bundle']['value']);
  472. // Now set any ordering.
  473. foreach ($query->order as $index => $sort) {
  474. // Add in property ordering.
  475. if ($order['type'] == 'property') {
  476. }
  477. // Add in filter ordering
  478. if ($sort['type'] == 'field') {
  479. $field = $sort['specifier']['field'];
  480. $field_type = $field['type'];
  481. $field_name = $field['field_name'];
  482. // Skip sorts that don't belong to this storage type.
  483. if ($field['storage']['type'] != 'field_chado_storage') {
  484. continue;
  485. }
  486. $column = $sort['specifier']['column'];
  487. $direction = $sort['direction'];
  488. // The Chado settings for a field are part of the instance and each bundle
  489. // can have the same field but with different Chado mappings. Therefore,
  490. // we need to iterate through the bundles to get the field instances.
  491. foreach ($field['bundles']['TripalEntity'] as $bundle_name) {
  492. // If there is a bundle filter for the entity and if the field is not
  493. // associated with the bundle then skip it.
  494. if (array_key_exists('bundle', $query->entityConditions)) {
  495. if (strtolower($query->entityConditions['bundle']['operator']) == 'in' and
  496. !array_key_exists($bundle_name, $query->entityConditions['bundle']['value'])) {
  497. continue;
  498. }
  499. else if ($query->entityConditions['bundle']['value'] != $bundle_name) {
  500. continue;
  501. }
  502. }
  503. // See if there is a ChadoField class for this instance. If not then do
  504. // our best to order the field.
  505. $instance = field_info_instance('TripalEntity', $field_name, $bundle_name);
  506. if (tripal_load_include_field_class($field_type)) {
  507. $field_obj = new $field_type($field, $instance);
  508. $field_obj->queryOrder($cquery, array('column' => $column, 'direction' => $direction));
  509. }
  510. // There is no class so do our best to order the data by this field
  511. else {
  512. $base_table = $instance['settings']['base_table'];
  513. $chado_table = $instance['settings']['chado_table'];
  514. $table_column = tripal_get_chado_semweb_column($chado_table, $column);
  515. if ($table_column) {
  516. if ($chado_table == $base_table) {
  517. $cquery->orderBy('base.' . $table_column, $direction);
  518. }
  519. else {
  520. // TODO: how do we handle a field that doesn't map to the base table.
  521. // We would expect that all of these would be custom field and
  522. // the ChadoField::queryOrder() function would be implemented.
  523. }
  524. }
  525. else {
  526. // TODO: handle when the name can't be matched to a table column.
  527. }
  528. }
  529. } // end foreach ($field['bundles']['TripalEntity'] as $bundle_name) {
  530. } // end if ($sort['type'] == 'field') {
  531. } // end foreach ($query->order as $index => $sort) {
  532. //print_r($cquery->__toString());
  533. //print_r($cquery->getArguments());
  534. $records = $cquery->execute();
  535. $result = array();
  536. while ($record = $records->fetchObject()) {
  537. $ids = array($record->entity_id, 0, $record->bundle);
  538. $result['TripalEntity'][$record->entity_id] = entity_create_stub_entity('TripalEntity', $ids);
  539. }
  540. return $result;
  541. }