How do I check if a Feature is enabled?
if( $gBitSystem->isFeatureActive( 'feature_listPages' ) ) { Feature List Pages is active! }
NOTE: if you wish exit and display an error message on failure, use:
$gBitSystem->verifyFeature( 'feature_listPages' );
Comments