Changeset 3051190
- Timestamp:
- 03/14/2024 03:51:57 PM (2 years ago)
- Location:
- weavely/trunk
- Files:
-
- 4 edited
-
includes/functions.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
templates/setup.php (modified) (1 diff)
-
weavely.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
weavely/trunk/includes/functions.php
r3046353 r3051190 19 19 function weavely_api_key_settings() 20 20 { 21 register_setting('weavely_forms', 'weavely_forms_api_key', ' validate_weavely_api_key');21 register_setting('weavely_forms', 'weavely_forms_api_key', 'weavely_validate_api_key'); 22 22 } 23 23 -
weavely/trunk/readme.txt
r3046353 r3051190 4 4 Requires at least: 4.7 5 5 Tested up to: 6.4 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later -
weavely/trunk/templates/setup.php
r3046353 r3051190 32 32 <form method="post" action="options.php"> 33 33 <?php settings_fields('weavely_forms'); ?> 34 <input type="text" placeholder="Enter API key" name="weavely_forms_api_key" value="<?php echo esc_attr($api_key); ?>"/></td> 34 <input type="text" 35 placeholder="Enter API key" 36 name="weavely_forms_api_key" 37 required="true" 38 pattern="^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89aAbB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" 39 value="<?php echo esc_attr($api_key); ?>"/></td> 35 40 <?php submit_button('Submit'); ?> 36 41 </form> -
weavely/trunk/weavely.php
r3046353 r3051190 6 6 Plugin Name: Weavely - Build Forms in Figma 7 7 Description: Turn Figma designs into custom forms, effortlessly embed in WordPress. Elevate user experience with unique designs. 8 Version: 1.0. 08 Version: 1.0.1 9 9 Author: Weavely 10 10 Author URI: https://www.weavely.ai
Note: See TracChangeset
for help on using the changeset viewer.