Current Path: > home > codekrsu > > escapematrixonline.com > wp-content > plugins > wpforms-lite > src > > >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
Access | Directory | - | - | |
Admin | Directory | - | - | |
Db | Directory | - | - | |
Emails | Directory | - | - | |
Forms | Directory | - | - | |
Frontend | Directory | - | - | |
Helpers | Directory | - | - | |
Integrations | Directory | - | - | |
Lite | Directory | - | - | |
Logger | Directory | - | - | |
Migrations | Directory | - | - | |
Providers | Directory | - | - | |
Requirements | Directory | - | - | |
SmartTags | Directory | - | - | |
Tasks | Directory | - | - | |
API.php | File | 923 bytes | January 16 2024 17:57:58. | |
ErrorHandler.php | File | 11725 bytes | June 17 2025 13:49:02. | |
Loader.php | File | 18009 bytes | June 17 2025 13:49:02. | |
WPForms.php | File | 16449 bytes | February 27 2025 17:40:00. |
<?php namespace WPForms; use WPForms\Admin\Tools\Views\Import; /** * Class API. * * @since 1.8.6 */ class API { /** * Registry. * Contains name of the class and method to be called. * For non-static methods, should contain the id to operate via wpforms->get( 'class' ). * * @todo Add non-static methods processing. * * @since 1.8.6 * * @var array[] */ private $registry = [ 'import_forms' => [ 'class' => Import::class, 'method' => 'import_forms', ], ]; /** * Magic method to call a method from registry. * * @since 1.8.6 * * @param string $name Method name. * @param array $args Arguments. * * @return mixed|null */ public function __call( string $name, array $args ) { $callback = $this->registry[ $name ] ?? null; if ( $callback === null ) { return null; } return call_user_func( [ $callback['class'], $callback['method'] ], ...$args ); } }
SILENT KILLER Tool