is_plugin_active( $slug . '/' . $slug . '.php' ), 'needs' => $needs, ); } return array( 'status' => false, 'needs' => 'install', ); } public function create_action_link( $state, $slug ) { switch ( $state ) { case 'install': return wp_nonce_url( add_query_arg( array( 'action' => 'install-plugin', 'plugin' => $slug, ), network_admin_url( 'update.php' ) ), 'install-plugin_' . $slug ); break; case 'deactivate': return add_query_arg( array( 'action' => 'deactivate', 'plugin' => rawurlencode( $slug . '/' . $slug . '.php' ), 'plugin_status' => 'all', 'paged' => '1', '_wpnonce' => wp_create_nonce( 'deactivate-plugin_' . $slug . '/' . $slug . '.php' ), ), network_admin_url( 'plugins.php' ) ); break; case 'activate': return add_query_arg( array( 'action' => 'activate', 'plugin' => rawurlencode( $slug . '/' . $slug . '.php' ), 'plugin_status' => 'all', 'paged' => '1', '_wpnonce' => wp_create_nonce( 'activate-plugin_' . $slug . '/' . $slug . '.php' ), ), network_admin_url( 'plugins.php' ) ); break; }// End switch(). } public function call_plugin_api( $slug ) { include_once( ABSPATH . 'wp-admin/includes/plugin-install.php' ); $call_api = get_transient( 'eventpress_cust_notify_plugin_info_' . $slug ); if ( false === $call_api ) { $call_api = plugins_api( 'plugin_information', array( 'slug' => $slug, 'fields' => array( 'downloaded' => false, 'rating' => false, 'description' => false, 'short_description' => true, 'donate_link' => false, 'tags' => false, 'sections' => false, 'homepage' => false, 'added' => false, 'last_updated' => false, 'compatibility' => false, 'tested' => false, 'requires' => false, 'downloadlink' => false, 'icons' => false, ), ) ); set_transient( 'eventpress_cust_notify_plugin_info_' . $slug, $call_api, 30 * MINUTE_IN_SECONDS ); } return $call_api; } public function json() { $json = parent::json(); global $eventpress_customizer_notify_recommended_actions; global $eventpress_customizer_notify_recommended_plugins; global $install_button_label; global $activate_button_label; global $eventpress_deactivate_button_label; $formatted_array = array(); $eventpress_customizer_notify_show_recommended_actions = get_option( 'eventpress_customizer_notify_show' ); foreach ( $eventpress_customizer_notify_recommended_actions as $key => $eventpress_lite_customizer_notify_recommended_action ) { if ( $eventpress_customizer_notify_show_recommended_actions[ $eventpress_lite_customizer_notify_recommended_action['id'] ] === false ) { continue; } if ( $eventpress_lite_customizer_notify_recommended_action['check'] ) { continue; } $eventpress_lite_customizer_notify_recommended_action['index'] = $key + 1; if ( isset( $eventpress_lite_customizer_notify_recommended_action['plugin_slug'] ) ) { $active = $this->check_active( $eventpress_customizer_notify_recommended_action['plugin_slug'] ); $eventpress_lite_customizer_notify_recommended_action['url'] = $this->create_action_link( $active['needs'], $eventpress_lite_customizer_notify_recommended_action['plugin_slug'] ); if ( $active['needs'] !== 'install' && $active['status'] ) { $eventpress_lite_customizer_notify_recommended_action['class'] = 'active'; } else { $eventpress_lite_customizer_notify_recommended_action['class'] = ''; } switch ( $active['needs'] ) { case 'install': $eventpress_lite_customizer_notify_recommended_action['button_class'] = 'install-now button'; $eventpress_lite_customizer_notify_recommended_action['button_label'] = $install_button_label; break; case 'activate': $eventpress_lite_customizer_notify_recommended_action['button_class'] = 'activate-now button button-primary'; $eventpress_lite_customizer_notify_recommended_action['button_label'] = $activate_button_label; break; case 'deactivate': $eventpress_lite_customizer_notify_recommended_action['button_class'] = 'deactivate-now button'; $eventpress_lite_customizer_notify_recommended_action['button_label'] = $eventpress_deactivate_button_label; break; } } $formatted_array[] = $eventpress_lite_customizer_notify_recommended_action; }// End foreach(). $customize_plugins = array(); $eventpress_lite_customizer_notify_show_recommended_plugins = get_option( 'eventpress_customizer_notify_show_recommended_plugins' ); foreach ( $eventpress_customizer_notify_recommended_plugins as $slug => $plugin_opt ) { if ( ! $plugin_opt['recommended'] ) { continue; } if ( isset( $eventpress_lite_customizer_notify_show_recommended_plugins[ $slug ] ) && $eventpress_lite_customizer_notify_show_recommended_plugins[ $slug ] ) { continue; } $active = $this->check_active( $slug ); if ( ! empty( $active['needs'] ) && ( $active['needs'] == 'deactivate' ) ) { continue; } $eventpress_customizer_notify_recommended_plugin['url'] = $this->create_action_link( $active['needs'], $slug ); if ( $active['needs'] !== 'install' && $active['status'] ) { $eventpress_customizer_notify_recommended_plugin['class'] = 'active'; } else { $eventpress_customizer_notify_recommended_plugin['class'] = ''; } switch ( $active['needs'] ) { case 'install': $eventpress_customizer_notify_recommended_plugin['button_class'] = 'install-now button'; $eventpress_customizer_notify_recommended_plugin['button_label'] = $install_button_label; break; case 'activate': $eventpress_customizer_notify_recommended_plugin['button_class'] = 'activate-now button button-primary'; $eventpress_customizer_notify_recommended_plugin['button_label'] = $activate_button_label; break; case 'deactivate': $eventpress_customizer_notify_recommended_plugin['button_class'] = 'deactivate-now button'; $eventpress_customizer_notify_recommended_plugin['button_label'] = $eventpress_deactivate_button_label; break; } $info = $this->call_plugin_api( $slug ); $eventpress_customizer_notify_recommended_plugin['id'] = $slug; $eventpress_customizer_notify_recommended_plugin['plugin_slug'] = $slug; if ( ! empty( $plugin_opt['description'] ) ) { $eventpress_customizer_notify_recommended_plugin['description'] = $plugin_opt['description']; } else { $eventpress_customizer_notify_recommended_plugin['description'] = $info->short_description; } $eventpress_customizer_notify_recommended_plugin['title'] = $info->name; $customize_plugins[] = $eventpress_customizer_notify_recommended_plugin; }// End foreach(). $json['recommended_actions'] = $formatted_array; $json['recommended_plugins'] = $customize_plugins; $json['total_actions'] = count( $eventpress_customizer_notify_recommended_actions ); $json['plugin_text'] = $this->plugin_text; $json['dismiss_button'] = $this->dismiss_button; return $json; } protected function render_template() { ?> <# if( data.recommended_actions.length > 0 || data.recommended_plugins.length > 0 ){ #>
  • <# if( data.recommended_actions.length > 0 ){ #> {{ data.title }} <# }else{ #> <# if( data.recommended_plugins.length > 0 ){ #> {{ data.plugin_text }} <# }#> <# } #> <# if( data.recommended_actions.length > 0 ){ #> {{ data.recommended_actions[0].index }} {{ data.total_actions }} <# } #>

    <# if( data.recommended_actions.length > 0 ){ #> <# for (action in data.recommended_actions) { #>
    <# if( !data.recommended_actions[action].check ){ #>

    {{ data.recommended_actions[action].title }}

    {{{ data.recommended_actions[action].description }}}
    <# if( data.recommended_actions[action].plugin_slug ){ #> <# } #> <# if( data.recommended_actions[action].help ){ #>
    {{{ data.recommended_actions[action].help }}}
    <# } #>
    <# } #>
    <# } #> <# } #> <# if( data.recommended_plugins.length > 0 ){ #> <# for (action in data.recommended_plugins) { #> <# } #> <# } #>
  • <# } #>