false, ), array( 'name' => __( 'Tagline', 'publisher' ), 'id' => 'tagline', // 'type' => 'select', 'options' => array( 'show' => __( 'Show', 'publisher' ), 'hide' => __( 'Hide', 'publisher' ), ), // 'vc_admin_label' => false, ), array( 'name' => __( 'Language', 'publisher' ), 'id' => 'lang', // 'type' => 'select', 'options' => array( 'af' => __( 'Afrikaans', 'publisher' ), 'am' => __( 'Amharic', 'publisher' ), 'ar' => __( 'Arabic', 'publisher' ), 'eu' => __( 'Basque', 'publisher' ), 'bn' => __( 'Bengali', 'publisher' ), 'bg' => __( 'Bulgarian', 'publisher' ), 'ca' => __( 'Catalan', 'publisher' ), 'zh-HK' => __( 'Chinese (Hong Kong)', 'publisher' ), 'zh-CN' => __( 'Chinese (Simplified)', 'publisher' ), 'zh-TW' => __( 'Chinese (Traditional)', 'publisher' ), 'hr' => __( 'Croatian', 'publisher' ), 'cs' => __( 'Czech', 'publisher' ), 'da' => __( 'Danish', 'publisher' ), 'nl' => __( 'Dutch', 'publisher' ), 'en-GB' => __( 'English (UK)', 'publisher' ), 'en-US' => __( 'English (US)', 'publisher' ), 'et' => __( 'Estonian', 'publisher' ), 'fil' => __( 'Filipino', 'publisher' ), 'fi' => __( 'Finnish', 'publisher' ), 'fr' => __( 'French', 'publisher' ), 'fr-CA' => __( 'French (Canadian)', 'publisher' ), 'gl' => __( 'Galician', 'publisher' ), 'de' => __( 'German', 'publisher' ), 'el' => __( 'Greek', 'publisher' ), 'gu' => __( 'Gujarati', 'publisher' ), 'iw' => __( 'Hebrew', 'publisher' ), 'hi' => __( 'Hindi', 'publisher' ), 'hu' => __( 'Hungarian', 'publisher' ), 'is' => __( 'Icelandic', 'publisher' ), 'id' => __( 'Indonesian', 'publisher' ), 'it' => __( 'Italian', 'publisher' ), 'ja' => __( 'Japanese', 'publisher' ), 'kn' => __( 'Kannada', 'publisher' ), 'ko' => __( 'Korean', 'publisher' ), 'lv' => __( 'Latvian', 'publisher' ), 'lt' => __( 'Lithuanian', 'publisher' ), 'ms' => __( 'Malay', 'publisher' ), 'ml' => __( 'Malayalam', 'publisher' ), 'mr' => __( 'Marathi', 'publisher' ), 'no' => __( 'Norwegian', 'publisher' ), 'fa' => __( 'Persian', 'publisher' ), 'pl' => __( 'Polish', 'publisher' ), 'pt-BR' => __( 'Portuguese (Brazil)', 'publisher' ), 'pt-PT' => __( 'Portuguese (Portugal)', 'publisher' ), 'ro' => __( 'Romanian', 'publisher' ), 'ru' => __( 'Russian', 'publisher' ), 'sr' => __( 'Serbian', 'publisher' ), 'sk' => __( 'Slovak', 'publisher' ), 'sl' => __( 'Slovenian', 'publisher' ), 'es' => __( 'Spanish', 'publisher' ), 'es-419' => __( 'Spanish (Latin America)', 'publisher' ), 'sw' => __( 'Swahili', 'publisher' ), 'sv' => __( 'Swedish', 'publisher' ), 'ta' => __( 'Tamil', 'publisher' ), 'te' => __( 'Telugu', 'publisher' ), 'th' => __( 'Thai', 'publisher' ), 'tr' => __( 'Turkish', 'publisher' ), 'uk' => __( 'Ukrainian', 'publisher' ), 'ur' => __( 'Urdu', 'publisher' ), 'vi' => __( 'Vietnamese', 'publisher' ), 'zu' => __( 'Zulu', 'publisher' ), ), // 'vc_admin_label' => false, ), ); /** * Retrieve heading fields from outside (our themes are defining them) */ { $heading_fields = apply_filters( 'better-framework/shortcodes/heading-fields', array(), $this->id ); if ( $heading_fields ) { $fields = array_merge( $fields, $heading_fields ); } } /** * Retrieve design fields from outside (our themes are defining them) */ { $design_fields = apply_filters( 'better-framework/shortcodes/design-fields', array(), $this->id ); if ( $design_fields ) { $fields = array_merge( $fields, $design_fields ); } } bf_array_insert_after( 'bs-show-phone', $fields, 'bs-text-color-scheme', array( 'name' => __( 'Block Text Color Scheme', 'publisher' ), 'id' => 'bs-text-color-scheme', // 'type' => 'select', 'options' => array( '' => __( '-- Default --', 'publisher' ), 'light' => __( 'White Color Texts', 'publisher' ), ), // 'vc_admin_label' => false, ) ); return $fields; } /** * Registers Page Builder Add-on */ function page_builder_settings() { $settings = parent::page_builder_settings(); return array_merge( $settings, array( 'name' => __( 'Google+', 'publisher' ), "id" => $this->id, "weight" => 10, "wrapper_height" => 'full', 'icon_url' => PUBLISHER_THEME_URI . 'images/shortcodes/bs-google-plus.png', "category" => publisher_white_label_get_option( 'publisher' ), ) ); } // page_builder_settings function tinymce_settings() { return array( 'name' => __( 'Google+', 'publisher' ), 'scripts' => array( array( 'type' => 'inline', 'data' => '(function () {var po = document.createElement(\'script\');po.type = \'text/javascript\';po.async = true;po.src = \'https://apis.google.com/js/plusone.js\';var s = document.getElementsByTagName(\'script\')[0];s.parentNode.insertBefore(po, s);})();', ) ), ); } } // Publisher_Google_Plus_Shortcode /** * Publisher Google+ Widget */ class Publisher_Google_Plus_Widget extends BF_Widget { /** * Register widget with WordPress. */ function __construct() { parent::__construct( 'bs-google-plus', sprintf( __( '%s - Google+ Badge Box', 'publisher' ), publisher_white_label_get_option( 'publisher' ) ), array( 'desc' => __( 'Adds a beautiful Google Plus badge widget.', 'publisher' ) ) ); } /** * Adds backend fields */ function load_fields() { // Back end form fields $this->fields = array( array( 'name' => __( 'Title:', 'publisher' ), 'id' => 'title', 'type' => 'text', ), array( 'name' => __( 'Type:', 'publisher' ), 'id' => 'type', 'type' => 'select', 'options' => array( 'profile' => __( 'Profile', 'publisher' ), 'page' => __( 'Page', 'publisher' ), 'community' => __( 'Community', 'publisher' ), ), ), array( 'name' => __( 'Google+ Page URL:', 'publisher' ), 'id' => 'url', 'type' => 'text', ), array( 'name' => __( 'Width:', 'publisher' ), 'id' => 'width', 'type' => 'text', ), array( 'name' => __( 'Color Scheme:', 'publisher' ), 'id' => 'scheme', 'type' => 'select', 'options' => array( 'light' => __( 'Light', 'publisher' ), 'dark' => __( 'Dark', 'publisher' ), ), ), array( 'name' => __( 'Layout:', 'publisher' ), 'id' => 'layout', 'type' => 'select', 'options' => array( 'portrait' => __( 'Portrait', 'publisher' ), 'landscape' => __( 'Landscape', 'publisher' ), ), ), array( 'name' => __( 'Cover:', 'publisher' ), 'id' => 'cover', 'type' => 'select', 'options' => array( 'show' => __( 'Show', 'publisher' ), 'hide' => __( 'Hide', 'publisher' ), ), ), array( 'name' => __( 'Tagline:', 'publisher' ), 'id' => 'tagline', 'type' => 'select', 'options' => array( 'show' => __( 'Show', 'publisher' ), 'hide' => __( 'Hide', 'publisher' ), ), ), array( 'name' => __( 'Language:', 'publisher' ), 'id' => 'lang', 'type' => 'select', 'options' => array( 'af' => __( 'Afrikaans', 'publisher' ), 'am' => __( 'Amharic', 'publisher' ), 'ar' => __( 'Arabic', 'publisher' ), 'eu' => __( 'Basque', 'publisher' ), 'bn' => __( 'Bengali', 'publisher' ), 'bg' => __( 'Bulgarian', 'publisher' ), 'ca' => __( 'Catalan', 'publisher' ), 'zh-HK' => __( 'Chinese (Hong Kong)', 'publisher' ), 'zh-CN' => __( 'Chinese (Simplified)', 'publisher' ), 'zh-TW' => __( 'Chinese (Traditional)', 'publisher' ), 'hr' => __( 'Croatian', 'publisher' ), 'cs' => __( 'Czech', 'publisher' ), 'da' => __( 'Danish', 'publisher' ), 'nl' => __( 'Dutch', 'publisher' ), 'en-GB' => __( 'English (UK)', 'publisher' ), 'en-US' => __( 'English (US)', 'publisher' ), 'et' => __( 'Estonian', 'publisher' ), 'fil' => __( 'Filipino', 'publisher' ), 'fi' => __( 'Finnish', 'publisher' ), 'fr' => __( 'French', 'publisher' ), 'fr-CA' => __( 'French (Canadian)', 'publisher' ), 'gl' => __( 'Galician', 'publisher' ), 'de' => __( 'German', 'publisher' ), 'el' => __( 'Greek', 'publisher' ), 'gu' => __( 'Gujarati', 'publisher' ), 'iw' => __( 'Hebrew', 'publisher' ), 'hi' => __( 'Hindi', 'publisher' ), 'hu' => __( 'Hungarian', 'publisher' ), 'is' => __( 'Icelandic', 'publisher' ), 'id' => __( 'Indonesian', 'publisher' ), 'it' => __( 'Italian', 'publisher' ), 'ja' => __( 'Japanese', 'publisher' ), 'kn' => __( 'Kannada', 'publisher' ), 'ko' => __( 'Korean', 'publisher' ), 'lv' => __( 'Latvian', 'publisher' ), 'lt' => __( 'Lithuanian', 'publisher' ), 'ms' => __( 'Malay', 'publisher' ), 'ml' => __( 'Malayalam', 'publisher' ), 'mr' => __( 'Marathi', 'publisher' ), 'no' => __( 'Norwegian', 'publisher' ), 'fa' => __( 'Persian', 'publisher' ), 'pl' => __( 'Polish', 'publisher' ), 'pt-BR' => __( 'Portuguese (Brazil)', 'publisher' ), 'pt-PT' => __( 'Portuguese (Portugal)', 'publisher' ), 'ro' => __( 'Romanian', 'publisher' ), 'ru' => __( 'Russian', 'publisher' ), 'sr' => __( 'Serbian', 'publisher' ), 'sk' => __( 'Slovak', 'publisher' ), 'sl' => __( 'Slovenian', 'publisher' ), 'es' => __( 'Spanish', 'publisher' ), 'es-419' => __( 'Spanish (Latin America)', 'publisher' ), 'sw' => __( 'Swahili', 'publisher' ), 'sv' => __( 'Swedish', 'publisher' ), 'ta' => __( 'Tamil', 'publisher' ), 'te' => __( 'Telugu', 'publisher' ), 'th' => __( 'Thai', 'publisher' ), 'tr' => __( 'Turkish', 'publisher' ), 'uk' => __( 'Ukrainian', 'publisher' ), 'ur' => __( 'Urdu', 'publisher' ), 'vi' => __( 'Vietnamese', 'publisher' ), 'zu' => __( 'Zulu', 'publisher' ), ), ), ); } } BOA - JusteInfos- Information générale