1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662:
<?php
if (!class_exists('CTA_Settings')) {
class CTA_Settings {
static $core_settings;
static $active_tab;
public function __construct() {
self::add_hooks();
}
public static function add_hooks() {
add_action('admin_enqueue_scripts', array(__CLASS__, 'enqueue_scripts'));
add_filter('plugin_action_links_cta/calls-to-action.php', array(__CLASS__, 'plugin_action_links'));
add_filter('inbound_settings/extend', array( __CLASS__ , 'define_pro_settings' ) );
}
public static function enqueue_scripts() {
$screen = get_current_screen();
if ((isset($screen) && $screen->base != 'wp-call-to-action_page_wp_cta_global_settings')) {
return;
}
wp_enqueue_style('wp-cta-css-global-settings-here', WP_CTA_URLPATH . 'assets/css/admin-global-settings.css');
}
public static function define_pro_settings( $settings ) {
global $inbound_settings;
$settings['inbound-pro-setup'][] = array(
'group_name' => WP_CTA_SLUG ,
'keywords' => __('cta,call to action,calls to action' , 'inbound-pro'),
'fields' => array (
array(
'id' => 'header-cta',
'type' => 'header',
'default' => __('Call To Action Settings', 'inbound-pro' ),
'options' => null
),
array(
'id' => 'split-testing',
'label' => __('Split Testing.', 'inbound-pro'),
'description' => __('Enabling this setting may improve server performance at the loss of split testing. Only version A( id 0) will be displayed for every CTA when split testing is disabled.', 'inbound-pro'),
'type' => 'radio',
'default' => 1,
'options' => array(0 => 'Off', 1 => 'On')
),
array(
'id' => 'sticky-ctas',
'label' => __('Sticky CTAs.', 'inbound-pro'),
'description' => __('Disabling this will cause call to actions to rotate variations on every page load for the same user.', 'inbound-pro'),
'type' => 'radio',
'default' => 1,
'options' => array(0 => 'Off', 1 => 'On')
)
)
);
return $settings;
}
public static function define_stand_alone_settings() {
global $wp_cta_global_settings;
$tab_slug = 'wp-cta-main';
$wp_cta_global_settings[$tab_slug]['label'] = 'Global Settings';
$wp_cta_global_settings[$tab_slug]['settings'] =
array(
array(
'id' => 'split-testing',
'label' => __('Split Testing.', 'inbound-pro'),
'description' => __('Turning this off may improve server performance. Only version A will be displayed for every CTA.', 'inbound-pro'),
'type' => 'radio',
'default' => 1,
'options' => array(0 => 'Off', 1 => 'On')
),
array(
'id' => 'sticky-ctas',
'label' => __('Sticky CTAs.', 'inbound-pro'),
'description' => __('Disabling this will cause call to actions to rotate variations on every page load for the same user.', 'inbound-pro'),
'type' => 'radio',
'default' => 1,
'options' => array(0 => 'Off', 1 => 'On')
)
);
if (
!defined('INBOUND_ACCESS_LEVEL')
) {
$tab_slug = 'wp-cta-license-keys';
$wp_cta_global_settings[$tab_slug]['label'] = __('Inbound Now API Key', 'inbound-pro');
$tab_slug = 'wp-cta-extensions';
$wp_cta_global_settings[$tab_slug]['label'] = __('Extensions', 'inbound-pro');
}
$wp_cta_global_settings = apply_filters('wp_cta_define_global_settings', $wp_cta_global_settings);
self::$core_settings = $wp_cta_global_settings;
}
public static function plugin_action_links($links) {
return array_merge(
array(
'settings' => '<a href="' . admin_url('edit.php?post_type=wp-call-to-action&page=wp_cta_global_settings') . '">' . __('Settings', 'ts-fab') . '</a>'
),
$links
);
}
public static function display_navigation() {
self::$active_tab = 'wp-cta-main';
if (isset($_REQUEST['open-tab'])) {
self::$active_tab = sanitize_text_field($_REQUEST['open-tab']);
}
echo '<h2 class="nav-tab-wrapper">';
foreach (self::$core_settings as $key => $data) {
?>
<a id='tabs-<?php echo $key; ?>' class="wp-cta-nav-tab nav-tab nav-tab-special<?php echo self::$active_tab == $key ? '-active' : '-inactive'; ?>"><?php echo $data['label']; ?></a>
<?php
}
echo "</h2>";
echo "<form action='edit.php?post_type=wp-call-to-action&page=wp_cta_global_settings' method='POST'>
<input type='hidden' name='nature' value='wp-cta-global-settings-save'>
<input type='hidden' name='open-tab' id='id-open-tab' value='" . self::$active_tab . "'>";
}
public static function display_sidebar() {
?>
<div class='wp-cta-settings-tab-sidebar'>
<div class='wp-cta-sidebar-settings'>
<h2 style='font-size:17px;'>
<?php _e('Like the Plugin? Leave us a review', 'inbound-pro'); ?>
</h2>
<center>
<a class='review-button' href='http://wordpress.org/support/view/plugin-reviews/cta?rate=5#postform' target='_blank'>
<?php _e('Leave a Review', 'inbound-pro'); ?>
</a>
</center>
<small>
<?php _e('Reviews help constantly improve the plugin & keep us motivated! <strong>Thank you for your support!</strong>', 'inbound-pro'); ?>
</small>
</div>
<div class='wp-cta-sidebar-settings'>
<h2>
<?php _e('Help keep the plugin up to date, awesome & free!', 'inbound-pro'); ?>
</h2>
<form action='https://www.paypal.com/cgi-bin/webscr' method='post' target='_top'>
<input type='hidden' name='cmd' value='_s-xclick'>
<input type='hidden' name='hosted_button_id' value='GKQ2BR3RKB3YQ'>
<input type='image' src='https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif' border='0' name='submit' alt='PayPal - The safer, easier way to pay online!'>
<img alt='' border='0' src='https://www.paypalobjects.com/en_US/i/scr/pixel.gif' width='1' height='1'>
</form>
<small>
<?php _e('Spare some change? Buy us a coffee/beer.<strong> We appreciate your continued support.</strong>', 'inbound-pro'); ?>
</small>
</div>
<div class='wp-cta-sidebar-settings'>
<h2 style='font-size:18px;'>
<?php _e('Follow Updates on Facebook', 'inbound-pro'); ?>
</h2>
<iframe src='//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Finboundnow&width=234&height=65&colorscheme=light&show_faces=false&border_color&stream=false&header=false&appId=364256913591848' scrolling='no' frameborder='0' style='border:none; overflow:hidden; width:234px; height:65px;' allowTransparency='true'>
</iframe>
</div>
</div>
<?php
}
public static function display_stand_alone_settings() {
global $wpdb;
self::define_stand_alone_settings();
self::inline_js();
self::save_stand_alone_settings();
self::display_sidebar();
self::display_navigation();
foreach (self::$core_settings as $key => $data) {
if (isset($data['settings'])) {
self::save_stand_alone_setting($key, $data['settings']);
}
}
echo '<div style="float:left;padding-left:9px;padding-top:20px;">
<input type="submit" value="Save Settings" tabindex="5" id="wp-cta-button-create-new-group-open" class="button-primary" >
</div>';
echo "</form>";
?>
<div class="clear" id="php-sql-wp-cta-version">
<h3><?php _e('Installation Status', 'inbound-pro'); ?></h3>
<table class="form-table" id="wp-cta-wordpress-site-status">
<tr valign="top">
<th scope="row"><label><?php _e('PHP Version', 'inbound-pro'); ?></label></th>
<td class="installation_item_cell">
<strong><?php echo phpversion(); ?></strong>
</td>
<td>
<?php
if (version_compare(phpversion(), '5.0.0', '>')) {
?>
✓
<?php
} else {
?>
×
<span class="installation_item_message"><?php _e("Inbound Now requires PHP 5 or above.", "cta"); ?></span>
<?php
}
?>
</td>
</tr>
<tr valign="top">
<th scope="row"><label>MySQL Version</label></th>
<td class="installation_item_cell">
<strong><?php echo $wpdb->db_version(); ?></strong>
</td>
<td>
<?php
if (version_compare($wpdb->db_version(), '5.0.0', '>')) {
?>
✓
<?php
} else {
?>
×
<span class="installation_item_message"><?php _e("Inbound Now requires MySQL 5 or above.", "cta"); ?></span>
<?php
}
?>
</td>
</tr>
<tr valign="top">
<th scope="row"><label>WordPress Version</label></th>
<td class="installation_item_cell">
<strong><?php echo get_bloginfo("version"); ?></strong>
</td>
<td>
<?php
if (version_compare(get_bloginfo("version"), '3.3', '>')) {
?>
✓
<?php
} else {
?>
×
<span class="installation_item_message"><?php _e('landing pages requires version X or higher', 'inbound-pro') ?></span>
<?php
}
?>
</td>
</tr>
<tr valign="top">
<th scope="row"><label><?php _e('WordPress CTA Version', 'inbound-pro'); ?></label></th>
<td class="installation_item_cell">
<strong>Version <?php echo WP_CTA_CURRENT_VERSION; ?></strong>
</td>
<td>
</td>
</tr>
</table>
</div>
<?php
}
public static function save_stand_alone_setting($key, $custom_fields) {
($key == self::$active_tab) ? $display = 'block' : $display = 'none';
if (!$custom_fields) {
return;
}
echo "<input type='hidden' name='wp_cta_{$key}_custom_fields_nonce' value='" . wp_create_nonce('wp-cta-nonce') . "' />";
echo '<table class="wp-cta-tab-display" id="' . $key . '" style="display:' . $display . '">';
foreach ($custom_fields as $field) {
if (isset($field['default'])) {
$default = $field['default'];
} else {
$default = null;
}
$field['id'] = $key . "-" . $field['id'];
if (array_key_exists('option_name', $field) && $field['option_name'])
$field['id'] = $field['option_name'];
$field['value'] = get_option($field['id'], $default);
echo '<tr><th class="wp-cta-gs-th options-' . $field['id'] . '" valign="top">';
if ($field['type'] == 'header') {
echo $field['default'];
} else {
echo "<small>" . $field['label'] . "</small>";
}
echo '</th><td>';
switch ($field['type']) {
case 'colorpicker':
if (!$field['value']) {
$field['value'] = $field['default'];
}
echo '<input type="text" class="jpicker" name="' . $field['id'] . '" id="' . $field['id'] . '" value="' . $field['value'] . '" size="5" />
<div class="wp_cta_tooltip tool_color" title="' . $field['description'] . '"></div>';
break;
case 'header':
$extra = (isset($field['description'])) ? $field['description'] : '';
echo $extra;
break;
case 'text':
echo '<input type="text" name="' . $field['id'] . '" id="' . $field['id'] . '" value="' . $field['value'] . '" size="30" />
<div class="wp_cta_tooltip tool_text" title="' . $field['description'] . '"></div>';
break;
case 'textarea':
echo '<textarea name="' . $field['id'] . '" id="' . $field['id'] . '" cols="106" rows="6">' . $field['value'] . '</textarea>
<div class="wp_cta_tooltip tool_textarea" title="' . $field['description'] . '"></div>';
break;
case 'wysiwyg':
wp_editor($field['value'], $field['id'], $settings = array());
echo '<span class="description">' . $field['description'] . '</span><br><br>';
break;
case 'media':
echo '<label for="upload_image">';
echo '<input name="' . $field['id'] . '" id="' . $field['id'] . '" type="text" size="36" name="upload_image" value="' . $field['value'] . '" />';
echo '<input class="upload_image_button" id="uploader_' . $field['id'] . '" type="button" value="Upload Image" />';
echo '<br /><div class="wp_cta_tooltip tool_media" title="' . $field['description'] . '"></div>';
break;
case 'checkbox':
$i = 1;
echo "<table>";
if (!isset($field['value'])) {
$field['value'] = array();
} elseif (!is_array($field['value'])) {
$field['value'] = array($field['value']);
}
foreach ($field['options'] as $value => $label) {
if ($i == 5 || $i == 1) {
echo "<tr>";
$i = 1;
}
echo '<td><input type="checkbox" name="' . $field['id'] . '[]" id="' . $field['id'] . '" value="' . $value . '" ', in_array($value, $field['value']) ? ' checked="checked"' : '', '/>';
echo '<label for="' . $value . '"> ' . $label . '</label></td>';
if ($i == 4) {
echo "</tr>";
}
$i++;
}
echo "</table>";
echo '<br><div class="wp_cta_tooltip tool_checkbox" title="' . $field['description'] . '"></div>';
break;
case 'radio':
foreach ($field['options'] as $value => $label) {
echo '<input type="radio" name="' . $field['id'] . '" id="' . $field['id'] . '" value="' . $value . '" ', $field['value'] == $value ? ' checked="checked"' : '', '/>';
echo '<label for="' . $value . '"> ' . $label . '</label> ';
}
echo '<div class="wp_cta_tooltip tool_radio" title="' . $field['description'] . '"></div>';
break;
case 'dropdown':
echo '<select name="' . $field['id'] . '" id="' . $field['id'] . '">';
foreach ($field['options'] as $value => $label) {
echo '<option', $field['value'] == $value ? ' selected="selected"' : '', ' value="' . $value . '">' . $label . '</option>';
}
echo '</select><br /><div class="wp_cta_tooltip tool_dropdown" title="' . $field['description'] . '"></div>';
break;
case 'html':
echo $field['value'];
echo '<br /><div class="wp_cta_tooltip tool_dropdown" title="' . $field['description'] . '"></div>';
break;
}
do_action('wp_cta_render_global_settings', $field);
echo '</td></tr>';
}
echo '</table>';
}
public static function inline_js() {
?>
<script type='text/javascript'>
jQuery(document).ready(function ($) {
setTimeout(function () {
var getoption = document.URL.split('&option=')[1];
var showoption = "#" + getoption;
jQuery(showoption).click();
}, 100);
var getCookieByMatch = function (regex) {
var cs = document.cookie.split(/;\s*/), ret = [], i;
for (i = 0; i < cs.length; i++) {
if (cs[i].match(regex)) {
ret.push(cs[i]);
}
}
return ret;
};
jQuery('.wp-cta-nav-tab').live('click', function () {
var this_id = this.id.replace('tabs-', '');
jQuery('.wp-cta-tab-display').css('display', 'none');
jQuery('#' + this_id).css('display', 'block');
jQuery('.wp-cta-nav-tab').removeClass('nav-tab-special-active');
jQuery('.wp-cta-nav-tab').addClass('nav-tab-special-inactive');
jQuery('#tabs-' + this_id).addClass('nav-tab-special-active');
jQuery('#id-open-tab').val(this_id);
});
});
</script>
<?php
}
public static function save_stand_alone_settings() {
if (!isset($_POST['nature'])) {
return;
}
self::define_stand_alone_settings();
foreach (self::$core_settings as $key => $data) {
if (!isset(self::$core_settings[$key]['settings'])) {
continue;
}
$tab_settings = self::$core_settings[$key]['settings'];
foreach ($tab_settings as $field) {
$field['id'] = $key . "-" . $field['id'];
if (array_key_exists('option_name', $field) && $field['option_name'])
$field['id'] = $field['option_name'];
$field['old_value'] = get_option($field['id']);
(isset($_POST[$field['id']])) ? $new = $_POST[$field['id']] : $new = null;
if ((isset($new) && ($new !== $field['old_value'])) || !isset($field['old_value'])) {
$bool = update_option($field['id'], $new);
if ($field['type'] == 'license-key') {
$license = trim(get_option('edd_sample_license_key'));
$api_params = array(
'edd_action' => 'activate_license',
'license' => $new,
'item_name' => $field['slug']
);
$response = wp_remote_get(add_query_arg($api_params, WP_CTA_STORE_URL), array('timeout' => 15, 'sslverify' => false));
if (is_wp_error($response))
break;
$license_data = json_decode(wp_remote_retrieve_body($response));
$license_status = update_option('wp_cta_license_status-' . $field['slug'], $license_data->license);
}
} elseif (!$new && $field['old_value']) {
if ($field['type'] == 'license-key') {
$master_key = get_option('inboundnow_master_license_key', '');
if ($master_key) {
$bool = update_option($field['id'], $master_key);
} else {
update_option($field['id'], '');
}
} else {
$bool = update_option($field['id'], $field['default']);
}
} else {
if ($field['type'] == 'license-key' && $new) {
$license_status = get_option('wp_cta_license_status-' . $field['slug']);
if ($license_status == 'valid' && $new == $field['old_value']) {
continue;
}
$license = trim(get_option('edd_sample_license_key'));
$api_params = array(
'edd_action' => 'activate_license',
'license' => $new,
'item_name' => $field['slug']
);
$response = wp_remote_get(add_query_arg($api_params, WP_CTA_STORE_URL), array('timeout' => 15, 'sslverify' => false));
if (is_wp_error($response))
break;
$license_data = json_decode(wp_remote_retrieve_body($response));
$license_status = update_option('wp_cta_license_status-' . $field['slug'], $license_data->license);
}
}
do_action('wp_cta_save_global_settings', $field);
}
}
}
public static function get_setting( $field_id , $default ) {
global $inbound_settings;
$value = $default;
if (defined('INBOUND_PRO_CURRENT_VERSION')) {
$field_id = str_replace('wp-cta-main-' , '', $field_id );
$value = (isset($inbound_settings[WP_CTA_SLUG][$field_id])) ? $inbound_settings[WP_CTA_SLUG][$field_id] : $default;
} else {
$value = get_option( $field_id, $default );
}
return $value;
}
}
function load_CTA_Settings() {
new CTA_Settings;
}
add_action('admin_init', 'load_CTA_Settings');
}