PATH:
home
/
sarkas88.com
/
public_html
/
wp-content
/
plugins
/
amp
/
vendor
/
ampproject
/
amp-toolbox
/
src
/
Optimizer
<?php namespace AmpProject\Optimizer; use AmpProject\Optimizer\Exception\UnknownConfigurationKey; /** * Interface for a configuration object that validates and stores configuration settings. * * @package ampproject/amp-toolbox */ interface Configuration { /** * Key to use for managing the array of active transformers. * * @var string */ const KEY_TRANSFORMERS = 'transformers'; /** * Array of known configuration keys and their default values. * * @var array{transformers: string[]} */ const DEFAULTS = [ self::KEY_TRANSFORMERS => self::DEFAULT_TRANSFORMERS, ]; /** * Array of FQCNs of transformers to use for the default setup. * * @var string[] */ const DEFAULT_TRANSFORMERS = [ Transformer\TransformedIdentifier::class, Transformer\AmpBoilerplate::class, Transformer\OptimizeHeroImages::class, Transformer\ServerSideRendering::class, Transformer\AmpRuntimeCss::class, Transformer\AmpRuntimePreloads::class, Transformer\AmpBoilerplateErrorHandler::class, Transformer\GoogleFontsPreconnect::class, Transformer\RewriteAmpUrls::class, Transformer\OptimizeViewport::class, Transformer\ReorderHead::class, Transformer\OptimizeAmpBind::class, Transformer\MinifyHtml::class, ]; /** * Register a new configuration class to use for a given transformer. * * @param string $transformerClass FQCN of the transformer to register a configuration class for. * @param string $configurationClass FQCN of the configuration to use. */ public function registerConfigurationClass($transformerClass, $configurationClass); /** * Check whether the configuration has a given setting. * * @param string $key Configuration key to look for. * @return bool Whether the requested configuration key was found or not. */ public function has($key); /** * Get the value for a given key from the configuration. * * @param string $key Configuration key to get the value for. * @return mixed Configuration value for the requested key. * @throws UnknownConfigurationKey If the key was not found. */ public function get($key); /** * Get the transformer-specific configuration for the requested transformer. * * @param string $transformer FQCN of the transformer to get the configuration for. * @return TransformerConfiguration Transformer-specific configuration. */ public function getTransformerConfiguration($transformer); }
[+]
Exception
[-] ErrorCollection.php
[open]
[-] DefaultConfiguration.php
[open]
[-] ImageDimensions.php
[open]
[-] Configuration.php
[open]
[-] HeroImage.php
[open]
[+]
Error
[+]
Transformer
[-] CssRules.php
[open]
[-] TransformationEngine.php
[open]
[+]
Configuration
[-] Transformer.php
[open]
[-] TransformerConfiguration.php
[open]
[+]
..
[-] Error.php
[open]
[-] LocalFallback.php
[open]
[-] CssRule.php
[open]