public function TripalEntityCollection::getBundleSiteId
3.x TripalEntityCollection.inc | public TripalEntityCollection::getBundleSiteId($bundle_name) |
Retrieves the site id for this specific bundle fo the collection.
Return value
A remote site ID, or an empty string if the bundle is local.
1 call to TripalEntityCollection::getBundleSiteId()
- TripalEntityCollection::setFormatters in tripal/
includes/ TripalEntityCollection.inc - Retrieves the list of appropriate download formatters for the basket.
File
- tripal/
includes/ TripalEntityCollection.inc, line 255
Class
Code
public function getBundleSiteId($bundle_name) {
return $this->bundles[$bundle_name]->site_id;
}