Changeset 2879142
- Timestamp:
- 03/13/2023 02:05:10 PM (3 years ago)
- Location:
- customify/trunk
- Files:
-
- 4 edited
-
customify.php (modified) (2 diffs)
-
includes/admin-settings/views/admin.php (modified) (2 diffs)
-
includes/class-customify-settings.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
customify/trunk/customify.php
r2561153 r2879142 4 4 * Plugin URI: https://wordpress.org/plugins/customify/ 5 5 * Description: A Theme Customizer Booster to easily and consistently customize Fonts, Colors, and other options for your site. 6 * Version: 2.10. 46 * Version: 2.10.5 7 7 * Author: Pixelgrade 8 8 * Author URI: https://pixelgrade.com … … 13 13 * Domain Path: /languages/ 14 14 * Requires at least: 4.9.14 15 * Tested up to: 5. 5.316 * Requires PHP: 5. 4.015 * Tested up to: 5.9.5 16 * Requires PHP: 5.6.40 17 17 */ 18 18 -
customify/trunk/includes/admin-settings/views/admin.php
r2148441 r2879142 13 13 */ 14 14 15 $config = Customify_Settings::get_plugin_config(); 16 17 // invoke processor 18 $processor = pixcustomify::processor( $config ); 19 $status = $processor->status(); 20 $errors = $processor->errors(); ?> 15 /** 16 * @var $config 17 * @var $processor 18 * @var $status 19 * @var $errors 20 */ 21 ?> 21 22 22 23 <div class="wrap" id="pixcustomify_form"> … … 50 51 echo $f->field( 'typography' )->render(); 51 52 echo $f->field( 'tools' )->render(); ?> 53 <?php wp_nonce_field( 'customify_settings_save', '_wpnonce-customify-settings' ); ?> 52 54 <button type="submit" class="button button-primary"> 53 55 <?php esc_html_e( 'Save Changes', 'customify' ); ?> -
customify/trunk/includes/class-customify-settings.php
r2309508 r2879142 92 92 */ 93 93 function display_plugin_admin_page() { 94 // Check the nonce, in case the form was submitted. 95 if ( $_SERVER['REQUEST_METHOD'] === 'POST' ) { 96 check_admin_referer( 'customify_settings_save', '_wpnonce-customify-settings' ); 97 } 98 99 $config = Customify_Settings::get_plugin_config(); 100 101 // Invoke the processor. 102 /** 103 * @var PixCustomifyProcessorImpl $processor 104 */ 105 $processor = pixcustomify::processor( $config ); 106 $status = $processor->status(); 107 $errors = $processor->errors(); 108 109 // Do the saving and display the form. 94 110 include_once plugin_dir_path( $this->file ) . 'includes/admin-settings/views/admin.php'; 95 111 } -
customify/trunk/readme.txt
r2561153 r2879142 3 3 Tags: design, customizer, fonts, colors, gutenberg, font palettes, color palettes 4 4 Requires at least: 4.9.14 5 Tested up to: 5. 7.26 Stable tag: 2.10. 45 Tested up to: 5.9.5 6 Stable tag: 2.10.5 7 7 Requires PHP: 5.6.40 8 8 License: GPLv2 or later … … 30 30 31 31 == Changelog == 32 33 = 2.10.5 = 34 * Security fixes. 32 35 33 36 = 2.10.4 =
Note: See TracChangeset
for help on using the changeset viewer.