Changeset 1381778
- Timestamp:
- 03/30/2016 07:07:48 AM (10 years ago)
- Location:
- gf-uploads-as-attachments
- Files:
-
- 5 added
- 1 deleted
- 2 edited
-
tags/1.1.0 (deleted)
-
tags/1.1.1 (added)
-
tags/1.1.1/LICENSE (added)
-
tags/1.1.1/gforms-uploads-as-attachments.php (added)
-
tags/1.1.1/languages (added)
-
tags/1.1.1/readme.txt (added)
-
trunk/gforms-uploads-as-attachments.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gf-uploads-as-attachments/trunk/gforms-uploads-as-attachments.php
r1381769 r1381778 4 4 Plugin URI: https://github.com/Jebble/Gravity-Forms-Uploads-as-Attachments 5 5 Description: Adds an option to send files from the fileupload field(s) as attachment with notifications 6 Version: 1.1. 06 Version: 1.1.1 7 7 Author: Jebble 8 8 Author URI: http://jebble.nl/ 9 Text Domain: jbl-gfuaa 9 Text Domain: gf-uploads-as-attachments 10 Domain Path: /languages 10 11 */ 12 13 function jbl_gfuaa_load_text_domain() { 14 load_plugin_textdomain( 'gf-uploads-as-attachments', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' ); 15 } 16 add_action( 'plugins_loaded', 'jbl_gfuaa_load_text_domain' ); 11 17 12 18 add_action( 'admin_init', 'jbl_check_gforms' ); … … 43 49 <th colspan=2> 44 50 <hr> 45 <strong>' . __( 'Uploads as Attachments settings', ' jbl-gfuaa' ) . ': </strong>51 <strong>' . __( 'Uploads as Attachments settings', 'gf-uploads-as-attachments' ) . ': </strong> 46 52 </th> 47 53 </tr> 48 54 <tr valign="top"> 49 55 <th scope="row"> 50 <label for="jbl_gfuaa_enable">' . __( 'Enable', ' jbl-gfuaa' ) . '</label>56 <label for="jbl_gfuaa_enable">' . __( 'Enable', 'gf-uploads-as-attachments' ) . '</label> 51 57 </th> 52 58 <td> 53 59 <input type="checkbox" id="jbl_gfuaa_enable" name="jbl_gfuaa_enable" value="1"' . $checked_enable . '> 54 <label for="jbl_gfuaa_enable" class="inline">' . __( 'Add fileupload fields from this form as attachments to this notification', ' jbl-gfuaa' ) . '</label>60 <label for="jbl_gfuaa_enable" class="inline">' . __( 'Add fileupload fields from this form as attachments to this notification', 'gf-uploads-as-attachments' ) . '</label> 55 61 <br> 56 62 </td> … … 58 64 <tr valign="top"> 59 65 <th scope="row"> 60 <label for="jbl_gfuaa_delete_files_after">' . __( 'Delete files', ' jbl-gfuaa' ) . '</label>66 <label for="jbl_gfuaa_delete_files_after">' . __( 'Delete files', 'gf-uploads-as-attachments' ) . '</label> 61 67 </th> 62 68 <td> 63 69 <input type="checkbox" id="jbl_gfuaa_delete_files_after" name="jbl_gfuaa_delete_files_after" value="1"' . $checked_delete_files_after . '> 64 <label for="jbl_gfuaa_delete_files_after" class="inline">' . __( 'Delete uploaded files from server after notification sent?', ' jbl-gfuaa' ) . '</label>70 <label for="jbl_gfuaa_delete_files_after" class="inline">' . __( 'Delete uploaded files from server after notification sent?', 'gf-uploads-as-attachments' ) . '</label> 65 71 <br> 66 72 </td> -
gf-uploads-as-attachments/trunk/readme.txt
r1381772 r1381778 4 4 Requires at least: 2.5.0 5 5 Tested up to: 4.4 6 Stable tag: 1.1. 06 Stable tag: 1.1.1 7 7 License: GPLv2 or later. 8 8
Note: See TracChangeset
for help on using the changeset viewer.