芝麻web文件管理V1.00
编辑当前文件:/var/www/cognitio.in/wp-content/plugins/popup-maker/includes/modules/admin-bar.php
add_node( [ 'id' => 'popup-maker', 'title' => sprintf( '%s
%d
', __( 'Popup Maker', 'popup-maker' ), $count ), 'href' => '#popup-maker', 'meta' => [ 'class' => 'popup-maker-toolbar' ], 'parent' => false, ] ); $wp_admin_bar->add_node( [ 'id' => 'popups', 'title' => sprintf( '%s
%d
', __( 'Popups', 'popup-maker' ), $count ), 'href' => '#', 'parent' => 'popup-maker', ] ); if ( $count ) { foreach ( $popups as $popup ) { /** @var WP_Post $popup */ $node_id = 'popup-' . $popup->ID; $can_edit = current_user_can( 'edit_post', $popup->ID ); $edit_url = $can_edit ? admin_url( 'post.php?post=' . $popup->ID . '&action=edit' ) : '#'; // Single Popup Menu Node $wp_admin_bar->add_node( [ 'id' => $node_id, 'title' => esc_html( $popup->post_title ), 'href' => $edit_url, 'parent' => 'popups', ] ); // Trigger Link $wp_admin_bar->add_node( [ 'id' => $node_id . '-open', 'title' => __( 'Open Popup', 'popup-maker' ), 'meta' => [ 'onclick' => 'PUM.open(' . $popup->ID . '); return false;', ], 'href' => '#popup-maker-open-popup-' . $popup->ID, 'parent' => $node_id, ] ); $wp_admin_bar->add_node( [ 'id' => $node_id . '-close', 'title' => __( 'Close Popup', 'popup-maker' ), 'meta' => [ 'onclick' => 'PUM.close(' . $popup->ID . '); return false;', ], 'href' => '#popup-maker-close-popup-' . $popup->ID, 'parent' => $node_id, ] ); if ( pum_get_popup( $popup->ID )->has_conditions( [ 'js_only' => true ] ) ) { $wp_admin_bar->add_node( [ 'id' => $node_id . '-conditions', 'title' => __( 'Check Conditions', 'popup-maker' ), 'meta' => [ 'onclick' => 'alert(PUM.checkConditions(' . $popup->ID . ') ? "Pass" : "Fail"); return false;', ], 'href' => '#popup-maker-check-conditions-popup-' . $popup->ID, 'parent' => $node_id, ] ); } $wp_admin_bar->add_node( [ 'id' => $node_id . '-reset-cookies', 'title' => __( 'Reset Cookies', 'popup-maker' ), 'meta' => [ 'onclick' => 'PUM.clearCookies(' . $popup->ID . '); alert("' . __( 'Success', 'popup-maker' ) . '"); return false;', ], 'href' => '#popup-maker-reset-cookies-popup-' . $popup->ID, 'parent' => $node_id, ] ); if ( $can_edit ) { // Edit Popup Link $wp_admin_bar->add_node( [ 'id' => $node_id . '-edit', 'title' => __( 'Edit Popup', 'popup-maker' ), 'href' => $edit_url, 'parent' => $node_id, ] ); } } } else { $wp_admin_bar->add_node( [ 'id' => 'no-popups-loaded', 'title' => __( 'No Popups Loaded', 'popup-maker' ) . '
?
', 'href' => 'https://docs.wppopupmaker.com/article/265-my-popup-wont-work-how-can-i-fix-it?utm_campaign=contextual-help&utm_medium=inline-doclink&utm_source=plugin-admin-bar&utm_content=no-popups-loaded', 'parent' => 'popups', 'meta' => [ 'target' => '_blank', ], ] ); } if ( current_user_can( 'edit_posts' ) ) { $wp_admin_bar->add_node( [ 'id' => 'all-popups', 'title' => __( 'All Popups', 'popup-maker' ), 'href' => admin_url( 'edit.php?post_type=popup' ), 'parent' => 'popup-maker', ] ); $wp_admin_bar->add_node( [ 'id' => 'new-popups', // Just `new-popup` moves this to the top of the menu for some reason. Leave the `s` to keep it in the right place. 'title' => __( 'Create New Popup', 'popup-maker' ), 'href' => admin_url( 'post-new.php?post_type=popup' ), 'parent' => 'popup-maker', ] ); } /** * Tools */ $wp_admin_bar->add_node( [ 'id' => 'pum-tools', 'title' => __( 'Tools', 'popup-maker' ), 'href' => '#popup-maker-tools', 'parent' => 'popup-maker', ] ); $wp_admin_bar->add_node( [ 'id' => 'flush-popup-cache', 'title' => __( 'Flush Popup Cache', 'popup-maker' ), 'href' => wp_nonce_url( add_query_arg( 'flush_popup_cache', 'yes' ), 'flush_popup_cache' ), 'parent' => 'pum-tools', ] ); /** * Get Selector */ $wp_admin_bar->add_node( [ 'id' => 'pum-get-selector', 'title' => __( 'Get Selector', 'popup-maker' ), 'href' => '#popup-maker-get-selector-tool', 'parent' => 'pum-tools', ] ); } /** * @return array */ public static function loaded_popups() { static $popups; if ( ! isset( $popups ) ) { $loaded = PUM_Site_Popups::get_loaded_popups(); $popups = $loaded->posts; } return $popups; } /** * Enqueues and prepares our styles and scripts for the admin bar * * @since 1.11.0 */ public static function enqueue_files() { if ( ! self::should_render() ) { return; } $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; wp_enqueue_script( 'pum-admin-bar', Popup_Maker::$URL . 'assets/js/admin-bar' . $suffix . '.js', [ 'jquery' ], Popup_Maker::$VER, true ); wp_enqueue_style( 'pum-admin-bar-style', Popup_Maker::$URL . 'assets/css/pum-admin-bar' . $suffix . '.css', [], Popup_Maker::$VER ); $admin_bar_text = [ 'instructions' => __( 'After clicking ok, click the element you want a selector for.', 'popup-maker' ), 'results' => _x( 'Selector', 'JS alert for CSS get selector tool', 'popup-maker' ), ]; wp_localize_script( 'pum-admin-bar', 'pumAdminBarText', $admin_bar_text ); } } PUM_Modules_Admin_Bar::init();