當前位置: 首頁>>代碼示例>>PHP>>正文


PHP WC_Install::init方法代碼示例

本文整理匯總了PHP中WC_Install::init方法的典型用法代碼示例。如果您正苦於以下問題:PHP WC_Install::init方法的具體用法?PHP WC_Install::init怎麽用?PHP WC_Install::init使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在WC_Install的用法示例。


在下文中一共展示了WC_Install::init方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Exception

                    if (is_wp_error($working_dir)) {
                        throw new Exception($working_dir->get_error_message());
                    }
                    $result = $upgrader->install_package(array('source' => $working_dir, 'destination' => WP_PLUGIN_DIR, 'clear_destination' => false, 'abort_if_destination_exists' => false, 'clear_working' => true, 'hook_extra' => array('type' => 'plugin', 'action' => 'install')));
                    if (is_wp_error($result)) {
                        throw new Exception($result->get_error_message());
                    }
                    $activate = true;
                } catch (Exception $e) {
                    WC_Admin_Notices::add_custom_notice($plugin_to_install_id . '_install_error', sprintf(__('%1$s could not be installed (%2$s). <a href="%3$s">Please install it manually by clicking here.</a>', 'woocommerce'), $plugin_to_install['name'], $e->getMessage(), esc_url(admin_url('index.php?wc-install-plugin-redirect=' . $plugin_to_install['repo-slug']))));
                }
                // Discard feedback
                ob_end_clean();
            }
            wp_clean_plugins_cache();
            // Activate this thing
            if ($activate) {
                try {
                    $result = activate_plugin($plugin);
                    if (is_wp_error($result)) {
                        throw new Exception($result->get_error_message());
                    }
                } catch (Exception $e) {
                    WC_Admin_Notices::add_custom_notice($plugin_to_install_id . '_install_error', sprintf(__('%1$s was installed but could not be activated. <a href="%2$s">Please activate it manually by clicking here.</a>', 'woocommerce'), $plugin_to_install['name'], admin_url('plugins.php')));
                }
            }
        }
    }
}
WC_Install::init();
開發者ID:woocommerce,項目名稱:woocommerce,代碼行數:30,代碼來源:class-wc-install.php


注:本文中的WC_Install::init方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。