Forked from badabingbreda/beaverbuilder_mimic_whitelabel.php
Last active
March 28, 2019 20:40
-
-
Save geckoseo/b591a402f8a73b843e7ddb978ad40ce3 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 () . '/assets/media/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