Changeset 1508840
- Timestamp:
- 10/05/2016 04:18:06 PM (10 years ago)
- Location:
- sms-for-contact-form-7/trunk
- Files:
-
- 3 edited
-
main.php (modified) (1 diff)
-
smsru-for-cf7.php (modified) (1 diff)
-
templates/form-options-4.2.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sms-for-contact-form-7/trunk/main.php
r1475213 r1508840 13 13 $this->plugin_dir = basename( dirname( __FILE__ ) ); 14 14 15 add_action( 'wpcf7_admin_after_form', array( &$this, 'setup_form_options' ) );15 //add_action( 'wpcf7_admin_after_form', array( &$this, 'setup_form_options' ) ); 16 16 add_action( 'wpcf7_after_save', array( &$this, 'save_form' ) ); 17 17 add_action( 'wpcf7_before_send_mail', array( &$this, 'send_sms' ) ); -
sms-for-contact-form-7/trunk/smsru-for-cf7.php
r1499560 r1508840 9 9 */ 10 10 11 $GLOBALS['cf7smsru_plugins'][ basename( dirname( __FILE__ ) ) ] = '1.0. 1';11 $GLOBALS['cf7smsru_plugins'][ basename( dirname( __FILE__ ) ) ] = '1.0.2'; 12 12 13 13 if( !function_exists( 'cf7smsru_loader' ) ) { -
sms-for-contact-form-7/trunk/templates/form-options-4.2.php
r1475213 r1508840 21 21 </th> 22 22 <td> 23 <input type="checkbox" id="wpcf7-sms-lat" name="wpcf7-sms[lat]" value="1" <?php checked( $data['lat'] ); ?>>23 <input type="checkbox" id="wpcf7-sms-lat" name="wpcf7-sms[lat]" value="1" <?php isset($data['lat']) ? checked( $data['lat'] ) : ''; ?>> 24 24 </td> 25 25 </tr>
Note: See TracChangeset
for help on using the changeset viewer.