wppaste
WordPress

_wp_connectors_resolve_ai_provider_logo_url( string $path ): non-empty-string|null

Since
7.0.0
Source
wp-includes/connectors.php:175
Resolves an AI provider logo file path to a URL.

Description

Converts an absolute file path to a plugin URL. The path must reside within the plugins or must-use plugins directory.

Compatibility

WordPress
since 7.0.0
PHP
7.4–8.6-dev
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in 2 of the 5 tracked releases, added in 7.0.0, and compiles on PHP 7.4 through 8.6-dev.

Parameters

$pathstring
Absolute path to the logo file.

Return value

non-empty-string|null
The URL to the logo file, or null if the path is invalid.

Performance profile

How much work a call to _wp_connectors_resolve_ai_provider_logo_url() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.

Cost class
Heavy

Reads or writes the filesystem via file_exists().

Scaling
Constant

No loop in the body: the same number of instructions runs whatever you pass in.

Instructions
3–37

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 64.

Plugin surface
None

Nothing here hands control to plugin code.

Called by
1

1 place in core call this, so the cost is paid more often than your own code shows.

What it touches

  • filesystemfilesystem accessfile_exists()called directly
  • hookthird-party callbacksapply_filters()one call below _wp_connectors_resolve_ai_provider_logo_url()

Further down the call graph this can also reach query, option, cache, serialize and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.

What one call costs · 5 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost _wp_connectors_resolve_ai_provider_logo_url() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
always3none
!file_exists()11wp_normalize_path(), file_exists()
file_exists() && $path31–32wp_normalize_path(), file_exists(), wp_normalize_path(), plugins_url()
file_exists() && !$path35wp_normalize_path(), file_exists(), wp_normalize_path(), wp_normalize_path(), __(), _doing_it_wrong()
file_exists()36–37wp_normalize_path(), file_exists(), wp_normalize_path(), wp_normalize_path(), plugins_url()

Across PHP versions

PHPCompiledExecutedBranchesNotes
8.6-dev643–376
8.5643–376
8.4643–37612 fewer instructions than PHP 8.3
8.3763–466
8.2763–466
8.1763–466
7.4763–466

An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.

Uses · 5

Used by · 1

Source code

function _wp_connectors_resolve_ai_provider_logo_url( string $path ): ?string {	if ( ! $path ) {		return null;	} 	$path = wp_normalize_path( $path ); 	if ( ! file_exists( $path ) ) {		return null;	} 	$mu_plugin_dir = wp_normalize_path( WPMU_PLUGIN_DIR );	if ( str_starts_with( $path, $mu_plugin_dir . '/' ) ) {		$logo_url = plugins_url( substr( $path, strlen( $mu_plugin_dir ) ), WPMU_PLUGIN_DIR . '/.' );		return $logo_url ? $logo_url : null;	} 	$plugin_dir = wp_normalize_path( WP_PLUGIN_DIR );	if ( str_starts_with( $path, $plugin_dir . '/' ) ) {		$logo_url = plugins_url( substr( $path, strlen( $plugin_dir ) ) );		return $logo_url ? $logo_url : null;	} 	_doing_it_wrong(		__FUNCTION__,		__( 'Provider logo path must be located within the plugins or must-use plugins directory.' ),		'7.0.0'	); 	return null;}

Changelog

Introduced in 7.0.0. Unchanged from 7.0.4 through 7.1.0.

  1. 7.0.4
  2. 7.1.0

Signature, return type and hooks compared across 2 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/connectors.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.