Plugin Directory

Changeset 3290456


Ignore:
Timestamp:
05/09/2025 11:55:51 AM (11 months ago)
Author:
krishaweb
Message:

Update code for filename sanitization

Location:
cf7-email-add-on
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • cf7-email-add-on/tags/2.0/README.md

    r3288853 r3290456  
    33## Description
    44
    5 Email Addon for Contact Form 7 plugin provides the responsive Email templates to admin and users.
     5Email addons for CF7 plugin provides the responsive Email templates to admin and users.
    66
    7 Email Addon for Contact Form 7 is the email configuration extension to the Contact Form 7. It lets you customize the contact form email both for users and admin. You can select the most suitable email template from the pre-developed templates and easily customize the template as per your requirements. You can add and update the content, links, graphics and buttons of the email template that too without expert coding skills.
     7Email addons for CF7 is the email configuration extension to the Contact Form 7. It lets you customize the contact form email both for users and admin. You can select the most suitable email template from the pre-developed templates and easily customize the template as per your requirements. You can add and update the content, links, graphics and buttons of the email template that too without expert coding skills.
    88
    99## Installation
  • cf7-email-add-on/tags/2.0/contact-form-7-email-add-on.php

    r3288853 r3290456  
    33 * Plugin Name: Email addons for CF7
    44 * Plugin URI: https://wordpress.org/plugins/cf7-email-add-on/
    5  * Description: Email Addon for Contact Form 7 plugin provides the responsive Email templates to admin and users.
     5 * Description: Contact Form 7 Email Add on plugin provides the responsive Email templates to admin and users.
     6 * Version: 2.0
     7 * Requires at least: 6.6
     8 * Requires PHP: 7.4
    69 * Author: KrishaWeb
    710 * Author URI: https://www.krishaweb.com
    8  * Requires at least: 5.0
    9  * Requires PHP: 7.0
    1011 * Text Domain: cf7-email-add-on
    1112 * Domain Path: /languages
     
    1314 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1415 * Requires Plugins : contact-form-7
    15  * Version: 2.0
    1616 *
    1717 * @package WordPress
  • cf7-email-add-on/tags/2.0/include/class-cf7-email.php

    r3288853 r3290456  
    161161         */
    162162        private function cf7_email_add_on_get_template_path( $template_name, $template_type ) {
    163             $base_path = plugin_dir_path( __FILE__ ) . '../admin/email-templates/';
    164             $file_path = ( 'admin' === $template_type ) ? $base_path . 'admin/' . $template_name . '.php' : $base_path . 'user/' . $template_name . '.php';
     163            $base_path     = plugin_dir_path( __FILE__ ) . '../admin/email-templates/';
     164            $template_name = sanitize_file_name( $template_name . '.php' );
     165            $file_path     = ( 'admin' === $template_type ) ? $base_path . 'admin/' . $template_name : $base_path . 'user/' . $template_name;
    165166            return is_readable( $file_path ) ? $file_path : false;
    166167        }
  • cf7-email-add-on/tags/2.0/readme.txt

    r3288853 r3290456  
    1 === Contact Form 7 Email Add On ===
     1=== Email addons for CF7 ===
    22Plugin Name: Email addons for CF7
    3 Plugin URI: https://wordpress.org/plugins/cf7-email-add-on
     3Plugin URI: https://wordpress.org/plugins/contact-form-7-email-add-on
    44Author: krishaweb
    55Author URI: https://krishaweb.com
    66Contributors: hardik2221, krishaweb, pratikgandhi, nikunjchauhan
    7 Tags: emailaddon, cf7-addon, contactform7, emailtemplate, htmlemail
     7Tags: email, cf7, contact form, email template, html email, addon
    88Requires at least: 5.0
    99Tested up to: 6.8
     
    1414License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1515
    16 Email Addon for Contact Form 7 plugin provides the responsive Email templates to admin and users.
     16Email addons for CF7 plugin provides the responsive Email templates to admin and users.
    1717
    1818== Description ==
    1919
    20 Email Addon for Contact Form 7 is the email configuration extension to the Contact Form 7. It lets you customize the contact form email both for users and admin. You can select the most suitable email template from the pre-developed templates and easily customize the template as per your requirements. You can add and update the content, links, graphics and buttons of the email template that too without expert coding skills.
     20Email addons for CF7 is the email configuration extension to the Contact Form 7. It lets you customize the contact form email both for users and admin. You can select the most suitable email template from the pre-developed templates and easily customize the template as per your requirements. You can add and update the content, links, graphics and buttons of the email template that too without expert coding skills.
    2121
    2222Different pre-developed email templates lets also enables you to do the A/B testing to understand the user behavior and improve the conversion rate. It is not just a contact from 7 email add on, it also helps you with your conversion optimization process. It is easy to install, set up and requires minimum technical skills to update.
    2323
    24 [Youtube https://www.youtube.com/watch?v=20jCxtgK_hQ]
     24[youtube https://www.youtube.com/watch?v=20jCxtgK_hQ]
    2525
    2626> **Plugin Features**
     
    6262== Changelog ==
    6363= 2.0 =
    64 * Bug & Security Fixed
     64* Bug Fixed
    6565
    6666= 1.9 =
  • cf7-email-add-on/trunk/README.md

    r3288853 r3290456  
    33## Description
    44
    5 Email Addon for Contact Form 7 plugin provides the responsive Email templates to admin and users.
     5Email addons for CF7 plugin provides the responsive Email templates to admin and users.
    66
    7 Email Addon for Contact Form 7 is the email configuration extension to the Contact Form 7. It lets you customize the contact form email both for users and admin. You can select the most suitable email template from the pre-developed templates and easily customize the template as per your requirements. You can add and update the content, links, graphics and buttons of the email template that too without expert coding skills.
     7Email addons for CF7 is the email configuration extension to the Contact Form 7. It lets you customize the contact form email both for users and admin. You can select the most suitable email template from the pre-developed templates and easily customize the template as per your requirements. You can add and update the content, links, graphics and buttons of the email template that too without expert coding skills.
    88
    99## Installation
  • cf7-email-add-on/trunk/contact-form-7-email-add-on.php

    r3288853 r3290456  
    33 * Plugin Name: Email addons for CF7
    44 * Plugin URI: https://wordpress.org/plugins/cf7-email-add-on/
    5  * Description: Email Addon for Contact Form 7 plugin provides the responsive Email templates to admin and users.
     5 * Description: Contact Form 7 Email Add on plugin provides the responsive Email templates to admin and users.
     6 * Version: 2.0
     7 * Requires at least: 6.6
     8 * Requires PHP: 7.4
    69 * Author: KrishaWeb
    710 * Author URI: https://www.krishaweb.com
    8  * Requires at least: 5.0
    9  * Requires PHP: 7.0
    1011 * Text Domain: cf7-email-add-on
    1112 * Domain Path: /languages
     
    1314 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1415 * Requires Plugins : contact-form-7
    15  * Version: 2.0
    1616 *
    1717 * @package WordPress
  • cf7-email-add-on/trunk/include/class-cf7-email.php

    r3288853 r3290456  
    161161         */
    162162        private function cf7_email_add_on_get_template_path( $template_name, $template_type ) {
    163             $base_path = plugin_dir_path( __FILE__ ) . '../admin/email-templates/';
    164             $file_path = ( 'admin' === $template_type ) ? $base_path . 'admin/' . $template_name . '.php' : $base_path . 'user/' . $template_name . '.php';
     163            $base_path     = plugin_dir_path( __FILE__ ) . '../admin/email-templates/';
     164            $template_name = sanitize_file_name( $template_name . '.php' );
     165            $file_path     = ( 'admin' === $template_type ) ? $base_path . 'admin/' . $template_name : $base_path . 'user/' . $template_name;
    165166            return is_readable( $file_path ) ? $file_path : false;
    166167        }
  • cf7-email-add-on/trunk/readme.txt

    r3288853 r3290456  
    1 === Contact Form 7 Email Add On ===
     1=== Email addons for CF7 ===
    22Plugin Name: Email addons for CF7
    3 Plugin URI: https://wordpress.org/plugins/cf7-email-add-on
     3Plugin URI: https://wordpress.org/plugins/contact-form-7-email-add-on
    44Author: krishaweb
    55Author URI: https://krishaweb.com
    66Contributors: hardik2221, krishaweb, pratikgandhi, nikunjchauhan
    7 Tags: emailaddon, cf7-addon, contactform7, emailtemplate, htmlemail
     7Tags: email, cf7, contact form, email template, html email, addon
    88Requires at least: 5.0
    99Tested up to: 6.8
     
    1414License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1515
    16 Email Addon for Contact Form 7 plugin provides the responsive Email templates to admin and users.
     16Email addons for CF7 plugin provides the responsive Email templates to admin and users.
    1717
    1818== Description ==
    1919
    20 Email Addon for Contact Form 7 is the email configuration extension to the Contact Form 7. It lets you customize the contact form email both for users and admin. You can select the most suitable email template from the pre-developed templates and easily customize the template as per your requirements. You can add and update the content, links, graphics and buttons of the email template that too without expert coding skills.
     20Email addons for CF7 is the email configuration extension to the Contact Form 7. It lets you customize the contact form email both for users and admin. You can select the most suitable email template from the pre-developed templates and easily customize the template as per your requirements. You can add and update the content, links, graphics and buttons of the email template that too without expert coding skills.
    2121
    2222Different pre-developed email templates lets also enables you to do the A/B testing to understand the user behavior and improve the conversion rate. It is not just a contact from 7 email add on, it also helps you with your conversion optimization process. It is easy to install, set up and requires minimum technical skills to update.
    2323
    24 [Youtube https://www.youtube.com/watch?v=20jCxtgK_hQ]
     24[youtube https://www.youtube.com/watch?v=20jCxtgK_hQ]
    2525
    2626> **Plugin Features**
     
    6262== Changelog ==
    6363= 2.0 =
    64 * Bug & Security Fixed
     64* Bug Fixed
    6565
    6666= 1.9 =
Note: See TracChangeset for help on using the changeset viewer.