Changeset 1345184
- Timestamp:
- 02/07/2016 11:43:55 AM (10 years ago)
- Location:
- magic-action-box/trunk
- Files:
-
- 6 edited
-
lib/classes/ProsulumMabAdmin.php (modified) (1 diff)
-
lib/integration/mailchimp/Mailchimp.php (modified) (1 diff)
-
magic-action-box.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
views/settings/dashboard.php (modified) (1 diff)
-
views/settings/style-settings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
magic-action-box/trunk/lib/classes/ProsulumMabAdmin.php
r1292020 r1345184 8 8 var $_optin_AweberApplicationId = '60e2f3cd'; 9 9 var $_optin_AweberAuthenticationUrl = 'https://auth.aweber.com/1.0/oauth/authorize_app/'; 10 var $_optin_AweberFormActionUrl = 'http ://www.aweber.com/scripts/addlead.pl';10 var $_optin_AweberFormActionUrl = 'https://www.aweber.com/scripts/addlead.pl'; 11 11 var $_optin_AweberListsTransient = '_mab_aweber_lists_transient'; 12 12 var $_optin_ConstantContactKey = 'sz292ybks39us6j5ywnwy3ba'; -
magic-action-box/trunk/lib/integration/mailchimp/Mailchimp.php
r1158464 r1345184 167 167 curl_setopt($this->ch, CURLOPT_CONNECTTIMEOUT, 30); 168 168 curl_setopt($this->ch, CURLOPT_TIMEOUT, $opts['timeout']); 169 curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, false); 169 170 170 171 -
magic-action-box/trunk/magic-action-box.php
r1292020 r1345184 4 4 * Plugin URI: http://magicactionbox.com 5 5 * Description: Supercharge your blog posts! 6 * Version: 2.17 6 * Version: 2.17.1 7 7 * Author: Prosulum, LLC 8 8 * Author URI: http://prosulum.com … … 10 10 */ 11 11 12 define( 'MAB_VERSION', '2.17 ');12 define( 'MAB_VERSION', '2.17.1'); 13 13 //e.g. /var/www/example.com/wordpress/wp-content/plugins/after-post-action-box 14 14 define( "MAB_DIR", plugin_dir_path( __FILE__ ) ); -
magic-action-box/trunk/readme.txt
r1292020 r1345184 5 5 Requires at least: 3.5 6 6 Tested up to: 4.4 7 Stable tag: 2.17 7 Stable tag: 2.17.1 8 8 9 9 Magic Action Box let's you display professional looking opt-in forms and feature boxes in your WordPress site. … … 100 100 101 101 == Changelog == 102 = 2.17.1 = 103 *2016-02-07* 104 *Remove non-working implementation of style preview 105 *Add curl option to disable verify ssl peers on mailchimp api 106 102 107 = 2.17 = 103 108 *2015-11-22* -
magic-action-box/trunk/views/settings/dashboard.php
r1167732 r1345184 69 69 <div class="feature-section"> 70 70 <ul class="bullet"> 71 <li>Restore built-in integration with Constant Contact</li> 72 <li>Add debug tab in dashboard</li> 73 <li>Some refactoring, nothing else exciting</li> 71 <li>Remove non-working implementation of style preview</li> 72 <li>Add curl option to disable verify ssl peers on mailchimp api</li> 74 73 </ul> 75 74 </div> -
magic-action-box/trunk/views/settings/style-settings.php
r1292020 r1345184 13 13 <div class="wrap"> 14 14 15 <div id="actionbox-preview"></div>15 <!-- <div id="actionbox-preview"></div>--> 16 16 17 17 <form method="post" action="<?php echo add_query_arg( array() ); ?>" id="mab-style-settings-form"> 18 18 19 <div class="mab-panel-controls">20 <label><?php _e('Select action box to preview: ', 'mab');?></label><select id="actionbox-preview-dropdown" name="mab-design[preview_action_box]">21 <?php foreach($data['actionboxes'] as $ab):?>22 <option value="<?php echo $ab->ID; ?>" <?php selected($selectedActionBox, $ab->ID); ?>><?php echo $ab->post_title;?></option>23 <?php endforeach;?>19 <!-- <div class="mab-panel-controls"> 20 <label><?php /*_e('Select action box to preview: ', 'mab'); */?></label><select id="actionbox-preview-dropdown" name="mab-design[preview_action_box]"> 21 <?php /*foreach($data['actionboxes'] as $ab): */?> 22 <option value="<?php /*echo $ab->ID; */?>" <?php /*selected($selectedActionBox, $ab->ID); */?>><?php /*echo $ab->post_title; */?></option> 23 <?php /*endforeach; */?> 24 24 </select> 25 <a href="#fullscreen" class="button mab-fullscreen-toggle" data-enablefullscreen="1"><?php _e('Fullscreen', 'mab');?></a>26 </div> 25 <a href="#fullscreen" class="button mab-fullscreen-toggle" data-enablefullscreen="1"><?php /*_e('Fullscreen', 'mab'); */?></a> 26 </div>--> 27 27 28 28 <?php if( isset( $key ) ) : ?> … … 34 34 <input id="mab-style-title" size="30" name="mab-design[title]" value="<?php echo $settings['title']; ?>" type="text" /> 35 35 </p> 36 <p>37 <label><?php _e('Base Style:', 'mab');?></label>36 <!-- <p> 37 <label><?php /*_e('Base Style:', 'mab'); */?></label> 38 38 <select id="base-style" name="mab-design[base_style]"> 39 <option value=""><?php _e('None', 'mab');?></option>40 <?php foreach($baseStyles as $key => $s):?>41 <option value="<?php echo $key; ?>" <?php selected($selectedBaseStyle, $key); ?> ><?php echo $s['name'];?></option>42 <?php endforeach;?>39 <option value=""><?php /*_e('None', 'mab'); */?></option> 40 <?php /*foreach($baseStyles as $key => $s): */?> 41 <option value="<?php /*echo $key; */?>" <?php /*selected($selectedBaseStyle, $key); */?> ><?php /*echo $s['name']; */?></option> 42 <?php /*endforeach; */?> 43 43 </select> 44 </p> 44 </p>--> 45 45 46 46 <h3 id="mab-style-settings-tabs" class="nav-tab-wrapper">
Note: See TracChangeset
for help on using the changeset viewer.