BxBaseProfileView.php has these two classes:
class BxBaseProfileView extends BxDolPageView
class BxBaseProfileGenerator extends BxDolProfile
However, in BxTemplProfileView.php we have only this:
class BxTemplProfileView extends BxBaseProfileView
Why no: class BxTemplProfileGenerator extends BxBaseProfileGenerator ?
It makes it not quite as straightforward to override functions in the BxBaseProfileGenerator class. All I want to do is override function showBlockCover, but I'm uncertain as to exactly how to do it in this case.