function tripal_get_organism_image_url

2.x tripal_organism.api.inc tripal_get_organism_image_url($organism)
3.x tripal_chado.module.DEPRECATED.api.inc tripal_get_organism_image_url($organism)

Return the path for the organism image.

Parameters

$organism: An organism table record.

Return value

If the type parameter is 'url' (the default) then the fully qualified url to the image is returend. If no image is present then NULL is returned.

3 calls to tripal_get_organism_image_url()
tripal_organism_base.tpl.php in legacy/tripal_organism/theme/templates/tripal_organism_base.tpl.php
tripal_organism_get_image_url in legacy/tripal_organism/api/tripal_organism.DEPRECATED.inc
tripal_organism_teaser.tpl.php in legacy/tripal_organism/theme/templates/tripal_organism_teaser.tpl.php

File

tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc, line 925
These api functions are deprecated, if your site is currently using them please update your code with the newer tripal_chado functions.

Code

function tripal_get_organism_image_url($organism) {
  chado_get_organism_image_url($organism);
}