Changeset 1293661
- Timestamp:
- 11/24/2015 06:04:43 PM (10 years ago)
- Location:
- imforza-news/trunk
- Files:
-
- 5 edited
-
admin/adminbar.php (modified) (1 diff)
-
admin/dashboard.php (modified) (1 diff)
-
admin/settings.php (modified) (4 diffs)
-
imforza.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
imforza-news/trunk/admin/adminbar.php
r1290277 r1293661 129 129 )); 130 130 131 132 if ( !empty($client_details['email_marketing']) == '1' ){ 133 134 135 // Add sub menu link "Contact Support" 136 $wp_admin_bar->add_menu( array( 137 'parent' => 'imforza_link', 138 'id' => 'imforza_email_marketing', 139 'title' => __( 'Email Marketing', 'imforza'), 140 'href' => __('http://email.imforza.com'), 141 "meta" => array("target" => "blank") 142 )); 143 144 145 } 146 131 147 // Add sub menu link "Contact Support" 132 148 $wp_admin_bar->add_menu( array( -
imforza-news/trunk/admin/dashboard.php
r1290277 r1293661 64 64 <ul class="imforza-links"> 65 65 <?php 66 67 $client_details = get_option('imforza_client_details'); 68 69 if ( !empty($client_details['email_marketing']) == '1' ) { 70 echo '<li><a href="http://email.imforza.com" target="_blank"><span class="dashicons dashicons-megaphone"></span> Email Marketing</a></li>'; 71 } 72 66 73 if ( is_plugin_active( 'wp101/wp101.php' ) ) { 67 74 echo '<li><a href="admin.php?page=wp101"><span class="dashicons dashicons-video-alt3"></span> Video Guides</a></li>'; 68 75 } 76 77 69 78 ?> 70 79 <li><a href="//help.imforza.com" target="_blank"><span class="dashicons dashicons-book"></span> KnowledgeBase</a></li> -
imforza-news/trunk/admin/settings.php
r1291209 r1293661 164 164 <td> 165 165 <label> 166 <input type="radio" name="imforza_client_details[site_type]" id=" " value="template" <?php if ($client_details['site_type'] == 'template' ){ echo 'checked="checked"'; } ?>> Template </label><br /><br />167 <label> <input type="radio" name="imforza_client_details[site_type]" id=" " value="custom" <?php if ($client_details['site_type'] == 'custom' ){ echo 'checked="checked"'; } ?>> Custom </label>166 <input type="radio" name="imforza_client_details[site_type]" id="website-type-template" value="template" <?php if ($client_details['site_type'] == 'template' ){ echo 'checked="checked"'; } ?>> Template </label><br /><br /> 167 <label> <input type="radio" name="imforza_client_details[site_type]" id="website-type-custom" value="custom" <?php if ($client_details['site_type'] == 'custom' ){ echo 'checked="checked"'; } ?>> Custom </label> 168 168 169 169 </td> … … 193 193 </tr> 194 194 195 195 196 <tr> 196 197 <th><label for="imforza_design_input">Design (comps) URL:</label></th> … … 214 215 </td> 215 216 </tr> 217 218 219 <tr> 220 <th><label for="">Email Marketing: <br /><small>(<a href="http://email.imforza.com" target="_blank">Campaign Monitor</a>)</small></label></th> 221 <td> 222 <label> 223 <input type="radio" name="imforza_client_details[email_marketing]" id="" value="1" <?php if (!empty($client_details['email_marketing']) == '1' ){ echo 'checked="checked"'; } ?>> Yes</label><br /><br /> 224 <label> <input type="radio" name="imforza_client_details[email_marketing]" id="" value="0" <?php if (!empty($client_details['email_marketing']) == '0' ){ echo 'checked="checked"'; } ?>> No</label> 225 <p class="description">Does this client have access to our email marketing services?</p> 226 </td> 227 </tr> 228 229 230 <tr> 231 <th><label for="">PPC: <br /></label></th> 232 <td> 233 <label> 234 <input type="radio" name="imforza_client_details[ppc_status]" id="" value="1" <?php if (!empty($client_details['ppc_status']) == '1' ){ echo 'checked="checked"'; } ?>> Yes</label><br /><br /> 235 <label> <input type="radio" name="imforza_client_details[ppc_status]" id="" value="0" <?php if (!empty($client_details['ppc_status']) == '0' ){ echo 'checked="checked"'; } ?>> No</label> 236 <p class="description">Does this client have an active PPC campaign?</p> 237 </td> 238 </tr> 239 240 241 <tr> 242 <th><label for="">Consulting: <br /></label></th> 243 <td> 244 <label> 245 <input type="radio" name="imforza_client_details[consulting_status]" id="" value="1" <?php if (!empty($client_details['consulting_status']) == '1' ){ echo 'checked="checked"'; } ?>> Yes</label><br /><br /> 246 <label> <input type="radio" name="imforza_client_details[consulting_status]" id="" value="0" <?php if (!empty($client_details['consulting_status']) == '0' ){ echo 'checked="checked"'; } ?>> No</label> 247 <p class="description">Does this client have an active consulting service?</p> 248 </td> 249 </tr> 250 251 216 252 217 253 <!-- … … 246 282 */ 247 283 284 285 286 287 // http://email.imforza.com/ -
imforza-news/trunk/imforza.php
r1293612 r1293661 2 2 /* 3 3 Plugin Name: imFORZA 4 Version: 1.3. 34 Version: 1.3.4 5 5 Plugin URI: //www.imforza.com#utm_source=wpadmin&utm_medium=plugin&utm_campaign=imforzanewsplugin 6 6 Description: imFORZA is a Web Design and Marketing company based out of El Segundo, CA. Get quick access to imFORZA Support and the latest marketing news. … … 15 15 16 16 // Define Plugin Version 17 define( 'IMFORZA_PLUGIN_VERSION', '1.3. 3' );17 define( 'IMFORZA_PLUGIN_VERSION', '1.3.4' ); 18 18 19 19 … … 51 51 function imforza_activation() { 52 52 53 update_option( 'imforza', array('version' => '1.3. 3'));53 update_option( 'imforza', array('version' => '1.3.4')); 54 54 55 55 flush_rewrite_rules(); -
imforza-news/trunk/readme.txt
r1293612 r1293661 5 5 Requires at least: 4.0 6 6 Tested up to: 4.4 7 Stable tag: 1.3. 37 Stable tag: 1.3.4 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 21 21 22 22 == Changelog == 23 24 = 1.3.4 = 25 * Email Marketing Management Link 23 26 24 27 = 1.3.3 =
Note: See TracChangeset
for help on using the changeset viewer.