Phase 6: WebP image conversion - Converter for Media plugin with Nginx rewrite rules

This commit is contained in:
Hanson.xyz Dev
2025-11-28 17:16:24 -06:00
parent 91de533da4
commit 78a744ef06
260 changed files with 21138 additions and 5 deletions
@@ -0,0 +1,37 @@
<?php
namespace WebpConverter\Service;
use WebpConverter\PluginInfo;
/**
* Supports loading views from /templates directory.
*/
class ViewLoader {
/**
* @var PluginInfo
*/
private $plugin_info;
public function __construct( PluginInfo $plugin_info ) {
$this->plugin_info = $plugin_info;
}
/**
* Loads view with given variables.
*
* @param string $path Server path relative to plugin root directory.
* @param mixed[] $params Variables for view.
*
* @return void
*/
public function load_view( string $path, array $params = [] ) {
extract( $params ); // phpcs:ignore
$view_path = sprintf( '%1$s/templates/%2$s', $this->plugin_info->get_plugin_directory_path(), $path );
if ( file_exists( $view_path ) ) {
/** @noinspection PhpIncludeInspection */ // phpcs:ignore
require_once $view_path;
}
}
}