Your IP : 216.73.216.138


Current Path : /home/ereika83/www/wp-content/plugins/wpmu-dev-seo/includes/core/wpml/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/wpmu-dev-seo/includes/core/wpml/class-api.php

<?php
/**
 * WPML API provider.
 *
 * @package SmartCrawl
 */

namespace SmartCrawl\WPML;

/**
 * WPML API provider.
 *
 * @method array|\WP_Error wpml_get_language_information( $empty_value = null, int $post_id = null )
 * @method string get_current_language()
 * @method array get_active_languages( bool $refresh = false, bool $major_first = false, string $order_by = 'english_name' )
 * @method string get_default_language()
 * @method bool|string convert_url( string $url, string $code = null )
 * @method mixed get_setting( string $key, mixed $default = false )
 */
class Api {

	/**
	 * Invoked automatically when a non-existing method or inaccessible method is called.
	 *
	 * @param string $name Name of the method that is being called by the object.
	 * @param array  $arguments Array of arguments passed to the method call.
	 *
	 * @return mixed|null
	 */
	public function __call( $name, $arguments ) {
		if ( function_exists( $name ) ) {
			return call_user_func_array( $name, $arguments );
		}

		global $sitepress;
		if ( empty( $sitepress ) ) {
			return null;
		}

		if ( method_exists( $sitepress, $name ) ) {
			return call_user_func_array(
				array( $sitepress, $name ),
				$arguments
			);
		}

		return null;
	}
}