You are here

function bean_services_retrieve in Bean (for Drupal 7) 7

Returns a specified bean.

Parameters

$bid: Unique identifier for the specified bean.

Return value

The bean object.

1 string reference to 'bean_services_retrieve'
bean_services_resources in ./bean.services.inc
Implements hook_services_resources().

File

./bean.services.inc, line 212
Contains callbacks for service resource manipulation.

Code

function bean_services_retrieve($bid) {
  return bean_load($bid);
}