本文整理汇总了PHP中JS::init方法的典型用法代码示例。如果您正苦于以下问题:PHP JS::init方法的具体用法?PHP JS::init怎么用?PHP JS::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JS
的用法示例。
在下文中一共展示了JS::init方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add_action
if (version_compare(\PHP_VERSION, '5.5', '<')) {
add_action('admin_notices', function () {
$message = sprintf(sprintf(__('Sorry your PHP version is too old. The ThisData plugin requires PHP >= 5.5. You are running version %s.', 'thisdata-plugin'), \PHP_VERSION), Admin::getSettingsPageURL());
echo '<div class="notice notice-info"><p>' . $message . '</p></div>';
});
} else {
if (is_admin()) {
$admin = new Admin();
$admin->init();
$admin->render();
}
add_action('init', function () {
if ($apiKey = API::getKey()) {
try {
Events::init(API::getEventsEndpoint());
Webhook::init();
JS::init();
} catch (\Exception $e) {
add_action('admin_notices', function () use($e) {
$message = $e->getMessage();
echo '<div class="notice notice-error"><p>' . $message . '</p></div>';
});
}
} elseif (empty($_GET['page']) || $_GET['page'] !== Admin::SETTINGS) {
add_action('admin_notices', function () {
$message = sprintf(__('Almost done, please enter your <a href="%s">ThisData API Key</a> to complete the installation.', 'thisdata-plugin'), Admin::getSettingsPageURL());
echo '<div class="notice notice-info"><p>' . $message . '</p></div>';
});
}
});
}