コード例 #1
0
function activecampaign_plugin_options()
{
    if (!current_user_can("manage_options")) {
        wp_die(__("You do not have sufficient permissions to access this page."));
    }
    $step = 1;
    $instance = array();
    $connected = false;
    if ($_SERVER["REQUEST_METHOD"] == "POST") {
        // saving the settings page.
        if ($_POST["api_url"] && $_POST["api_key"]) {
            $ac = new ActiveCampaignWordPress($_POST["api_url"], $_POST["api_key"]);
            if (!(int) $ac->credentials_test()) {
                echo "<p style='margin: 0 0 20px; padding: 14px; font-size: 14px; color: #873c3c; font-family:arial; background: #ec9999; line-height: 19px; border-radius: 5px; overflow: hidden;'>" . __("Access denied: Invalid credentials (URL and/or API key).", "menu-activecampaign") . "</p>";
            } else {
                $instance = $_POST;
                // first form submit (after entering API credentials).
                // get account details.
                $account = $ac->api("account/view");
                $domain = isset($account->cname) && $account->cname ? $account->cname : $account->account;
                $instance["account"] = $domain;
                $user_me = $ac->api("user/me");
                // the tracking ID from the Integrations page.
                $instance["tracking_actid"] = $user_me->trackid;
                // get forms.
                $instance = activecampaign_getforms($ac, $instance);
                $instance = activecampaign_form_html($ac, $instance);
                $connected = true;
            }
        } else {
            // one or both of the credentials fields is empty. it will just disconnect below because $instance is empty.
        }
        update_option("settings_activecampaign", $instance);
    } else {
        $instance = get_option("settings_activecampaign");
        //dbg($instance);
        if (isset($instance["api_url"]) && $instance["api_url"] && isset($instance["api_key"]) && $instance["api_key"]) {
            // instance saved already.
            $connected = true;
        } else {
            // settings not saved yet.
            // see if they set up our widget (maybe we can pull the API URL and Key from that).
            $widget = get_option("widget_activecampaign_widget");
            if ($widget) {
                // if the ActiveCampaign widget is activated in a sidebar (dragged to a sidebar).
                $widget_info = current($widget);
                // take the first item.
                if (isset($widget_info["api_url"]) && $widget_info["api_url"] && isset($widget_info["api_key"]) && $widget_info["api_key"]) {
                    // if they already supplied an API URL and key in the widget.
                    $instance["api_url"] = $widget_info["api_url"];
                    $instance["api_key"] = $widget_info["api_key"];
                }
            }
        }
    }
    ?>

	<div class="wrap">

		<div id="icon-options-general" class="icon32"><br></div>

		<h2><?php 
    echo __("ActiveCampaign Settings", "menu-activecampaign");
    ?>
</h2>
	
		<p style='font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 1.5;'>
			<?php 
    echo __("Configure your ActiveCampaign subscription form to be used as a shortcode anywhere on your site. Use <code>[activecampaign form=ID]</code> shortcode in posts, pages, or a sidebar after setting up everything below. Questions or problems? Contact help@activecampaign.com.", "menu-activecampaign");
    ?>
		</p>
	
		<form name="activecampaign_settings_form" method="post" action="" style='font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 1.5;'>

			<hr style="border: 1px dotted #ccc; border-width: 1px 0 0 0; margin-top: 30px;" />

			<h3><?php 
    echo __("API Credentials", "menu-activecampaign");
    ?>
</h3>

			<p>
				<b><?php 
    echo __("API URL", "menu-activecampaign");
    ?>
:</b>
				<br />
				<input type="text" name="api_url" id="activecampaign_api_url" value="<?php 
    echo esc_attr($instance["api_url"]);
    ?>
" style="width: 400px;" />
			</p>

			<p>
				<b><?php 
    echo __("API Key", "menu-activecampaign");
    ?>
:</b>
				<br />
				<input type="text" name="api_key" id="activecampaign_api_key" value="<?php 
    echo esc_attr($instance["api_key"]);
    ?>
" style="width: 500px;" />
			</p>

			<?php 
    if (!$connected) {
        ?>

					<p style='font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 1.5;'><?php 
        echo __("Get your API credentials from the Settings > Developer section:", "menu-activecampaign");
        ?>
</p>
		
					<p><img src="<?php 
        echo plugins_url("activecampaign-subscription-forms");
        ?>
/settings1.jpg" /></p>

					<?php 
    } else {
        ?>



					<?php 
    }
    ?>

			<?php 
    if (isset($instance["forms"]) && $instance["forms"]) {
        ?>

					<hr style="border: 1px dotted #ccc; border-width: 1px 0 0 0; margin-top: 30px;" />

					<h3><?php 
        echo __("Subscription Forms", "menu-activecampaign");
        ?>
</h3>
					<p style='font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 1.5;'><i><?php 
        echo __("Choose subscription forms to cache locally. To add new forms go to your <a href=\"http://" . $instance["account"] . "/admin/main.php?action=form\" target=\"_blank\" style='color: #23538C !important;'>ActiveCampaign > Integration section</a>.", "menu-activecampaign");
        ?>
</i></p>

					<?php 
        // just a flag to know if ANY form is checked (chosen)
        $form_checked = 0;
        $settings_st_checked = isset($instance["site_tracking"]) && (int) $instance["site_tracking"] ? "checked=\"checked\"" : "";
        foreach ($instance["forms"] as $form) {
            // $instance["form_id"] is an array of form ID's (since we allow multiple now).
            $checked = "";
            $options_visibility = "none";
            if ($instance["form_id"] && in_array($form["id"], $instance["form_id"])) {
                $checked = "checked=\"checked\"";
                $form_checked = 1;
                $options_visibility = "block";
            }
            $settings_swim_checked = isset($instance["syim"][$form["id"]]) && $instance["syim"][$form["id"]] == "swim" ? "checked=\"checked\"" : "";
            $settings_sync_checked = isset($instance["syim"][$form["id"]]) && $instance["syim"][$form["id"]] == "sync" ? "checked=\"checked\"" : "";
            if (!$settings_swim_checked && !$settings_sync_checked) {
                $settings_swim_checked = "checked=\"checked\"";
            }
            // default
            $settings_ajax_checked = isset($instance["ajax"][$form["id"]]) && (int) $instance["ajax"][$form["id"]] ? "checked=\"checked\"" : "";
            $settings_css_checked = "";
            if (isset($instance["css"][$form["id"]]) && (int) $instance["css"][$form["id"]] || !$form_checked) {
                // either it's been checked before, OR
                // no form is chosen yet, so it's likely coming from step 1, so default the CSS checkbox to checked.
                $settings_css_checked = "checked=\"checked\"";
            }
            $settings_action_value = isset($instance["action"][$form["id"]]) && $instance["action"][$form["id"]] ? $instance["action"][$form["id"]] : "";
            ?>

						<hr style="border: 1px dotted #ccc; border-width: 1px 0 0 0; margin: 30px 0 20px 0;" />

						<input type="checkbox" name="form_id[]" id="activecampaign_form_<?php 
            echo $form["id"];
            ?>
" value="<?php 
            echo $form["id"];
            ?>
" onclick="toggle_form_options(this.value, this.checked);" <?php 
            echo $checked;
            ?>
 />
						<label for="activecampaign_form_<?php 
            echo $form["id"];
            ?>
"><a href="http://<?php 
            echo $instance["account"];
            ?>
/admin/main.php?action=form_edit&id=<?php 
            echo $form["id"];
            ?>
" target="_blank"><?php 
            echo $form["name"];
            ?>
</a></label>
						<br />
						
						<div id="form_options_<?php 
            echo $form["id"];
            ?>
" style="display: <?php 
            echo $options_visibility;
            ?>
; margin-left: 30px;">
							<h4><?php 
            echo __("Form Options", "menu-activecampaign");
            ?>
</h4>
							<p><i><?php 
            echo __("Leave as default for normal behavior, or customize based on your needs.", "menu-activecampaign");
            ?>
</i></p>
							<div style="display: none;">
								<input type="radio" name="syim[<?php 
            echo $form["id"];
            ?>
]" id="activecampaign_form_swim_<?php 
            echo $form["id"];
            ?>
" value="swim" <?php 
            echo $settings_swim_checked;
            ?>
 onchange="swim_toggle(<?php 
            echo $form["id"];
            ?>
, this.checked);" />
								<label for="activecampaign_form_swim_<?php 
            echo $form["id"];
            ?>
" style="">Add Subscriber</label>
								<br />
								<input type="radio" name="syim[<?php 
            echo $form["id"];
            ?>
]" id="activecampaign_form_sync_<?php 
            echo $form["id"];
            ?>
