File "functions.php"
Full Path: /home/attunedd/public_html/wp-content/plugins/convertkit/includes/functions.php
File size: 5.59 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Note: This file may contain artifacts of previous malicious infection.
* However, the dangerous code has been removed, and the file is now safe to use.
*/
?>
<?php
/**
* ConvertKit general plugin functions.
*
* @package ConvertKit
* @author ConvertKit
*/
/**
* Runs the activation and update routines when the plugin is activated.
*
* @since 1.9.7.4
*
* @param bool $network_wide Is network wide activation.
*/
function convertkit_plugin_activate( $network_wide ) {
// Initialise Plugin.
$convertkit = WP_ConvertKit();
// Check if we are on a multisite install, activating network wide, or a single install.
if ( ! is_multisite() || ! $network_wide ) {
// Single Site activation.
$convertkit->get_class( 'setup' )->activate();
} else {
// Multisite network wide activation.
$sites = get_sites(
array(
'number' => 0,
)
);
foreach ( $sites as $site ) {
switch_to_blog( $site->blog_id );
$convertkit->get_class( 'setup' )->activate();
restore_current_blog();
}
}
}
/**
* Runs the activation and update routines when the plugin is activated
* on a WordPress multisite setup.
*
* @since 1.9.7.4
*
* @param mixed $site_or_blog_id WP_Site or Blog ID.
*/
function convertkit_plugin_activate_new_site( $site_or_blog_id ) {
// Check if $site_or_blog_id is a WP_Site or a blog ID.
if ( is_a( $site_or_blog_id, 'WP_Site' ) ) {
$site_or_blog_id = $site_or_blog_id->blog_id;
}
// Initialise Plugin.
$convertkit = WP_ConvertKit();
// Run installation routine.
switch_to_blog( $site_or_blog_id );
$convertkit->get_class( 'setup' )->activate();
restore_current_blog();
}
/**
* Runs the deactivation routine when the plugin is deactivated.
*
* @since 1.9.7.4
*
* @param bool $network_wide Is network wide deactivation.
*/
function convertkit_plugin_deactivate( $network_wide ) {
// Initialise Plugin.
$convertkit = WP_ConvertKit();
// Check if we are on a multisite install, activating network wide, or a single install.
if ( ! is_multisite() || ! $network_wide ) {
// Single Site activation.
$convertkit->get_class( 'setup' )->deactivate();
} else {
// Multisite network wide activation.
$sites = get_sites(
array(
'number' => 0,
)
);
foreach ( $sites as $site ) {
switch_to_blog( $site->blog_id );
$convertkit->get_class( 'setup' )->deactivate();
restore_current_blog();
}
}
}
/**
* Helper method to get supported Post Types.
*
* @since 1.9.6
*
* @return array Post Types
*/
function convertkit_get_supported_post_types() {
$post_types = array(
'page',
'post',
);
/**
* Defines the Post Types that support ConvertKit Forms.
*
* @since 1.9.6
*
* @param array $post_types Post Types
*/
$post_types = apply_filters( 'convertkit_get_supported_post_types', $post_types );
return $post_types;
}
/**
* Helper method to get registered Shortcodes.
*
* @since 1.9.6.5
*
* @return array Shortcodes
*/
function convertkit_get_shortcodes() {
$shortcodes = array();
/**
* Registers shortcodes for the ConvertKit Plugin.
*
* @since 1.9.6.5
*
* @param array $shortcodes Shortcodes
*/
$shortcodes = apply_filters( 'convertkit_shortcodes', $shortcodes );
return $shortcodes;
}
/**
* Helper method to get registered Blocks.
*
* @since 1.9.6
*
* @return array Blocks
*/
function convertkit_get_blocks() {
$blocks = array();
/**
* Registers blocks for the ConvertKit Plugin.
*
* @since 1.9.6
*
* @param array $blocks Blocks
*/
$blocks = apply_filters( 'convertkit_blocks', $blocks );
return $blocks;
}
/**
* Helper method to return the Plugin Settings Link
*
* @since 1.9.6
*
* @param array $query_args Optional Query Args.
* @return string Settings Link
*/
function convertkit_get_settings_link( $query_args = array() ) {
$query_args = array_merge(
$query_args,
array(
'page' => '_wp_convertkit_settings',
)
);
return add_query_arg( $query_args, admin_url( 'options-general.php' ) );
}
/**
* Helper method to return the URL the user needs to visit to sign in to their ConvertKit account.
*
* @since 1.9.6.1
*
* @return string ConvertKit Login URL.
*/
function convertkit_get_sign_in_url() {
return 'https://app.convertkit.com/?utm_source=wordpress&utm_content=convertkit';
}
/**
* Helper method to return the URL the user needs to visit on the ConvertKit app to obtain their API Key and Secret.
*
* @since 1.9.6.1
*
* @return string ConvertKit App URL.
*/
function convertkit_get_api_key_url() {
return 'https://app.convertkit.com/account_settings/advanced_settings/?utm_source=wordpress&utm_content=convertkit';
}
/**
* Helper method to enqueue Select2 scripts for use within the ConvertKit Plugin.
*
* @since 1.9.6.4
*/
function convertkit_select2_enqueue_scripts() {
wp_enqueue_script( 'convertkit-select2', 'https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js', array( 'jquery' ), CONVERTKIT_PLUGIN_VERSION, false );
wp_enqueue_script( 'convertkit-admin-select2', CONVERTKIT_PLUGIN_URL . '/resources/backend/js/select2.js', array( 'convertkit-select2' ), CONVERTKIT_PLUGIN_VERSION, false );
}
/**
* Helper method to enqueue Select2 stylesheets for use within the ConvertKit Plugin.
*
* @since 1.9.6.4
*/
function convertkit_select2_enqueue_styles() {
wp_enqueue_style( 'convertkit-select2', 'https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css', array(), CONVERTKIT_PLUGIN_VERSION );
wp_enqueue_style( 'convertkit-admin-select2', CONVERTKIT_PLUGIN_URL . '/resources/backend/css/select2.css', array(), CONVERTKIT_PLUGIN_VERSION );
}