Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
mailoptin/connections / ActiveCampaignConnect / ConnectSettingsPage.php
Size: Mime:
<?php

namespace MailOptin\ActiveCampaignConnect;

use MailOptin\Core\Connections\AbstractConnect;

class ConnectSettingsPage
{
    public function __construct()
    {
        add_filter('mailoptin_connections_settings_page', array($this, 'connection_settings'));
        add_action('wp_cspa_settings_after_title', array($this, 'output_error_log_link'), 10, 2);
    }

    public function connection_settings($arg)
    {

        $connected = AbstractActiveCampaignConnect::is_connected();
        $status = '';
        if (true === $connected) {
            $status = sprintf('<span style="color:#008000">(%s)</span>', __('Connected', 'mailoptin'));
        }

        $settingsArg[] = array(
            'section_title_without_status' => __('ActiveCampaign', 'mailoptin'),
            'section_title'                => __('ActiveCampaign Connection', 'mailoptin') . " $status",
            'type'                         => AbstractConnect::EMAIL_MARKETING_TYPE,
            'logo_url'                     => MAILOPTIN_CONNECTION_ASSETS_URL . 'images/activecampaign-integration.png',
            'activecampaign_api_url'       => array(
                'type'        => 'text',
                'label'       => __('Enter API URL', 'mailoptin'),
                'description' => sprintf(
                    __('Log in to your %sActiveCampaign account%s to get your API URL at "Developer" account settings.', 'mailoptin'),
                    '<a target="_blank" href="https://www.activecampaign.com/login/">',
                    '</a>'
                ),
            ),
            'activecampaign_api_key'       => array(
                'type'          => 'text',
                'obfuscate_val' => true,
                'label'         => __('Enter API Key', 'mailoptin'),
                'description'   => sprintf(
                    __('Log in to your %sActiveCampaign account%s to get your "API key" at "Developer" account settings.', 'mailoptin'),
                    '<a target="_blank" href="https://www.activecampaign.com/login/">',
                    '</a>'
                ),
            )
        );

        return array_merge($arg, $settingsArg);
    }

    public function output_error_log_link($option, $args)
    {
        //Not a activecampaign connection section
        if (MAILOPTIN_CONNECTIONS_DB_OPTION_NAME !== $option || ! isset($args['activecampaign_api_url'])) {
            return;
        }

        //Output error log link if  there is one
        echo AbstractConnect::get_optin_error_log_link('activecampaign');

    }

    public static function get_instance()
    {
        static $instance = null;

        if (is_null($instance)) {
            $instance = new self();
        }

        return $instance;
    }
}