at path:
ROOT
/
wp-content
/
plugins
/
whizzy
/
plugin-config.php
run:
R
W
Run
assets
DIR
2025-08-15 17:54:51
R
W
Run
callbacks
DIR
2025-08-15 17:54:51
R
W
Run
core
DIR
2025-08-15 17:54:51
R
W
Run
features
DIR
2025-08-15 17:54:51
R
W
Run
lang
DIR
2025-08-15 17:54:51
R
W
Run
lib
DIR
2025-08-15 17:54:51
R
W
Run
settings
DIR
2025-08-15 17:54:51
R
W
Run
views
DIR
2025-08-15 17:54:51
R
W
Run
class-whizzy.php
29.63 KB
2025-08-15 17:54:51
R
W
Run
Delete
Rename
gulpfile.js
1.79 KB
2025-08-15 17:54:51
R
W
Run
Delete
Rename
index.php
120 By
2025-08-15 17:54:51
R
W
Run
Delete
Rename
package-lock.json
383 KB
2025-08-15 17:54:51
R
W
Run
Delete
Rename
package.json
1013 By
2025-08-15 17:54:51
R
W
Run
Delete
Rename
plugin-config.php
1.25 KB
2025-08-15 17:54:51
R
W
Run
Delete
Rename
plugin-defaults.php
726 By
2025-08-15 17:54:51
R
W
Run
Delete
Rename
readme.txt
2.76 KB
2025-08-15 17:54:51
R
W
Run
Delete
Rename
single-proof_gallery.php
125 By
2025-08-15 17:54:51
R
W
Run
Delete
Rename
whizzy-advanced.php
36.44 KB
2025-08-15 17:54:51
R
W
Run
Delete
Rename
whizzy-page-pdf.php
5.21 KB
2025-08-15 17:54:51
R
W
Run
Delete
Rename
whizzy.php
1.75 KB
2025-08-15 17:54:51
R
W
Run
Delete
Rename
error_log
up
📄
plugin-config.php
Save
<?php defined('ABSPATH') or die; $basepath = dirname(__FILE__) . DIRECTORY_SEPARATOR; $debug = false; if ( isset( $_GET['debug'] ) && $_GET['debug'] == 'true' ) { $debug = true; } $debug = true; $options = get_option('whizzy_settings'); $display_settings = false; if ( isset( $options['display_settings'] ) ){ $display_settings = $options['display_settings']; } return array( 'plugin-name' => 'whizzy', 'settings-key' => 'whizzy_settings', 'textdomain' => 'whizzy_txtd', 'template-paths' => array( $basepath . 'core/views/form-partials/', $basepath . 'views/form-partials/', ), 'fields' => apply_filters( 'whizzy_config_fields', array( 'hiddens' => include 'settings/hiddens.php', 'general' => include 'settings/general.php', 'post_types' => include 'settings/post_types.php', ) ), 'processor' => array( 'preupdate' => array(), 'postupdate' => array( 'save_settings' ), ), 'cleanup' => array( 'switch' => array( 'switch_not_available' ), ), 'checks' => array( 'counter' => array( 'is_numeric', 'not_empty' ), ), 'errors' => array( 'not_empty' => esc_html__( 'Invalid Value.', 'whizzy' ), ), 'callbacks' => array( 'save_settings' => 'save_whizzy_settings' ), 'debug' => $debug, ); # config