-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add preload font factory -- :closes: #7246
- Loading branch information
Showing
3 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace WP_Rocket\Engine\Media\PreloadFonts; | ||
|
||
use WP_Rocket\Engine\Common\Context\ContextInterface; | ||
use WP_Rocket\Engine\Common\PerformanceHints\AJAX\ControllerInterface as AjaxControllerInterface; | ||
use WP_Rocket\Engine\Common\PerformanceHints\Database\Queries\QueriesInterface; | ||
use WP_Rocket\Engine\Common\PerformanceHints\Database\Table\TableInterface; | ||
use WP_Rocket\Engine\Common\PerformanceHints\FactoryInterface; | ||
use WP_Rocket\Engine\Common\PerformanceHints\Frontend\ControllerInterface as FrontendControllerInterface; | ||
|
||
class Factory implements FactoryInterface { | ||
/** | ||
* Ajax Controller instance. | ||
* | ||
* @var AjaxControllerInterface | ||
*/ | ||
protected $ajax_controller; | ||
|
||
/** | ||
* Frontend Controller instance. | ||
* | ||
* @var FrontendControllerInterface | ||
*/ | ||
protected $frontend_controller; | ||
|
||
/** | ||
* Table instance. | ||
* | ||
* @var TableInterface | ||
*/ | ||
protected $table; | ||
|
||
/** | ||
* Queries instance. | ||
* | ||
* @var QueriesInterface | ||
*/ | ||
protected $queries; | ||
|
||
/** | ||
* Context instance. | ||
* | ||
* @var ContextInterface | ||
*/ | ||
protected $context; | ||
|
||
/** | ||
* Instantiate the class. | ||
* | ||
* @param ContextInterface $context LRC Context instance. | ||
* @param TableInterface $table LRC Table instance. | ||
* @param QueriesInterface $queries LRC Queries instance. | ||
* @param AjaxControllerInterface $ajax_controller LRC AJAX Controller instance. | ||
* @param FrontendControllerInterface $frontend_controller LRC Frontend Controller instance. | ||
*/ | ||
public function __construct( | ||
ContextInterface $context, | ||
TableInterface $table, | ||
QueriesInterface $queries, | ||
AjaxControllerInterface $ajax_controller, | ||
FrontendControllerInterface $frontend_controller | ||
) { | ||
$this->context = $context; | ||
$this->table = $table; | ||
$this->queries = $queries; | ||
$this->ajax_controller = $ajax_controller; | ||
$this->frontend_controller = $frontend_controller; | ||
} | ||
|
||
/** | ||
* Ajax controller object. | ||
* | ||
* @return AjaxControllerInterface | ||
*/ | ||
public function get_ajax_controller(): AjaxControllerInterface { | ||
return $this->ajax_controller; | ||
} | ||
|
||
/** | ||
* Frontend controller object. | ||
* | ||
* @return FrontendControllerInterface | ||
*/ | ||
public function get_frontend_controller(): FrontendControllerInterface { | ||
return $this->frontend_controller; | ||
} | ||
|
||
/** | ||
* Provides a Table object. | ||
* | ||
* @return TableInterface | ||
*/ | ||
public function table(): TableInterface { | ||
return $this->table; | ||
} | ||
|
||
/** | ||
* Provide Queries object. | ||
* | ||
* @return QueriesInterface | ||
*/ | ||
public function queries(): QueriesInterface { | ||
return $this->queries; | ||
} | ||
|
||
/** | ||
* Provide context interface. | ||
* | ||
* @return ContextInterface | ||
*/ | ||
public function get_context(): ContextInterface { | ||
return $this->context; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters