# solid-performance/trunk/src/functions/app.php

Solid Performance – Your No-Code Caching, Performance, &amp; Page Speed Solution, version trunk. 73 lines.

- Page: https://pluginprobe.com/plugins/solid-performance/trunk/code/src/functions/app.php
- Raw: https://pluginprobe.com/plugins/solid-performance/trunk/raw/src/functions/app.php
- Modified: 2025-03-05T20:18:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/solid-performance/trunk/code/src/functions/app.php#L10-L20`.

```php
<?php
/**
 * Application/Plugin specific functions.
 */

declare( strict_types=1 );

use SolidWP\Performance\Container;
use SolidWP\Performance\Core;
use SolidWP\Performance\lucatume\DI52\Container as DI52Container;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Initialize the plugin singleton and ensure we only have a single
 * instance of our container.
 *
 * @return Core
 */
function swpsp_plugin(): Core {
	// In the event we don't have a container in our core class yet.
	$container = new Container( new DI52Container() );

	// This singleton will not use a new container if one is already set.
	return Core::instance( realpath( __DIR__ . '/../../solid-performance.php' ), $container );
}

/**
 * Log to the error log if WP_DEBUG is set to true.
 *
 * @param string|mixed[] $data The data to log.
 *
 * @return void
 */
function swpsp_log( $data ): void {
	if ( ! defined( 'WP_DEBUG' ) || ! WP_DEBUG || ! function_exists( 'error_log' ) ) {
		return;
	}

	if ( is_array( $data ) ) {
		$data = print_r( $data, true );
	}

	error_log( $data );
}

/**
 * Properly get the home path, as WordPress's function doesn't seem to work in all cases.
 *
 * This is based off the same code that wp-load.php uses to find wp-config.php.
 *
 * @throws RuntimeException If we can't find the home path.
 *
 * @return string
 */
function swpsp_get_document_root(): string {
	$path = '';

	if ( file_exists( ABSPATH . 'wp-config.php' ) ) {
		$path = ABSPATH;
	} elseif ( file_exists( dirname( ABSPATH ) . '/wp-config.php' ) && ! file_exists( dirname( ABSPATH ) . '/wp-settings.php' ) ) {
		$path = dirname( ABSPATH );
	}

	if ( ! $path ) {
		throw new RuntimeException( 'Unable to document root' );
	}

	return trailingslashit( $path );
}

```
