PHP 8.2.31
Preview: API.php Size: 923 B
/proc/self/root/home/nshryvcy/himaltourism.com/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: 15 × Files: 4

Name Size Perms Modified Actions
Access DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
Admin DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
Db DIR
- drwxr-xr-x 2025-01-05 05:34:50
Edit Download
Emails DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
Forms DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
Frontend DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
Helpers DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
Lite DIR
- drwxr-xr-x 2025-01-05 05:34:50
Edit Download
Logger DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
Providers DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
SmartTags DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
Tasks DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
923 B lrw-r--r-- 2025-01-05 05:34:51
Edit Download
10.94 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
14.67 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
13.20 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download

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