| Server IP : 213.136.93.164 / Your IP : 216.73.216.20 Web Server : Apache System : Linux m14200.contabo.net 5.14.0-611.54.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 6 18:03:03 EDT 2026 x86_64 User : ki692510 ( 1047) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/ki692510/www/wp-content/plugins/wpforms-lite/src/ |
Upload File : |
<?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 );
}
}