PHP 8.2.31
Preview: API.php Size: 923 B
/proc/self/root/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/wpforms-lite/src/API.php

<?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 );
	}
}

Directory Contents

Dirs: 16 × Files: 4

Name Size Perms Modified Actions
Access DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Admin DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Db DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Education DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Emails DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Forms DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Frontend DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Helpers DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Lite DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Logger DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Providers DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
SmartTags DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
Tasks DIR
- drwxr-xr-x 2026-06-04 03:43:03
Edit Download
923 B lrw-r--r-- 2024-01-16 17:57:58
Edit Download
11.45 KB lrw-r--r-- 2025-06-17 13:49:02
Edit Download
19.03 KB lrw-r--r-- 2026-05-28 15:16:52
Edit Download
16.39 KB lrw-r--r-- 2025-09-25 15:01:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).