本文整理汇总了PHP中TGM_Plugin_Activation类的典型用法代码示例。如果您正苦于以下问题:PHP TGM_Plugin_Activation类的具体用法?PHP TGM_Plugin_Activation怎么用?PHP TGM_Plugin_Activation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TGM_Plugin_Activation类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: oxy_fix_tgm_double_nag
function oxy_fix_tgm_double_nag()
{
global $current_screen;
if (strpos($current_screen->base, THEME_SHORT) !== false || isset($current_screen->post_type) && $current_screen->post_type === 'oxy_swatch') {
$tgmpa = TGM_Plugin_Activation::get_instance();
remove_action('admin_notices', array($tgmpa, 'notices'));
}
}
开发者ID:rinodung,项目名称:wordpress-demo,代码行数:8,代码来源:install-plugins.php
示例2: lbmn_required_plugins_install_check
/**
* ----------------------------------------------------------------------
* Check if required plugins were manually installed
*/
function lbmn_required_plugins_install_check()
{
if (TGM_Plugin_Activation::get_instance()->is_tgmpa_complete()) {
// Update theme option '_required_plugins_installed'
update_option(LBMN_THEME_NAME . '_required_plugins_installed', true);
// Mark first step 'Install Plugins' as done
echo '<script type="text/javascript">jQuery(\'.step-plugins\').addClass(\'step-completed\');</script>';
} else {
update_option(LBMN_THEME_NAME . '_required_plugins_installed', false);
}
}
开发者ID:JSreactor,项目名称:MarketCrater.com,代码行数:15,代码来源:functions-themeinstall.php
示例3: get_instance
/**
* Returns the singleton instance of the class.
*
* @since 2.4.0
*
* @return object The TGM_Plugin_Activation object.
*/
public static function get_instance()
{
if (!isset(self::$instance) && !self::$instance instanceof self) {
self::$instance = new self();
}
return self::$instance;
}
开发者ID:GvarimAZA,项目名称:website,代码行数:14,代码来源:class-tgm-plugin-activation.php
示例4: get_instance
/**
* Returns the singleton instance of the class.
*
* @since 2.4.0
*
* @return object The TGM_Plugin_Activation object.
*/
public static function get_instance()
{
if (!isset(self::$instance) && !self::$instance instanceof TGM_Plugin_Activation) {
self::$instance = new TGM_Plugin_Activation();
}
return self::$instance;
}
开发者ID:leloulight,项目名称:monero,代码行数:14,代码来源:class-tgm-plugin-activation.php
示例5: admin_notices
/**
* Renders admin notes in case there are errors or notices on bootstrap init
*
* @author peshkov@UD
*/
public function admin_notices()
{
global $wp_version;
//** Don't show the message if the user has no 'activate plugins' permission. */
if (!function_exists('wp_get_current_user')) {
require_once ABSPATH . 'wp-includes/pluggable.php';
}
if (!current_user_can('activate_plugins')) {
return;
}
//** Don't show the message if on a multisite and the user isn't a super user. */
if (is_multisite() && !is_super_admin()) {
return;
}
//** Ignore messages on TGM Plugin Activation page */
if (TGM_Plugin_Activation::get_instance()->is_tgmpa_page()) {
return;
}
$errors = apply_filters('ud:errors:admin_notices', $this->errors, $this->args);
$messages = apply_filters('ud:messages:admin_notices', $this->messages, $this->args);
$warnings = apply_filters('ud:warnings:admin_notices', $this->warnings, $this->args);
if (!empty($errors) || !empty($messages) || !empty($warnings)) {
echo "<style>.ud-admin-notice a { text-decoration: underline !important; } .ud-admin-notice { display: block !important; } .ud-admin-notice.update-nag { border-color: #ffba00 !important; }</style>";
}
//** Errors Block */
if (!empty($errors) && is_array($errors)) {
$message = '<ul style="list-style:disc inside;"><li>' . implode('</li><li>', $errors) . '</li></ul>';
$message = sprintf(__('<p><b>%s</b> is not active due to following errors:</p> %s', $this->domain), $this->name, $message);
if (!empty($this->action_links['errors']) && is_array($this->action_links['errors'])) {
$message .= '<p>' . implode(' | ', $this->action_links['errors']) . '</p>';
}
echo '<div class="ud-admin-notice error fade" style="padding:11px;">' . $message . '</div>';
}
//** Warnings Block */
if (!empty($warnings) && is_array($warnings)) {
$message = '<ul style="list-style:disc inside;"><li>' . implode('</li><li>', $warnings) . '</li></ul>';
$message = sprintf(__('<p><b>%s</b> has the following warnings:</p> %s', $this->domain), $this->name, $message);
if (!empty($this->action_links['errors']) && is_array($this->action_links['errors'])) {
$message .= '<p>' . implode(' | ', $this->action_links['errors']) . '</p>';
}
echo '<div class="ud-admin-notice updated update-nag fade" style="padding:11px;">' . $message . '</div>';
}
//** Determine if message has been dismissed */
$dismissed = get_option('dismissed_notice_' . sanitize_key($this->name));
if (empty($dismissed)) {
//** Notices Block */
if (!empty($messages) && is_array($messages)) {
$message = '<ul style="list-style:disc inside;"><li>' . implode('</li><li>', $messages) . '</li></ul>';
if (!empty($errors)) {
$message = sprintf(__('<p><b>%s</b> has the following additional notices:</p> %s', $this->domain), $this->name, $message);
} else {
$message = sprintf(__('<p><b>%s</b> is active, but has the following notices:</p> %s', $this->domain), $this->name, $message);
}
if ($this->dismiss) {
$this->action_links['messages'][] = '<a class="dismiss-notice" href="' . add_query_arg('udan-dismiss-' . sanitize_key($this->name), 'true') . '" target="_parent">' . __('Dismiss this notice', $this->domain) . '</a>';
}
$message .= '<p>' . implode(' | ', $this->action_links['messages']) . '</p>';
echo '<div class="ud-admin-notice updated fade" style="padding:11px;">' . $message . '</div>';
}
}
}
开发者ID:Juni4567,项目名称:mycashflow,代码行数:66,代码来源:class-errors.php
示例6: _get_plugin_data_from_name
/**
* Retrieve plugin data, given the plugin name.
*
* @since 2.2.0
* @deprecated 2.5.0 use {@see TGM_Plugin_Activation::_get_plugin_data_from_name()} instead.
* @see TGM_Plugin_Activation::_get_plugin_data_from_name()
*
* @param string $name Name of the plugin, as it was registered.
* @param string $data Optional. Array key of plugin data to return. Default is slug.
* @return string|boolean Plugin slug if found, false otherwise.
*/
protected function _get_plugin_data_from_name($name, $data = 'slug')
{
_deprecated_function(__FUNCTION__, 'TGMPA 2.5.0', 'TGM_Plugin_Activation::_get_plugin_data_from_name()');
return $this->tgmpa->_get_plugin_data_from_name($name, $data);
}
开发者ID:bigpopakap,项目名称:clickworthy,代码行数:16,代码来源:plugin-activation.php
示例7: themify_theme_required_plugins_admin_menu
/**
* Relocate the tgmpa admin menu under Themify
*
* @since 1.0.0
*/
function themify_theme_required_plugins_admin_menu()
{
// Make sure privileges are correct to see the page
if (!current_user_can('install_plugins')) {
return;
}
TGM_Plugin_Activation::get_instance()->populate_file_path();
foreach (TGM_Plugin_Activation::get_instance()->plugins as $plugin) {
if (!is_plugin_active($plugin['file_path'])) {
add_submenu_page('themify', __('Install Plugins', 'themify'), __('Install Plugins', 'themify'), 'manage_options', 'themify-install-plugins', array(TGM_Plugin_Activation::get_instance(), 'install_plugins_page'));
break;
}
}
}
开发者ID:jhostetter,项目名称:wp_intern_themes,代码行数:19,代码来源:theme-functions.php
示例8: lbmn_required_plugins_install_check
/**
* ----------------------------------------------------------------------
* Check if required plugins were manually installed
*/
function lbmn_required_plugins_install_check()
{
if (TGM_Plugin_Activation::get_instance()->is_tgmpa_complete()) {
// Update theme option '_required_plugins_installed'
update_option(LBMN_THEME_NAME . '_required_plugins_installed', true);
// Mark first step 'Install Plugins' as done
echo '<script type="text/javascript">jQuery(\'.step-plugins\').addClass(\'step-completed\');</script>';
} else {
update_option(LBMN_THEME_NAME . '_required_plugins_installed', false);
}
// if ( ! get_option( LBMN_THEME_NAME . '_required_plugins_installed' ) ) {
// Proceed only if '_required_plugins_installed' not already market as true
/*
global $tgmpa_settings_errors;
$current_tgmpa_message = '';
if (is_array($tgmpa_settings_errors)) {
foreach ($tgmpa_settings_errors as $message) {
$current_tgmpa_message .= $message['message'];
}
}
$current_wpadmin_screen = get_current_screen();
lbmn_debug_console( $current_wpadmin_screen->id );
// Don't check on TGMPA installation page as there is no notices
// if ($current_wpadmin_screen->id != 'appearance_page_install-required-plugins' ) {
if ($current_wpadmin_screen->id == 'themes' ) {
// echo "MESSAGE: $current_tgmpa_message";
// If message has no link to install-required-plugins page then all
// required plugins has been installed
if ( ! stristr($current_tgmpa_message, 'install-required-plugins') ) {
// Update theme option '_required_plugins_installed'
update_option( LBMN_THEME_NAME . '_required_plugins_installed', true);
// Mark first step 'Install Plugins' as done
echo '<script type="text/javascript">jQuery(\'.step-plugins\').addClass(\'step-completed\');</script>';
} else {
update_option( LBMN_THEME_NAME . '_required_plugins_installed', false);
}
lbmn_debug_console( get_option (LBMN_THEME_NAME . '_required_plugins_installed') );
}
// }
*/
}
开发者ID:yddninja,项目名称:cmsit-seo,代码行数:46,代码来源:functions-themeinstall.php
示例9: load_tgm_plugin_activation
/**
* Ensure only one instance of the class is ever invoked.
*/
function load_tgm_plugin_activation()
{
$GLOBALS['tgmpa'] = TGM_Plugin_Activation::get_instance();
}
开发者ID:Stylize,项目名称:Fuel,代码行数:7,代码来源:TGM_Plugin_Activation.php
示例10: _e
" class="nav-tab <?php
if ($this->navigation == 'extensions') {
echo "nav-tab-active";
}
?>
"><?php
_e('Extensions', 'framework');
?>
</a>
<?php
}
?>
</h2>
<?php
global $plugin_installer, $themePlugins;
$tgm = new TGM_Plugin_Activation();
$link = admin_url('admin.php?page=plugin-installer');
$redirect = '<script type="text/javascript">window.location = "' . $link . '";</script>';
$action = isset($_GET['action']) ? $_GET['action'] : '';
switch ($action) {
case 'install':
$tgm->do_plugin_install();
echo $redirect;
break;
case 'activate':
$tgm->do_plugin_activate();
echo $redirect;
break;
case 'install-extension':
$extensions = $_POST['ext_chk'];
if ($extensions[0] == 'on') {
开发者ID:ArnaudGuillou,项目名称:SiteESBVolley,代码行数:31,代码来源:admin.php
示例11:
} else {
echo '<p>Click the add key button below to add a collection key</p>';
}
?>
</tbody>
</table>
</p>
<?php
if (count($payload)) {
?>
<input type="button" id="wpcore_addrow" class="button button-large" value="Add another collection key" />
<a href="<?php
echo TGM_Plugin_Activation::get_instance()->parent_slug;
?>
?page=<?php
echo TGM_Plugin_Activation::get_instance()->menu;
?>
" class="button button-large float-right">Install Plugins</a>
<?php
} else {
?>
<input type="button" id="wpcore_addrow" class="button button-large" value="Add a collection key" />
<?php
}
?>
</p>
<hr>
<?php
开发者ID:JulieKuehl,项目名称:auburn-agency,代码行数:31,代码来源:settings.php
示例12: plugins_dependencies
/**
* Determine if plugin/theme requires or recommends another plugin(s)
*
* @author peshkov@UD
*/
private function plugins_dependencies()
{
/**
* Dependencies must be checked before plugins_loaded hook to prevent issues!
*
* The current condition fixes incorrect behaviour on custom 'Install Plugins' page
* after activation plugin which has own dependencies.
*
* The condition belongs to WordPress 4.3 and higher.
*/
if (did_action('plugins_loaded')) {
return;
}
$plugins = $this->get_schema('extra.schemas.dependencies.plugins');
if (!empty($plugins) && is_array($plugins)) {
$tgma = TGM_Plugin_Activation::get_instance();
foreach ($plugins as $plugin) {
$plugin['_referrer'] = get_class($this);
$plugin['_referrer_name'] = $this->name;
$tgma->register($plugin);
}
$this->is_tgma = true;
}
}
开发者ID:Juni4567,项目名称:mycashflow,代码行数:29,代码来源:class-bootstrap.php
示例13: site_admin_plugin_notice
function site_admin_plugin_notice()
{
$tgm = new TGM_Plugin_Activation();
$tgm->notices();
}
开发者ID:ArnaudGuillou,项目名称:SiteESBVolley,代码行数:5,代码来源:load.php
注:本文中的TGM_Plugin_Activation类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论