Forked from geckoseo/beaverbuilder_mimic_whitelabel.php
Last active
June 30, 2020 14:32
-
-
Save mzykin/381274495a0b838d80147d1d5e51a327 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* *whitelabel* Beaver Builder | |
* Please support Beaver Builder by buying the product at wpbeaverbuilder.com | |
*/ | |
class FLBuilderWhiteLabel { | |
public static function is_white_labeled() { | |
return true; | |
} | |
public static function get_branding() { | |
return 'Page Builder'; | |
} | |
public static function get_branding_icon() { | |
return get_stylesheet_directory_uri() . '/images/logo.svg'; | |
} | |
public static function get_help_button_settings() { | |
return FLBuilderModel::get_help_button_defaults(); | |
} | |
public static function get_theme_branding() { | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment