Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
formidable
/
square
/
controllers
:
FrmSquareLiteSettingsController.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if ( ! defined( 'ABSPATH' ) ) { die( 'You are not allowed to call this page directly.' ); } class FrmSquareLiteSettingsController { /** * Add Square section to Global Settings. * * @since 6.22 * * @param array $sections * * @return array */ public static function add_settings_section( $sections ) { $sections['square'] = array( 'class' => self::class, 'function' => 'route', 'icon' => 'frmfont frm_square_icon', ); return $sections; } /** * Handle global settings routing. * * @return void */ public static function route() { self::global_settings_form(); } /** * Print the Stripe section for Global settings. * * @param array $atts * * @return void */ public static function global_settings_form( $atts = array() ) { include FrmSquareLiteAppHelper::plugin_path() . '/views/settings/form.php'; } /** * Handle processing changes to global Stripe Settings. * * @return void */ public static function process_form() { $settings = FrmSquareLiteAppHelper::get_settings(); // phpcs:ignore WordPress.Security.NonceVerification.Missing $settings->update( $_POST ); $settings->store(); } }