Changeset 3276754
- Timestamp:
- 04/18/2025 12:59:27 PM (11 months ago)
- Location:
- connect-wpform-to-any-api
- Files:
-
- 39 added
- 4 edited
-
tags/0.0.7 (added)
-
tags/0.0.7/LICENSE.txt (added)
-
tags/0.0.7/README.txt (added)
-
tags/0.0.7/admin (added)
-
tags/0.0.7/admin/class-wpform-to-any-api-admin.php (added)
-
tags/0.0.7/admin/css (added)
-
tags/0.0.7/admin/css/wpform-to-any-api-admin.css (added)
-
tags/0.0.7/admin/images (added)
-
tags/0.0.7/admin/images/contact-form-to-any-api-icon.svg (added)
-
tags/0.0.7/admin/images/logs.png (added)
-
tags/0.0.7/admin/index.php (added)
-
tags/0.0.7/admin/js (added)
-
tags/0.0.7/admin/js/wpform-to-any-api-admin.js (added)
-
tags/0.0.7/admin/partials (added)
-
tags/0.0.7/admin/partials/wpform-to-any-api-admin-display-docs.php (added)
-
tags/0.0.7/admin/partials/wpform-to-any-api-admin-display.php (added)
-
tags/0.0.7/includes (added)
-
tags/0.0.7/includes/class-wpform-to-any-api-activator.php (added)
-
tags/0.0.7/includes/class-wpform-to-any-api-deactivator.php (added)
-
tags/0.0.7/includes/class-wpform-to-any-api-i18n.php (added)
-
tags/0.0.7/includes/class-wpform-to-any-api-loader.php (added)
-
tags/0.0.7/includes/class-wpform-to-any-api-log-table.php (added)
-
tags/0.0.7/includes/class-wpform-to-any-api.php (added)
-
tags/0.0.7/includes/index.php (added)
-
tags/0.0.7/index.php (added)
-
tags/0.0.7/languages (added)
-
tags/0.0.7/languages/wpform-to-any-api.pot (added)
-
tags/0.0.7/public (added)
-
tags/0.0.7/public/class-wpform-to-any-api-public.php (added)
-
tags/0.0.7/public/css (added)
-
tags/0.0.7/public/css/wpform-to-any-api-public.css (added)
-
tags/0.0.7/public/index.php (added)
-
tags/0.0.7/public/js (added)
-
tags/0.0.7/public/js/wpform-to-any-api-public.js (added)
-
tags/0.0.7/public/partials (added)
-
tags/0.0.7/public/partials/wpform-to-any-api-public-display.php (added)
-
tags/0.0.7/uninstall.php (added)
-
tags/0.0.7/wpform-to-any-api.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/css/wpform-to-any-api-admin.css (modified) (1 diff)
-
trunk/admin/images/contact-form-to-any-api-icon.svg (added)
-
trunk/admin/partials/wpform-to-any-api-admin-display-docs.php (modified) (2 diffs)
-
trunk/wpform-to-any-api.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
connect-wpform-to-any-api/trunk/README.txt
r3247152 r3276754 3 3 Tags: wpform to api, wpform. api, contact form, crm, lead 4 4 Requires at least: 6.0 5 Tested up to: 6. 75 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 0.0. 67 Stable tag: 0.0.7 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 91 91 == Changelog == 92 92 93 = 0.0.7 = 94 95 *Release Date 18 April 2025* 96 97 * Compatibility – Fully compatible with WordPress 6.8 98 93 99 = 0.0.6 = 94 100 -
connect-wpform-to-any-api/trunk/admin/css/wpform-to-any-api-admin.css
r3243804 r3276754 497 497 column-count: 2; 498 498 } 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*/ 499 569 @media screen and (max-width: 1500px){ 500 570 -
connect-wpform-to-any-api/trunk/admin/partials/wpform-to-any-api-admin-display-docs.php
r3243804 r3276754 12 12 <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> 13 13 <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> 14 15 </div> 15 16 </div> … … 179 180 <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> 180 181 </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 181 247 </div> 182 248 </div> -
connect-wpform-to-any-api/trunk/wpform-to-any-api.php
r3247152 r3276754 17 17 * Plugin URI: https://wordpress.org/plugins/connect-wpform-to-any-api 18 18 * Description: Send WPForms Lead/Data to Any CRM or Third Party APIs 19 * Version: 0.0. 619 * Version: 0.0.7 20 20 * Author: IT Path Solutions 21 21 * Author URI: https://www.itpathsolutions.com/ … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'WPFORM_TO_ANY_API_VERSION', '0.0. 6' );38 define( 'WPFORM_TO_ANY_API_VERSION', '0.0.7' ); 39 39 40 40 /**
Note: See TracChangeset
for help on using the changeset viewer.