Loads a custom block.
int $id: The id of the custom block.
Drupal\custom_block\Plugin\Core\Entity\CustomBlock|false A CustomBlock object or FALSE if the requested $id does not exist.
function custom_block_load($id) {
return entity_load('custom_block', $id);
}