| @@ -40,10 +40,34 @@ | ||
| 40 | 40 | |
| 41 | 41 | add_action('admin_menu', array($this, 'register_tools_menu')); |
| 42 | 42 | add_action('tool_box', array($this->view_manager, 'tool_box')); |
| 43 | 43 | add_filter('plugin_action_links_' . $this->properties->plugin_basename, array($this, 'add_plugin_links')); |
| 44 | + add_filter('update_footer', [$this, 'add_footer_text_right'], 20); | |
| 45 | + add_filter('admin_footer_text', [$this, 'add_footer_text_left']); | |
| 44 | 46 | } |
| 45 | 47 | |
| 48 | + public function add_footer_text_left($text) | |
| 49 | + { | |
| 50 | + $screen = get_current_screen(); | |
| 51 | + if ($screen->id !== 'tools_page_importwp') { | |
| 52 | + return $text; | |
| 53 | + } | |
| 54 | + | |
| 55 | + return '<a target="_blank" href="https://www.importwp.com/support/">Contact support</a> | Add your <a target="_blank" href="http://wordpress.org/support/view/plugin-reviews/jc-importer#postform">★★★★★</a> on <a target="_blank" href="http://wordpress.org/plugins/jc-importer/">wordpress.org</a>'; | |
| 56 | + } | |
| 57 | + | |
| 58 | + public function add_footer_text_right($text) | |
| 59 | + { | |
| 60 | + $screen = get_current_screen(); | |
| 61 | + if ($screen->id !== 'tools_page_importwp') { | |
| 62 | + return $text; | |
| 63 | + } | |
| 64 | + | |
| 65 | + return '<a class="iwp-footer-link" target="_blank" href="https://translate.wordpress.org/projects/wp-plugins/jc-importer/"><span class="dashicons dashicons-translation"></span> Translate</a> | | |
| 66 | + <a class="iwp-footer-link" target="_blank" href="https://www.importwp.com/documentation/?utm_campaign=support%2Bdocs&utm_source=Import%2BWP%2BFree&utm_medium=footer">View Documentation</a> | | |
| 67 | + ImportWP v' . IWP_VERSION . (defined('IWP_PRO_VERSION') ? ' | ImportWP PRO v' . IWP_PRO_VERSION : ''); | |
| 68 | + } | |
| 69 | + | |
| 46 | 70 | public function register_tools_menu() |
| 47 | 71 | { |
| 48 | 72 | $title = __('Import WP', $this->properties->plugin_domain); |
| 49 | 73 | |
| @@ -60,12 +84,12 @@ | ||
| 60 | 84 | return array_merge( |
| 61 | 85 | [ |
| 62 | 86 | '<a href="' . |
| 63 | 87 | admin_url('tools.php?page=' . $this->properties->plugin_domain) . |
| 64 | - '">' . __('Dashboard', 'importwp') . '</a>', | |
| 88 | + '">' . __('Dashboard', 'jc-importer') . '</a>', | |
| 65 | 89 | '<a href="' . |
| 66 | 90 | admin_url('tools.php?page=' . $this->properties->plugin_domain . '&tab=settings') . |
| 67 | - '">' . __('Settings', 'importwp') . '</a>', | |
| 91 | + '">' . __('Settings', 'jc-importer') . '</a>', | |
| 68 | 92 | ], |
| 69 | 93 | $links |
| 70 | 94 | ); |
| 71 | 95 | } |
| @@ -102,19 +126,26 @@ | ||
| 102 | 126 | |
| 103 | 127 | $migrations = new Migrations(); |
| 104 | 128 | $is_setup = $migrations->isSetup() ? 'yes' : 'no'; |
| 105 | 129 | |
| 130 | + $pro_version = ''; | |
| 131 | + if (defined('IWP_PRO_VERSION') && $this->properties->is_pro) { | |
| 132 | + $pro_version .= ' (v' . IWP_PRO_VERSION . ' PRO)'; | |
| 133 | + } | |
| 134 | + | |
| 106 | 135 | wp_localize_script($this->properties->plugin_domain . '-bundle', 'iwp', array( |
| 107 | 136 | 'root' => esc_url_raw(rest_url()), |
| 108 | 137 | 'nonce' => wp_create_nonce('wp_rest'), |
| 138 | + 'download_nonce' => wp_create_nonce('iwp_export_download'), | |
| 109 | 139 | 'admin_base' => $ajax_base, |
| 110 | 140 | 'ajax_base' => rest_url('/' . $this->properties->rest_namespace . '/' . $this->properties->rest_version), |
| 111 | 141 | 'templates' => $template_data, |
| 112 | 142 | 'is_setup' => $is_setup, |
| 113 | 143 | 'plugin_url' => plugin_dir_url($this->properties->plugin_file_path), |
| 114 | - 'version' => $this->properties->plugin_version, | |
| 144 | + 'version' => 'v' . $this->properties->plugin_version . $pro_version, | |
| 115 | 145 | 'encodings' => $this->properties->encodings, |
| 116 | 146 | 'is_pro' => $this->properties->is_pro ? 'yes' : 'no', |
| 147 | + 'is_debug' => $this->importer_manager->is_debug() ? 'yes' : 'no', | |
| 117 | 148 | 'export_fields' => $this->get_export_fields(), |
| 118 | 149 | 'registered_addons' => apply_filters('iwp/register_js', []), |
| 119 | 150 | 'global_notices' => apply_filters('iwp/frontent/notices', []) |
| 120 | 151 | )); |
| @@ -184,16 +215,16 @@ | ||
| 184 | 215 | |
| 185 | 216 | $screen->add_help_tab(array( |
| 186 | 217 | 'id' => 'iwp_help_tab', |
| 187 | 218 | 'title' => __('Overview'), |
| 188 | - 'content' => '<p>' . __('Import WP allows you to import any XML or CSV file into WordPress posts, pages, users, categories and tags.', 'importwp') . '</p>', | |
| 219 | + 'content' => '<p>' . __('ImportWP allows you to import any XML or CSV file into WordPress posts, pages, users, categories and tags.', 'jc-importer') . '</p>', | |
| 189 | 220 | )); |
| 190 | 221 | |
| 191 | 222 | $screen->add_help_tab([ |
| 192 | 223 | 'id' => 'iwp_support_tab', |
| 193 | - 'title' => __('Plugin Support', 'importwp'), | |
| 194 | - 'content' => '<p>' . __('Import WP has the following support:', 'importwp') . '</p>' | |
| 195 | - . '<p>' . __('<strong>Plugin documentation</strong> — Online documentation can be found at <a href="https://www.importwp.com/docs/?utm_campaign=support%2Bdocs&utm_source=Import%2BWP%2BFree&utm_medium=help%2Btab" target="_blank">https://www.importwp.com/docs/</a>', 'importwp') . '</p>' | |
| 196 | - . '<p>' . __('<strong>Support Tickets</strong> — Support requests are handled on our support system at <a href="https://helpdesk.importwp.com/" target="_blank">https://helpdesk.importwp.com/</a>', 'importwp') . '</p>', | |
| 224 | + 'title' => __('Plugin Support', 'jc-importer'), | |
| 225 | + 'content' => '<p>' . __('Import WP has the following support:', 'jc-importer') . '</p>' | |
| 226 | + . '<p>' . sprintf(__('documentation — Online documentation can be found at %s', 'jc-importer'), '<a href="https://www.importwp.com/docs/?utm_campaign=support%2Bdocs&utm_source=Import%2BWP%2BFree&utm_medium=help%2Btab" target="_blank">https://www.importwp.com/docs/</a>') . '</p>' | |
| 227 | + . '<p>' . sprintf(__('Support Tickets — Support requests are handled on our support system at %s', 'jc-importer'), '<a href="https://helpdesk.importwp.com/" target="_blank">https://helpdesk.importwp.com/</a>') . '</p>', | |
| 197 | 228 | ]); |
| 198 | 229 | } |
| 199 | 230 | } |