tripal_chado.fields.inc 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855
  1. <?php
  2. /**
  3. * Implements hook_field_info().
  4. *
  5. * This function would normally provide a large info array for all of the
  6. * fields provided by this module. But instead it will call a hook that
  7. * can be implmented within each individual field file. This will allow
  8. * all of the code for a single field to be self contained in a single file.
  9. *
  10. * New fields can be added automatically by including a new file in the
  11. * tripal_chado/includes/fields directory. The file must be named with a
  12. * 'chado_' prefix and end with a '.inc' suffix. After adding the file,
  13. * the cache must be cleared.
  14. *
  15. */
  16. function tripal_chado_field_info() {
  17. $info = array();
  18. // Find all of the files in the tripal_chado/includes/fields directory.
  19. $fields_path = drupal_get_path('module', 'tripal_chado') . '/includes/fields';
  20. $field_files = file_scan_directory($fields_path, '/^chado_.*\.inc$/');
  21. // Iterate through the fields, include the file and run the info function.
  22. foreach ($field_files as $file) {
  23. $field_type = $file->name;
  24. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  25. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  26. $field_obj = new $field_type();
  27. $info[$field_type] = $field_obj->field_info();
  28. }
  29. }
  30. return $info;
  31. }
  32. /**
  33. * Implements hook_field_create_info().
  34. *
  35. * This is a Tripal defined hook that supports integration with the
  36. * TripalEntity field.
  37. */
  38. function tripal_chado_field_create_info($entity_type, $bundle, $term) {
  39. $bundle_name = $bundle->name;
  40. // The details array is used to pass to the TripalEntity->create_info()
  41. // function to provide more details about how the bundle is used by this
  42. // module.
  43. $details = array();
  44. // This array will hold details that map the bundle to tables in Chado.
  45. $bundle_data = array();
  46. // Get the cvterm that corresponds to this TripalTerm object.
  47. $vocab = entity_load('TripalVocab', array($term->vocab_id));
  48. $vocab = reset($vocab);
  49. $match = array(
  50. 'dbxref_id' => array(
  51. 'db_id' => array(
  52. 'name' => $vocab->vocabulary,
  53. ),
  54. 'accession' => $term->accession
  55. ),
  56. );
  57. $cvterm = chado_generate_var('cvterm', $match);
  58. // The organism table does not have a type_id so we won't ever find
  59. // a record for it in the tripal_cv_defaults table.
  60. if ($cvterm->name == 'organism') {
  61. $details = array(
  62. 'chado_cv_id' => $cvterm->cv_id->cv_id,
  63. 'chado_cvterm_id' => $cvterm->cvterm_id,
  64. 'chado_table' => 'organism',
  65. 'chado_type_table' => 'organism',
  66. 'chado_type_column' => '',
  67. );
  68. }
  69. // The analysis table does not have a type_id so we won't ever find
  70. // a record for it in the tripalcv_defaults table.
  71. else if ($cvterm->name == 'analysis') {
  72. $details = array(
  73. 'chado_cv_id' => $cvterm->cv_id->cv_id,
  74. 'chado_cvterm_id' => $cvterm->cvterm_id,
  75. 'chado_table' => 'analysis',
  76. 'chado_type_table' => 'analysis',
  77. 'chado_type_column' => '',
  78. );
  79. }
  80. else if ($cvterm->name == 'project') {
  81. $details = array(
  82. 'chado_cv_id' => $cvterm->cv_id->cv_id,
  83. 'chado_cvterm_id' => $cvterm->cvterm_id,
  84. 'chado_table' => 'project',
  85. 'chado_type_table' => 'project',
  86. 'chado_type_column' => '',
  87. );
  88. }
  89. else {
  90. // TODO: WHAT TO DO IF A VOCABULARY IS USED AS A DEFAULT FOR MULTIPLE
  91. // TABLES.
  92. // Look to see if this vocabulary is used as a default for any table.
  93. $default = db_select('tripal_cv_defaults', 't')
  94. ->fields('t')
  95. ->condition('cv_id', $cvterm->cv_id->cv_id)
  96. ->execute()
  97. ->fetchObject();
  98. if ($default) {
  99. $details = array(
  100. 'chado_cv_id' => $cvterm->cv_id->cv_id,
  101. 'chado_cvterm_id' => $cvterm->cvterm_id,
  102. 'chado_table' => $default->table_name,
  103. 'chado_type_table' => $default->table_name,
  104. 'chado_type_column' => $default->field_name,
  105. );
  106. }
  107. }
  108. // Save the mapping information so that we can reuse it when we need to
  109. // look things up for later (such as the hook_create_instance_info() function.
  110. tripal_set_bundle_variable('chado_cv_id', $bundle->id, $details['chado_cv_id']);
  111. tripal_set_bundle_variable('chado_cvterm_id', $bundle->id, $details['chado_cvterm_id']);
  112. tripal_set_bundle_variable('chado_table', $bundle->id, $details['chado_table']);
  113. tripal_set_bundle_variable('chado_type_table', $bundle->id, $details['chado_type_table']);
  114. tripal_set_bundle_variable('chado_type_column', $bundle->id, $details['chado_type_column']);
  115. $base_fields = tripal_chado_field_create_base('create_info', $entity_type, $bundle, $details);
  116. $custom_fields = tripal_chado_field_create_info_custom($entity_type, $bundle, $details);
  117. return array_merge($base_fields, $custom_fields);
  118. }
  119. /**
  120. * A helper function for the tripal_chado_field_create_info() function.
  121. *
  122. * This function adds in the custom fields info by instantiating the class
  123. * for the custom field, calling the create_info() function and
  124. * returning the info array.
  125. *
  126. * @param $entity_type
  127. * The type of entity (e.g TripalEntity)
  128. * @param $bundle
  129. * The bundle object.
  130. * @param $details
  131. * An array containing the mapping of the bundle to the Chado table.
  132. */
  133. function tripal_chado_field_create_info_custom($entity_type, $bundle, $details) {
  134. $info = array();
  135. // Find all of the files in the tripal_chado/includes/fields directory.
  136. $fields_path = drupal_get_path('module', 'tripal_chado') . '/includes/fields';
  137. $field_files = file_scan_directory($fields_path, '/^chado_.*\.inc$/');
  138. // Iterate through the fields, include the file and run the info function.
  139. foreach ($field_files as $file) {
  140. $field_type = $file->name;
  141. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  142. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  143. $field_obj = new $field_type();
  144. $result = $field_obj->create_info($entity_type, $bundle, $details);
  145. if (is_array($result)) {
  146. $info[$result['field_name']] = $result;
  147. }
  148. }
  149. }
  150. return $info;
  151. }
  152. /**
  153. * Retrieves either the create_info or create_instance_info arrays.
  154. *
  155. * The logic for creating the fields for the base table is so similar for
  156. * both the create_info and create_instance_info arrays they are both
  157. * handled by this function to prevent duplication of code.
  158. *
  159. * @param $step
  160. * Set to 'create_info' to retrun the create_info array or
  161. * 'create_instance_info' to return the create_instance_info array.
  162. * @param $entity_type
  163. * The type of entity (e.g TripalEntity)
  164. * @param $bundle
  165. * The bundle object.
  166. * @param $details
  167. * An array containing the mapping of the bundle to the Chado table.
  168. *
  169. * @return
  170. * An array compabile with the tripal_chado_field_create_info() and
  171. * tripal_chado_field_create_instance_info() functions.
  172. */
  173. function tripal_chado_field_create_base($step, $entity_type, $bundle, $details) {
  174. $table_name = $details['chado_table'];
  175. $type_table = $details['chado_type_table'];
  176. $type_field = $details['chado_type_column'];
  177. // Iterate through the columns of the table and see if fields have been
  178. // created for each one. If not, then create them.
  179. $schema = chado_get_schema($table_name);
  180. $columns = $schema['fields'];
  181. $fields = array();
  182. foreach ($columns as $column_name => $details) {
  183. $field_name = $table_name . '__' . $column_name;
  184. // Skip the primary key field.
  185. if ($column_name == $schema['primary key'][0]) {
  186. continue;
  187. }
  188. // Skip the type field.
  189. if ($table_name == $type_table and $column_name == $type_field) {
  190. continue;
  191. }
  192. // Get the field defaults for this column.
  193. $field_info = array();
  194. if ($step == 'create_info') {
  195. $field_info = tripal_chado_field_create_info_base_defaults($field_name,
  196. $table_name, $schema, $column_name);
  197. }
  198. if ($step == 'create_instance_info') {
  199. $field_info = tripal_chado_field_create_instance_info_base_defaults($bundle->name,
  200. $field_name, $table_name, $schema, $column_name);
  201. }
  202. // TODO: add in a call to drupal_alter to allow other modules to change
  203. // the field settings.
  204. // Add the field to the bundle.
  205. $fields[$field_name] = $field_info;
  206. }
  207. return $fields;
  208. }
  209. /**
  210. * A helper function for the tripal_chado_field_create_info() function.
  211. *
  212. * This function generates the default chado_info array for a column in
  213. * a base table of Chado. All of fields returned by this function use
  214. * default Drupal fields to manage the data in Chado columns. For
  215. * custom handling of columns there are custom TripalEntity extensions that
  216. * are added by the tripal_chado_field_create_info_custom() function. A
  217. * custom field will superceed any default base field of the same name
  218. * provided here.
  219. *
  220. * @param $field_name
  221. * The name for the new field.
  222. * @param $table_name
  223. * The Chado table
  224. * @param $schema
  225. * The Drupal schema array for the Chado table.
  226. * @param $column_name
  227. * The name of the column in the Chado table.
  228. * @return
  229. * An associative array compatible with the tripal_chado_field_create_info()
  230. * function.
  231. */
  232. function tripal_chado_field_create_info_base_defaults($field_name, $table_name,
  233. $schema, $column_name) {
  234. $details = $schema['fields'][$column_name];
  235. // Set some defaults for the field.
  236. $field = array(
  237. 'field_name' => $field_name,
  238. 'type' => '',
  239. 'cardinality' => 1,
  240. 'locked' => FALSE,
  241. 'storage' => array(
  242. 'type' => 'field_chado_storage',
  243. ),
  244. 'settings' => array(
  245. 'chado_table' => $table_name,
  246. 'chado_column' => $column_name,
  247. 'semantic_web' => '',
  248. ),
  249. );
  250. // Alter the field info array depending on the column details.
  251. switch($details['type']) {
  252. case 'char':
  253. $field['type'] = 'text';
  254. $field['settings']['max_length'] = $details['length'];
  255. break;
  256. case 'varchar':
  257. $field['type'] = 'text';
  258. $field['settings']['max_length'] = $details['length'];
  259. break;
  260. case 'text':
  261. $field['type'] = 'text';
  262. $field['settings']['max_length'] = 17179869184;
  263. $field['settings']['text_processing'] = 1;
  264. break;
  265. case 'blob':
  266. // not sure how to support a blob field.
  267. continue;
  268. break;
  269. case 'int':
  270. $field['type'] = 'number_integer';
  271. break;
  272. case 'float':
  273. $field['type'] = 'number_float';
  274. $field['settings']['precision'] = 10;
  275. $field['settings']['scale'] = 2;
  276. $field['settings']['decimal_separator'] = '.';
  277. break;
  278. case 'numeric':
  279. $field['type'] = 'number_decimal';
  280. break;
  281. case 'serial':
  282. // Serial fields are most likely not needed as a field.
  283. break;
  284. case 'boolean':
  285. $field['type'] = 'list_boolean';
  286. $field['settings']['allowed_values'] = array(0 => "No", 1 => "Yes");
  287. break;
  288. case 'datetime':
  289. // Use the Drupal Date and Date API to create the field/widget
  290. $field['type'] = 'datetime';
  291. break;
  292. }
  293. // Set some default semantic web information
  294. if ($column_name == 'uniquename') {
  295. $field['settings']['text_processing'] = 0;
  296. }
  297. //
  298. // PUB TABLE
  299. //
  300. elseif ($table_name == 'pub' and $column_name == 'uniquename') {
  301. $field['type'] = 'text';
  302. $field['settings']['text_processing'] = 0;
  303. }
  304. //
  305. // ANALYSIS TABLE
  306. //
  307. elseif ($table_name == 'analysis' and $column_name == 'sourceuri') {
  308. $field['type'] = 'text';
  309. $field['settings']['text_processing'] = 0;
  310. }
  311. return $field;
  312. }
  313. /**
  314. * Implements hook_field_create_instance_info().
  315. *
  316. * This is a Tripal defined hook that supports integration with the
  317. * TripalEntity field.
  318. */
  319. function tripal_chado_field_create_instance_info($entity_type, $bundle, $term) {
  320. // Get the details about the mapping of this bundle to the Chado table:
  321. $details = array(
  322. 'chado_cv_id' => tripal_get_bundle_variable('chado_cv_id', $bundle->id),
  323. 'chado_cvterm_id' => tripal_get_bundle_variable('chado_cvterm_id', $bundle->id),
  324. 'chado_table' => tripal_get_bundle_variable('chado_table', $bundle->id),
  325. 'chado_type_table' => tripal_get_bundle_variable('chado_type_table', $bundle->id),
  326. 'chado_type_column' => tripal_get_bundle_variable('chado_type_column', $bundle->id),
  327. );
  328. $base_fields = tripal_chado_field_create_base('create_instance_info', $entity_type, $bundle, $details);
  329. $custom_fields = tripal_chado_field_create_instance_info_custom($entity_type, $bundle, $details);
  330. return array_merge($base_fields, $custom_fields);
  331. }
  332. /**
  333. * A helper function for the tripal_chado_field_create_instance_info() function.
  334. *
  335. * This function generates the default chado_instance_info array for a column in
  336. * a base table of Chado. All of fields returned by this function use
  337. * default Drupal fields to manage the data in Chado columns. For
  338. * custom handling of columns there are custom TripalEntity extensions that
  339. * are added by the tripal_chado_field_create_info_custom() function. A
  340. * custom field will superceed any default base field of the same name
  341. * provided here.
  342. *
  343. * @param $bundle_name
  344. * The name of the bundle to which this field will be attached.
  345. * @param $field_name
  346. * The name for the new field.
  347. * @param $table_name
  348. * The Chado table
  349. * @param $schema
  350. * The Drupal schema array for the Chado table.
  351. * @param $column_name
  352. * The name of the column in the Chado table.
  353. * @return
  354. * An associative array compatible with the tripal_chado_field_create_info()
  355. * function.
  356. */
  357. function tripal_chado_field_create_instance_info_base_defaults($bundle_name,
  358. $field_name, $table_name, $schema, $column_name) {
  359. $details = $schema['fields'][$column_name];
  360. $field = array(
  361. 'field_name' => $field_name,
  362. 'entity_type' => 'TripalEntity',
  363. 'bundle' => $bundle_name,
  364. 'label' => ucwords(preg_replace('/_/', ' ', $column_name)),
  365. 'description' => '',
  366. 'required' => FALSE,
  367. 'settings' => array(),
  368. 'widget' => array(
  369. 'settings' => array(
  370. 'display_label' => 1,
  371. ),
  372. ),
  373. 'display' => array(
  374. 'default' => array(
  375. 'label' => 'above',
  376. 'settings' => array(),
  377. ),
  378. ),
  379. );
  380. // Determine if the field is required.
  381. if (array_key_exists('not null', $details) and $details['not null'] === TRUE) {
  382. $field_info['required'] = TRUE;
  383. }
  384. // Alter the field info array depending on the column details.
  385. switch($details['type']) {
  386. case 'char':
  387. $field['widget']['type'] = 'text_textfield';
  388. break;
  389. case 'varchar':
  390. $field['widget']['type'] = 'text_textfield';
  391. break;
  392. case 'text':
  393. $field['widget']['type'] = 'text_textarea';
  394. $field['widget']['settings']['format'] = filter_default_format();
  395. break;
  396. case 'blob':
  397. // not sure how to support a blob field.
  398. continue;
  399. break;
  400. case 'int':
  401. $field['widget']['type'] = 'number';
  402. break;
  403. case 'float':
  404. $field['widget']['type'] = 'number';
  405. break;
  406. case 'numeric':
  407. $field['widget']['type'] = 'number';
  408. break;
  409. case 'serial':
  410. // Serial fields are most likely not needed as a field.
  411. break;
  412. case 'boolean':
  413. $field['widget']['type'] = 'options_onoff';
  414. break;
  415. case 'datetime':
  416. $field['widget']['type'] = 'date_select';
  417. $field['widget']['settings']['increment'] = 1;
  418. $field['widget']['settings']['tz_handling'] = 'none';
  419. $field['widget']['settings']['collapsible'] = TRUE;
  420. // TODO: Add settings so that the minutes increment by 1.
  421. // And turn off the timezone, as the Chado field doesn't support it.
  422. break;
  423. }
  424. // Set some default semantic web information
  425. if ($column_name == 'uniquename') {
  426. $field['widget_type'] = 'text_textfield';
  427. }
  428. elseif ($field['label'] == 'Timeaccessioned') {
  429. $field['label'] = 'Time Accessioned';
  430. $field['description'] = 'Please enter the time that this record was first added to the database.';
  431. }
  432. elseif ($field['label'] == 'Timelastmodified') {
  433. $field['label'] = 'Time Last Modified';
  434. $field['description'] = 'Please enter the time that this record was last modified. The default is the current time.';
  435. }
  436. //
  437. // ORGANISM TABLE
  438. //
  439. elseif ($table_name == 'organism' and $column_name == 'comment') {
  440. $field['label'] = 'Description';
  441. }
  442. //
  443. // PUB TABLE
  444. //
  445. elseif ($table_name == 'pub' and $column_name == 'uniquename') {
  446. $field['widget_type'] = 'text_textfield';
  447. }
  448. //
  449. // ANALYSIS TABLE
  450. //
  451. elseif ($table_name == 'analysis' and $column_name == 'program') {
  452. $field['description'] = 'The program name (e.g. blastx, blastp, sim4, genscan. If the analysis was not derived from a software package then provide a very brief description of the pipeline, workflow or method.';
  453. $field['label'] = 'Program, Pipeline, Workflow or Method Name.';
  454. }
  455. elseif ($table_name == 'analysis' and $column_name == 'sourceuri') {
  456. $field['widget_type'] = 'text_textfield';
  457. $field['label'] = 'Source URL';
  458. $field['description'] = 'The URL where the original source data was derived. Ideally, this should link to the page where more information about the source data can be found.';
  459. }
  460. elseif ($table_name == 'analysis' and $column_name == 'sourcename') {
  461. $field['label'] = 'Source Name';
  462. $field['description'] = 'The name of the source data. This could be a file name, data set or a small description for how the data was collected. For long descriptions use the larger description field.';
  463. }
  464. elseif ($table_name == 'analysis' and $column_name == 'sourceversion') {
  465. $field['label'] = 'Source Version';
  466. $field['description'] = 'If hte source data set has a version include it here.';
  467. }
  468. elseif ($table_name == 'analysis' and $column_name == 'algorithm') {
  469. $field['label'] = 'Source Version';
  470. $field['description'] = 'The name of the algorithm used to produce the dataset if different from the program.';
  471. }
  472. elseif ($table_name == 'analysis' and $column_name == 'programversion') {
  473. $field['label'] = 'Program Version';
  474. $field['description'] = 'The version of the program used to perform this analysis. (e.g. TBLASTX 2.0MP-WashU [09-Nov-2000]. Enter "n/a" if no version is available or applicable.';
  475. }
  476. //
  477. // PROJECT TABLE
  478. //
  479. elseif ($table_name == 'project' and $column_name == 'description') {
  480. $field['label'] = 'Short Description';
  481. }
  482. return $field;
  483. }
  484. /**
  485. * A helper function for the tripal_chado_field_create_instance_info() function.
  486. *
  487. * This function adds in the custom fields info by instantiating the class
  488. * for the custom field, calling the create_instance_info() function and
  489. * returning the info array.
  490. *
  491. * @param $entity_type
  492. * The type of entity (e.g TripalEntity)
  493. * @param $bundle
  494. * The bundle object.
  495. * @param $details
  496. * An array containing the mapping of the bundle to the Chado table.
  497. */
  498. function tripal_chado_field_create_instance_info_custom($entity_type, $bundle, $details) {
  499. $info = array();
  500. // Find all of the files in the tripal_chado/includes/fields directory.
  501. $fields_path = drupal_get_path('module', 'tripal_chado') . '/includes/fields';
  502. $field_files = file_scan_directory($fields_path, '/^chado_.*\.inc$/');
  503. // Iterate through the fields, include the file and run the info function.
  504. foreach ($field_files as $file) {
  505. $field_type = $file->name;
  506. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  507. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  508. $field_obj = new $field_type();
  509. $result = $field_obj->create_instance_info($entity_type, $bundle, $details);
  510. if (is_array($result)) {
  511. $info[$result['field_name']] = $result;
  512. }
  513. }
  514. }
  515. return $info;
  516. }
  517. /**
  518. * Implements hook_field_widget_info().
  519. *
  520. * This function would normally provide a large info array for all of the
  521. * widgets provided by this module. But instead it will call a hook that
  522. * can be implmented within each individual field file. This will allow
  523. * all of the code for a single field to be self contained in a single file.
  524. */
  525. function tripal_chado_field_widget_info() {
  526. $widgets = array();
  527. $fields = field_info_fields();
  528. foreach ($fields as $field) {
  529. $field_type = $field['type'];
  530. if ($field['storage']['type'] == 'field_chado_storage') {
  531. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  532. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  533. $field_obj = new $field_type();
  534. $widgets[$field_type . '_widget'] = $field_obj->widget_info();
  535. }
  536. }
  537. }
  538. return $widgets;
  539. }
  540. /**
  541. * Implements hook_field_formatter_info().
  542. *
  543. * This function would normally provide a large info array for all of the
  544. * formatters provided by this module. But instead it will call a hook that
  545. * can be implmented within each individual field file. This will allow
  546. * all of the code for a single field to be self contained in a single file.
  547. */
  548. function tripal_chado_field_formatter_info() {
  549. $formatters = array();
  550. $fields = field_info_fields();
  551. foreach ($fields as $field) {
  552. $field_type = $field['type'];
  553. if ($field['storage']['type'] == 'field_chado_storage') {
  554. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  555. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  556. $field_obj = new $field_type();
  557. $formatters[$field_type . '_formatter'] = $field_obj->formatter_info();
  558. }
  559. }
  560. }
  561. return $formatters;
  562. }
  563. /**
  564. * Implements hook_field_settings_form()
  565. */
  566. function tripal_chado_field_settings_form($field, $instance, $has_data) {
  567. $form = '';
  568. $field_type = $field['type'];
  569. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  570. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  571. $field_obj = new $field_type();
  572. $form = $field_obj->settings_form($field, $instance, $has_data);
  573. }
  574. return $form;
  575. }
  576. /**
  577. * Implements hook_field_formatter_settings_summary().
  578. */
  579. function tripal_chado_field_formatter_settings_summary($field, $instance, $view_mode) {
  580. $summary = '';
  581. $field_type = $field['type'];
  582. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  583. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  584. $field = new $field_type();
  585. $summary = $field->formatter_settings_summary($field, $instance, $view_mode);
  586. }
  587. return $summary;
  588. }
  589. /**
  590. * Implements hook_field_formatter_settings_form().
  591. */
  592. function tripal_chado_field_formatter_settings_form($field, $instance,
  593. $view_mode, $form, &$form_state) {
  594. $element = array();
  595. $field_type = $field['type'];
  596. form_load_include($form_state, 'inc', 'tripal_chado', 'includes/fields/' . $field_type);
  597. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  598. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  599. $field_obj = new $field_type();
  600. $element = $field_obj->formatter_settings_form($field, $instance, $view_mode, $form, $form_state);
  601. }
  602. $function = $field_type . '_formatter_settings_form';
  603. if (function_exists($function)) {
  604. $element = $function($field, $instance, $view_mode, $form, $form_state);
  605. }
  606. return $element;
  607. }
  608. /**
  609. * Implements hook_field_formatter_view().
  610. */
  611. function tripal_chado_field_formatter_view($entity_type, $entity, $field,
  612. $instance, $langcode, $items, $display) {
  613. $element = array();
  614. $field_type = $field['type'];
  615. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  616. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  617. $field_obj = new $field_type();
  618. $field_obj->formatter_view($element, $entity_type, $entity, $field, $instance, $langcode, $items, $display);
  619. }
  620. return $element;
  621. }
  622. /**
  623. * Implements hook_field_widget_form().
  624. */
  625. function tripal_chado_field_widget_form(&$form, &$form_state, $field,
  626. $instance, $langcode, $items, $delta, $element) {
  627. $widget = $element;
  628. $field_name = $instance['field_name'];
  629. $field_type = $field['type'];
  630. form_load_include($form_state, 'inc', 'tripal_chado', 'includes/fields/' . $field_type);
  631. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_name);
  632. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  633. $field_obj = new $field_type();
  634. $field_obj->widget_form($widget, $form, $form_state, $field, $instance, $langcode, $items, $delta, $element);
  635. }
  636. return $widget;
  637. }
  638. /**
  639. * Implements hook_field_widget_form_alter().
  640. */
  641. function tripal_chado_field_widget_form_alter(&$element, &$form_state, $context) {
  642. if (array_key_exists('#field_name', $element)) {
  643. $field_name = $element['#field_name'];
  644. $matches = array();
  645. if (preg_match('/(.+?)__(.+?)$/', $field_name, $matches)) {
  646. $tablename = $matches[1];
  647. $colname = $matches[2];
  648. $schema = chado_get_schema($tablename);
  649. if (!$schema) {
  650. return;
  651. }
  652. // The timelastmodified field exists in many Chado tables. We want
  653. // the form element to update to the most recent time rather than the time
  654. // in the database.
  655. if ($colname == 'timelastmodified' and $schema['fields'][$colname]['type'] == 'datetime') {
  656. // We want the default value for the field to be the current time.
  657. $element['#default_value']['value'] = format_date(time(), 'custom', "Y-m-d H:i:s", 'UTC');
  658. $element['#date_items']['value'] = $element['#default_value']['value'];
  659. }
  660. // We want the date combo fieldset to be collaspible so we will
  661. // add our own theme_wrapper to replace the one added by the date
  662. // module.
  663. if (array_key_exists($colname, $schema['fields']) and $schema['fields'][$colname]['type'] == 'datetime') {
  664. $element['#theme_wrappers'] = array('tripal_chado_date_combo');
  665. }
  666. }
  667. }
  668. }
  669. /**
  670. * Implements hook_field_validate()
  671. */
  672. function tripal_chado_field_validate($entity_type, $entity, $field, $instance,
  673. $langcode, $items, &$errors) {
  674. $field_type = $field['type'];
  675. if ($field['storage']['type'] == 'field_chado_storage') {
  676. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  677. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  678. $field_obj = new $field_type();
  679. $field_obj->validate($entity_type, $entity, $field, $instance,
  680. $langcode, $items, $errors);
  681. }
  682. }
  683. }
  684. /**
  685. * Implements hook_field_validate()
  686. */
  687. function tripal_chado_field_submit($entity_type, $entity, $field, $instance,
  688. $langcode, &$items, $form, &$form_state) {
  689. $field_type = $field['type'];
  690. if ($field['storage']['type'] == 'field_chado_storage') {
  691. module_load_include('inc', 'tripal_chado', 'includes/fields/' . $field_type);
  692. if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
  693. $field_obj = new $field_type();
  694. $field_obj->submit($entity_type, $entity, $field, $instance,
  695. $langcode, $items, $form, $form_state);
  696. }
  697. }
  698. }
  699. /**
  700. * Implements hook_form_FORM_ID_alter().
  701. *
  702. * The field_ui_display_overview_form is used for formatting the display
  703. * or layout of fields attached to an entity and shown on the entity view page.
  704. *
  705. * This function removes the cvterm class and property adder field as those are
  706. * really not meant for users to show or manage.
  707. */
  708. function tripal_chado_form_field_ui_display_overview_form_alter(&$form, &$form_state, $form_id) {
  709. // Remove the kvproperty_addr field as it isn't ever displayed. It's just used
  710. // on the add/edit form of an entity for adding new property fields.
  711. $fields_names = element_children($form['fields']);
  712. foreach ($fields_names as $field_name) {
  713. $field_info = field_info_field($field_name);
  714. if ($field_info['type'] == 'kvproperty_adder') {
  715. unset($form['fields'][$field_name]);
  716. }
  717. if ($field_info['type'] == 'cvterm_class_adder') {
  718. unset($form['fields'][$field_name]);
  719. }
  720. }
  721. }
  722. /**
  723. * Implements hook_form_FORM_ID_alter().
  724. *
  725. * The field_ui_field_overview_form is used for ordering and configuring the
  726. * fields attached to an entity.
  727. *
  728. * This function removes the property adder field as that is really not meant
  729. * for users to show or manage.
  730. */
  731. function tripal_chado_form_field_ui_field_overview_form_alter(&$form, &$form_state, $form_id) {
  732. // Remove the kvproperty_addr field as it isn't ever displayed. It's just used
  733. // on the add/edit form of an entity for adding new property fields.
  734. $fields_names = element_children($form['fields']);
  735. foreach ($fields_names as $field_name) {
  736. $field_info = field_info_field($field_name);
  737. if ($field_info['type'] == 'kvproperty_adder') {
  738. unset($form['fields'][$field_name]);
  739. }
  740. if ($field_info['type'] == 'cvterm_class_adder') {
  741. unset($form['fields'][$field_name]);
  742. }
  743. }
  744. }
  745. /**
  746. * Implements hook_field_is_empty().
  747. */
  748. function tripal_chado_field_is_empty($item, $field) {
  749. // If there is no value field then the field is empty.
  750. if (!array_key_exists('value', $item)) {
  751. return TRUE;
  752. }
  753. // Iterate through all of the fields and if at least one has a value
  754. // the field is not empty.
  755. foreach ($item as $form_field_name => $value) {
  756. if (isset($value) and $value != NULL and $value != '') {
  757. return FALSE;
  758. }
  759. }
  760. // Otherwise, the field is empty.
  761. return TRUE;
  762. }