Plugin Directory

Changeset 3276754


Ignore:
Timestamp:
04/18/2025 12:59:27 PM (11 months ago)
Author:
itpathsolutions
Message:

0.0.7

*Release Date 18 April 2025*

  • Compatibility – Fully compatible with WordPress 6.8
Location:
connect-wpform-to-any-api
Files:
39 added
4 edited

Legend:

Unmodified
Added
Removed
  • connect-wpform-to-any-api/trunk/README.txt

    r3247152 r3276754  
    33Tags: wpform to api, wpform. api, contact form, crm, lead
    44Requires at least: 6.0
    5 Tested up to: 6.7
     5Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 0.0.6
     7Stable tag: 0.0.7
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9191== Changelog ==
    9292
     93= 0.0.7 =
     94
     95*Release Date 18 April 2025*
     96
     97* Compatibility – Fully compatible with WordPress 6.8
     98
    9399= 0.0.6 =
    94100
  • connect-wpform-to-any-api/trunk/admin/css/wpform-to-any-api-admin.css

    r3243804 r3276754  
    497497    column-count: 2;
    498498}
     499
     500/*Other plugins CSS Start*/
     501.our-plugin-list {
     502    display: flex;
     503    flex-direction: column;
     504    gap: 20px;
     505    padding-bottom: 40px;
     506}
     507.our-plugin-card {
     508    display: flex;
     509    align-items: center;
     510    justify-content: flex-start;
     511    background: #fff;
     512    border-radius: 12px;
     513    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     514    padding: 20px;
     515    transition: box-shadow 0.3s ease;
     516}
     517.our-plugin-card:hover {
     518    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
     519}
     520.our-plugin-icon img {
     521    width: 60px;
     522    height: 60px;
     523    border-radius: 12px;
     524    background: #f8f8f8;
     525    padding: 8px;
     526    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
     527}
     528.our-plugin-details {
     529    flex-grow: 1;
     530    padding: 0 20px;
     531}
     532.our-plugin-details h4 {
     533    margin: 0 0 5px;
     534    font-size: 16px;
     535    font-weight: 600;
     536}
     537.our-plugin-details p {
     538    margin: 0 10px 10px 0;
     539    color: #555;
     540    font-size: 14px;
     541}
     542.our-plugin-badge {
     543    background-color: #007cba;
     544    color: #e5f1f8;
     545    font-size: 12px;
     546    font-weight: 600;
     547    padding: 4px 10px;
     548    border-radius: 10px;
     549    margin-right: 10px;
     550    border: 1px solid transparent; /* adds same height as a */
     551}
     552.our-plugin-details a {
     553    display: inline-block;
     554    font-size: 12px;
     555    color: #0073aa;
     556    text-decoration: none;
     557    font-weight: 600;
     558    border: 1px solid;
     559    padding: 4px 10px;
     560    border-radius: 10px;
     561    transition: all 0.3s ease;
     562}
     563.our-plugin-list .our-plugin-card .our-plugin-details a:hover {
     564    color: #fff;
     565    background-color: #007cba;
     566    border: 1px solid #007cba;
     567}
     568/*Other plugins CSS End*/
    499569@media screen and (max-width: 1500px){
    500570   
  • connect-wpform-to-any-api/trunk/admin/partials/wpform-to-any-api-admin-display-docs.php

    r3243804 r3276754  
    1212        <a class="nav-link tab-index-4" id="v-pills-json-format-tab" data-toggle="pill" href="#v-pills-json-format" role="tab" aria-controls="v-pills-json-format" aria-selected="false"><div class="tab-index"></div><?php esc_html_e( 'Supported JSON Format', 'connect-wpform-to-any-api' ); ?></a>
    1313        <a class="nav-link tab-index-5" id="v-pills-contact-us-tab" data-toggle="pill" href="#v-pills-contact-us" role="tab" aria-controls="v-pills-contact-us" aria-selected="false"><div class="tab-index"></div><?php esc_html_e( 'Contact Us', 'connect-wpform-to-any-api' ); ?></a>
     14        <a class="nav-link tab-index-6" id="v-pills-other-plugins-tab" data-toggle="pill" href="#v-pills-other-plugins" role="tab" aria-controls="v-pills-other-plugins" aria-selected="false"><div class="tab-index"></div><?php esc_html_e( 'Our Other Plugins', 'connect-wpform-to-any-api' ); ?></a>
    1415        </div>
    1516    </div>
     
    179180           <p class="text-center"><?php echo wp_kses(__( 'Need Help with Plugin Integration ? <b><a target="_blank" href="https://www.contactformtoapi.com/#contact_us">Click to Connect us</a></b>', 'connect-wpform-to-any-api' ), array('b' => array(), 'a' => array('href' => array(), 'target' => array() ) ) ); ?></p>
    180181        </div>
     182
     183        <!-- other plugins -->
     184        <div class="tab-pane fade cf7anyapi_full_width" id="v-pills-other-plugins" role="tabpanel" aria-labelledby="v-pills-other-plugins-tab">
     185            <h5 class="tab-title"><?php esc_html_e( 'Our Other Plugins', 'connect-wpform-to-any-api' ); ?></h5><br>
     186
     187            <div class="our-plugin-list">
     188                <div class="our-plugin-card">
     189                    <div class="our-plugin-icon">
     190                        <img src="<?php echo esc_url( plugin_dir_url( __DIR__ ) . 'images/contact-form-to-any-api-icon.svg' ); ?>" alt="<?php echo esc_attr__( 'Plugin Icon', 'connect-wpform-to-any-api' ); ?>">
     191                    </div>
     192                    <div class="our-plugin-details">
     193                        <h4><?php echo esc_html__( 'Contact Form 7 to Any API', 'connect-wpform-to-any-api' ); ?></h4>
     194                        <ul>
     195                            <li><?php echo esc_html__( 'Send CF7 leads to remote APIs such as CRMs and other external services using POST/GET', 'connect-wpform-to-any-api' ); ?></li>
     196                            <li><?php echo esc_html__( 'Create unlimited connection with any API', 'connect-wpform-to-any-api' ); ?></li>
     197                            <li><?php echo esc_html__( 'Supports Simple & Fixed Format of JSON', 'connect-wpform-to-any-api' ); ?></li>
     198                            <li><?php echo esc_html__( 'API Logs Management with submitted data and API response', 'connect-wpform-to-any-api' ); ?></li>
     199                        </ul>
     200                        <span class="our-plugin-badge"><?php echo esc_html__( 'Free', 'connect-wpform-to-any-api' ); ?></span>
     201                        <a target="_blank" href="<?php echo esc_url( 'https://wordpress.org/plugins/contact-form-to-any-api/' ); ?>">
     202                            <?php echo esc_html__( 'Download Now', 'connect-wpform-to-any-api' ); ?>
     203                        </a>
     204                    </div>
     205                </div>
     206                <div class="our-plugin-card">
     207                    <div class="our-plugin-icon">
     208                        <img src="<?php echo esc_url( plugin_dir_url( __DIR__ ) . 'images/contact-form-to-any-api-icon.svg' ); ?>" alt="<?php echo esc_attr__( 'Plugin Icon', 'connect-wpform-to-any-api' ); ?>">
     209                    </div>
     210                    <div class="our-plugin-details">
     211                        <h4><?php echo esc_html__( 'Contact Form 7 to Any API PRO', 'connect-wpform-to-any-api' ); ?></h4>
     212                        <ul>
     213                            <li><?php echo esc_html__( 'Support Multi Level or Any Format of JSON', 'connect-wpform-to-any-api' ); ?></li>
     214                            <li><?php echo esc_html__( 'Option to Choose when to send data to API – Before CF7 mail sent OR After mail sent', 'connect-wpform-to-any-api' ); ?></li>
     215                            <li><?php echo esc_html__( 'Compatible with Multiline files upload for contact form 7 Plugin', 'connect-wpform-to-any-api' ); ?></li>
     216                            <li><?php echo esc_html__( 'File input supported – Uploaded file will convert into BASE64 and send to API', 'connect-wpform-to-any-api' ); ?></li>
     217                        </ul>
     218                        <span class="our-plugin-badge"><?php echo esc_html__( 'PRO', 'connect-wpform-to-any-api' ); ?></span>
     219                        <a target="_blank" href="<?php echo esc_url( 'https://www.contactformtoapi.com/pricing/' ); ?>">
     220                            <?php echo esc_html__( 'Get Now', 'connect-wpform-to-any-api' ); ?>
     221                        </a>
     222                    </div>
     223                </div>
     224
     225                <div class="our-plugin-card">
     226                    <div class="our-plugin-icon">
     227                        <img src="<?php echo esc_url( plugin_dir_url( __DIR__ ) . 'images/contact-form-to-any-api-icon.svg' ); ?>" alt="<?php echo esc_attr__( 'Plugin Icon', 'connect-wpform-to-any-api' ); ?>">
     228                    </div>
     229                    <div class="our-plugin-details">
     230                        <h4><?php echo esc_html__( 'OAuth 2.0 Customization Addon for Contact Form 7 to Any API PRO', 'connect-wpform-to-any-api' ); ?></h4>
     231                        <ul>
     232                            <li><?php echo esc_html__( 'OAuth 2.0 Authentication & Integration for Any API.', 'connect-wpform-to-any-api' ); ?></li>
     233                            <li><?php echo esc_html__( 'Dynamic Access and Refresh Tokens Update automatically based on expiration time.', 'connect-wpform-to-any-api' ); ?></li>
     234                            <li><?php echo esc_html__( 'JWT Token Integration with Any API.', 'connect-wpform-to-any-api' ); ?></li>
     235                            <li><?php echo esc_html__( 'Create a JSON file for each entry and upload it to an FTP server based on your required JSON payload or format.', 'connect-wpform-to-any-api' ); ?></li>
     236                        </ul>
     237                        <span class="our-plugin-badge"><?php echo esc_html__( 'PRO Addon', 'connect-wpform-to-any-api' ); ?></span>
     238                        <a target="_blank" href="<?php echo esc_url( 'https://www.contactformtoapi.com/pricing/' ); ?>">
     239                            <?php echo esc_html__( 'Get Now', 'connect-wpform-to-any-api' ); ?>
     240                        </a>
     241                    </div>
     242                </div>
     243            </div>
     244        </div>
     245
     246
    181247        </div>
    182248    </div>
  • connect-wpform-to-any-api/trunk/wpform-to-any-api.php

    r3247152 r3276754  
    1717 * Plugin URI:        https://wordpress.org/plugins/connect-wpform-to-any-api
    1818 * Description:       Send WPForms Lead/Data to Any CRM or Third Party APIs
    19  * Version:           0.0.6
     19 * Version:           0.0.7
    2020 * Author:            IT Path Solutions
    2121 * Author URI:        https://www.itpathsolutions.com/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'WPFORM_TO_ANY_API_VERSION', '0.0.6' );
     38define( 'WPFORM_TO_ANY_API_VERSION', '0.0.7' );
    3939
    4040/**
Note: See TracChangeset for help on using the changeset viewer.