/** * Returns the Bootstrapper object assigned to the view helper. * * @staticvar \MUtil_Bootstrap_View_Helper_Bootstrapper $bootstrap * @return \MUtil_Bootstrap_View_Helper_Bootstrapper */ public static function bootstrap($options = array()) { if (self::$_bootstrap) { return self::$_bootstrap; } if (isset($options['fontawesome']) && $options['fontawesome'] === true) { self::$fontawesome = true; } return false; }