5.7 - Image picker - How to?
I need to implement an image picker. In 5.6.x I did that:
[code]
$al = Loader::helper ( 'concrete/asset_library' );
$bf2 = File::getByID($fID);
echo $al->image('logo_image', 'logo_image', t('Choose Image'), $bf2);
[/code]
How do I do it now? Th…