Example #1
0
function activecampaign_get_forms_html_callback()
{
    $forms = activecampaign_get_forms_ajax();
    echo "<div style='padding: 0 10px;font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 1.5;'>";
    echo "<p>" . __("Choose an integration form below to embed into your post or page body. Add or edit forms in ActiveCampaign and then refresh the forms on the <a href='" . get_site_url() . "/wp-admin/options-general.php?page=activecampaign' target='_blank' style='color: #23538C !important;'>Settings page</a>.") . "</p>";
    if ($forms) {
        echo "<div style='padding: 0; margin: 0 -3px'>";
    }
    foreach ($forms as $formid => $formname) {
        echo "<a href='#' onclick='parent.activecampaign_editor_form_embed(" . $formid . "); return false;' style='display: inline-block; text-transform: capitalize; margin: 3px 3px 10px; padding: 7px 11px; font-size: 13px; text-align: center; text-decoration: none !important; border-radius: 4px !important; color: #5d5d5d !important; background: #fff !important; border: 1px solid #c0c0c0 !important; cursor: pointer !important; zoom: 1; -webkit-appearance: none; line-height: 1.42857143; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; font-weight: 600;'\n>" . $formname . "</a>";
    }
    if ($forms) {
        echo "</div>";
    }
    echo "</div>";
    die;
}
Example #2
0
function activecampaign_get_forms_html_callback()
{
    $forms = activecampaign_get_forms_ajax();
    echo "<div style='font-family: Arial, Helvetica, sans-serif; font-size: 13px;'>";
    echo "<p>" . __("Choose an integration form below to embed into your post or page body. Add or edit forms in ActiveCampaign and then refresh the forms on the <a href='" . get_site_url() . "/wp-admin/options-general.php?page=activecampaign' target='_blank'>Settings page</a>.") . "</p>";
    if ($forms) {
        echo "<ul style='list-style-type: none; padding: 0; margin: 0 0 0 5px;'>";
    }
    foreach ($forms as $formid => $formname) {
        echo "<li style='margin-bottom: 8px;'><a href='#' onclick='parent.activecampaign_editor_form_embed(" . $formid . "); return false;'>" . $formname . "</a></li>";
    }
    if ($forms) {
        echo "</ul>";
    }
    echo "</div>";
    die;
}