" value="sync" <?php 
            echo $settings_sync_checked;
            ?>
 onchange="sync_toggle(<?php 
            echo $form["id"];
            ?>
, this.checked);" />
								<label for="activecampaign_form_sync_<?php 
            echo $form["id"];
            ?>
" style="">Sync Subscriber</label>
								<br />
								<br />
							</div>
							<?php 
            if (isset($form["version"]) && $form["version"] == 2) {
                ?>
							<input type="checkbox" name="ajax[<?php 
                echo $form["id"];
                ?>
]" id="activecampaign_form_ajax_<?php 
                echo $form["id"];
                ?>
" value="1" <?php 
                echo $settings_ajax_checked;
                ?>
 onchange="ajax_toggle(<?php 
                echo $form["id"];
                ?>
, this.checked);" />
							<label for="activecampaign_form_ajax_<?php 
                echo $form["id"];
                ?>
" style="">Submit form without refreshing page</label>
							<br />
							<?php 
            }
            ?>
							<input type="checkbox" name="css[<?php 
            echo $form["id"];
            ?>
]" id="activecampaign_form_css_<?php 
            echo $form["id"];
            ?>
" value="1" <?php 
            echo $settings_css_checked;
            ?>
 />
							<label for="activecampaign_form_css_<?php 
            echo $form["id"];
            ?>
" style="">Keep original form CSS</label>
						</div>
						
						<?php 
        }
        ?>

					<hr style="border: 1px dotted #ccc; border-width: 1px 0 0 0; margin: 30px 0 20px 0;" />

					<h3><?php 
        echo __("Site Tracking", "menu-activecampaign");
        ?>
</h3>
					<p><i><?php 
        echo __("Site tracking lets you record visitor history on your site to use for targeted segmenting. Learn more on the <a href=\"http://" . $instance["account"] . "/track/\" target=\"_blank\" style='color: #23538C !important;'>ActiveCampaign > Integration section</a>.", "menu-activecampaign");
        ?>
</i></p>

					<input type="checkbox" name="site_tracking" id="activecampaign_site_tracking" value="1" <?php 
        echo $settings_st_checked;
        ?>
 onchange="site_tracking_toggle(this.checked);" />
					<label for="activecampaign_site_tracking" style=""><?php 
        echo __("Enable Site Tracking", "menu-activecampaign");
        ?>
</label>
					(<a href="http://www.activecampaign.com/help/site-event-tracking/" style='color: #23538C !important;' target="_blank">?</a>)

					<script type='text/javascript'>

						// shows or hides the sub-options section beneath each form checkbox.
						function toggle_form_options(form_id, ischecked) {
							var form_options = document.getElementById("form_options_" + form_id);
							var display = (ischecked) ? "block" : "none";
							form_options.style.display = display;
						}

						//var swim_radio = document.getElementById("activecampaign_form_swim");

						function ac_str_is_url(url) {
							url += '';
							return url.match( /((http|https|ftp):\/\/|www)[a-z0-9\-\._]+\/?[a-z0-9_\.\-\?\+\/~=&#%;:\|,\[\]]*[a-z0-9\/=?&;%\[\]]{1}/i );
						}

						function swim_toggle(form_id, swim_checked) {
							if (swim_checked) {

							}
						}

						function sync_toggle(form_id, sync_checked) {
							var ajax_checkbox = document.getElementById("activecampaign_form_ajax_" + form_id);
							var action_textbox = document.getElementById("activecampaign_form_action_" + form_id);
							if (sync_checked && action_textbox.value == "") {
								// if Sync is chosen, and there is no custom action URL, check the Ajax option.
								ajax_checkbox.checked = true;
							}
						}

						function ajax_toggle(form_id, ajax_checked) {
							var ajax_checkbox = document.getElementById("activecampaign_form_ajax_" + form_id);
							var sync_radio = document.getElementById("activecampaign_form_sync_" + form_id);
							var action_textbox = document.getElementById("activecampaign_form_action_" + form_id);
							var site_tracking_checkbox = document.getElementById("activecampaign_site_tracking");
							if (ajax_checked && site_tracking_checkbox.checked)  {
								alert("If you use this option, site tracking cannot be enabled.");
								site_tracking_checkbox.checked = false;
							}
						}

						function action_toggle(form_id, action_value) {
							var action_textbox = document.getElementById("activecampaign_form_action_" + form_id);
							if (action_textbox.value && ac_str_is_url(action_textbox.value)) {

							}
						}

						function site_tracking_toggle(is_checked) {
							// we can't allow site tracking if ajax is used because that uses the API.
							// so here we check to see if they have chosen ajax for any form, an if so alert them and uncheck the ajax options.
							if (is_checked)  {
								var inputs = document.getElementsByTagName("input");
								// if Sync is checked, and action value is empty or invalid, and they UNcheck Ajax, alert them.
								var checked_already = [];
								for (var i in inputs) {
									var c = inputs[i];
									if (c.type == "checkbox" && c.name.match(/^ajax\[/) && c.checked) {;
										// example: <input type="checkbox" name="ajax[1642]" id="activecampaign_form_ajax_1642" value="1" checked="checked" onchange="ajax_toggle(1642, this.checked);">
										checked_already.push(c.id);
									}
								}
								if (checked_already.length) {
									// if at least one of the ajax checkboxes is checked.
									alert("If you enable site tracking, a page refresh is required.");
									for (var i in checked_already) {
										var id = checked_already[i];
										var dom_item = document.getElementById(id);
										dom_item.checked = false;
									}
								}
							}
						}

					</script>

					<?php 
    }
    $button_value = $connected ? "Update" : "Connect";
    ?>

			<p><button type="submit" style="font-size: 16px; margin-top: 25px; padding: 10px;"><?php 
    echo __($button_value, "menu-activecampaign");
    ?>
</button></p>

		</form>

		<?php 
    if (isset($instance["form_html"])) {
        ?>

				<hr style="border: 1px dotted #ccc; border-width: 1px 0 0 0; margin-top: 30px;" />
				<h3><?php 
        echo __("Subscription Form(s) Preview", "menu-activecampaign");
        ?>
</h3>	

				<?php 
        foreach ($instance["form_html"] as $form_id => $form_html) {
            if (preg_match('/\\/f\\/embed\\.php/', $form_html)) {
                echo '<div class="_form_' . $form_id . '"></div>' . preg_replace('/embed\\.php\\?/', 'embed.php?static=1&', $form_html);
            } else {
                echo $form_html;
            }
            ?>
					
					<p><?php 
            echo __("Embed using");
            ?>
<code>[activecampaign form=<?php 
            echo $form_id;
            ?>
]</code></p>
					
					<hr style="border: 1px dotted #ccc; border-width: 1px 0 0 0; margin-top: 40px;" />
					
					<?php 
        }
    }
    ?>

	</div>

	<?php 
}
コード例 #2
0
<?php

// only Ajax requests come through here
if (!session_id()) {
    session_start();
}
require_once "../../../wp-load.php";
$settings = get_option("settings_activecampaign");
$api_url = $settings["api_url"];
$api_key = $settings["api_key"];
$sync = $_GET["sync"];
$captcha = strpos(current($settings["form_html"]), "<input type='text' name='captcha'") !== false ? 1 : 0;
require_once dirname(__FILE__) . "/activecampaign-api-php/ActiveCampaign.class.php";
$ac = new ActiveCampaignWordPress($api_url, $api_key);
$form_process = $ac->api("form/process?sync={$sync}&captcha={$captcha}");
if ($form_process) {
    // form submitted via ajax
    echo $form_process;
    exit;
}