Commit realizado el 12:13:52 08-04-2024
This commit is contained in:
579
wp-content/plugins/web-stories/includes/vendor/composer/ClassLoader.php
vendored
Normal file
579
wp-content/plugins/web-stories/includes/vendor/composer/ClassLoader.php
vendored
Normal file
@@ -0,0 +1,579 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Composer.
|
||||
*
|
||||
* (c) Nils Adermann <naderman@naderman.de>
|
||||
* Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Google_Web_Stories_Composer\Autoload;
|
||||
|
||||
/**
|
||||
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
||||
*
|
||||
* $loader = new \Google_Web_Stories_Composer\Autoload\ClassLoader();
|
||||
*
|
||||
* // register classes with namespaces
|
||||
* $loader->add('Symfony\Component', __DIR__.'/component');
|
||||
* $loader->add('Symfony', __DIR__.'/framework');
|
||||
*
|
||||
* // activate the autoloader
|
||||
* $loader->register();
|
||||
*
|
||||
* // to enable searching the include path (eg. for PEAR packages)
|
||||
* $loader->setUseIncludePath(true);
|
||||
*
|
||||
* In this example, if you try to use a class in the Symfony\Component
|
||||
* namespace or one of its children (Symfony\Component\Console for instance),
|
||||
* the autoloader will first look for the class under the component/
|
||||
* directory, and it will then fallback to the framework/ directory if not
|
||||
* found before giving up.
|
||||
*
|
||||
* This class is loosely based on the Symfony UniversalClassLoader.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||
* @see https://www.php-fig.org/psr/psr-0/
|
||||
* @see https://www.php-fig.org/psr/psr-4/
|
||||
*/
|
||||
class ClassLoader
|
||||
{
|
||||
/** @var \Closure(string):void */
|
||||
private static $includeFile;
|
||||
|
||||
/** @var string|null */
|
||||
private $vendorDir;
|
||||
|
||||
// PSR-4
|
||||
/**
|
||||
* @var array<string, array<string, int>>
|
||||
*/
|
||||
private $prefixLengthsPsr4 = array();
|
||||
/**
|
||||
* @var array<string, list<string>>
|
||||
*/
|
||||
private $prefixDirsPsr4 = array();
|
||||
/**
|
||||
* @var list<string>
|
||||
*/
|
||||
private $fallbackDirsPsr4 = array();
|
||||
|
||||
// PSR-0
|
||||
/**
|
||||
* List of PSR-0 prefixes
|
||||
*
|
||||
* Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
|
||||
*
|
||||
* @var array<string, array<string, list<string>>>
|
||||
*/
|
||||
private $prefixesPsr0 = array();
|
||||
/**
|
||||
* @var list<string>
|
||||
*/
|
||||
private $fallbackDirsPsr0 = array();
|
||||
|
||||
/** @var bool */
|
||||
private $useIncludePath = false;
|
||||
|
||||
/**
|
||||
* @var array<string, string>
|
||||
*/
|
||||
private $classMap = array();
|
||||
|
||||
/** @var bool */
|
||||
private $classMapAuthoritative = false;
|
||||
|
||||
/**
|
||||
* @var array<string, bool>
|
||||
*/
|
||||
private $missingClasses = array();
|
||||
|
||||
/** @var string|null */
|
||||
private $apcuPrefix;
|
||||
|
||||
/**
|
||||
* @var array<string, self>
|
||||
*/
|
||||
private static $registeredLoaders = array();
|
||||
|
||||
/**
|
||||
* @param string|null $vendorDir
|
||||
*/
|
||||
public function __construct($vendorDir = null)
|
||||
{
|
||||
$this->vendorDir = $vendorDir;
|
||||
self::initializeIncludeClosure();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, list<string>>
|
||||
*/
|
||||
public function getPrefixes()
|
||||
{
|
||||
if (!empty($this->prefixesPsr0)) {
|
||||
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
||||
}
|
||||
|
||||
return array();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, list<string>>
|
||||
*/
|
||||
public function getPrefixesPsr4()
|
||||
{
|
||||
return $this->prefixDirsPsr4;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return list<string>
|
||||
*/
|
||||
public function getFallbackDirs()
|
||||
{
|
||||
return $this->fallbackDirsPsr0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return list<string>
|
||||
*/
|
||||
public function getFallbackDirsPsr4()
|
||||
{
|
||||
return $this->fallbackDirsPsr4;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, string> Array of classname => path
|
||||
*/
|
||||
public function getClassMap()
|
||||
{
|
||||
return $this->classMap;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, string> $classMap Class to filename map
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addClassMap(array $classMap)
|
||||
{
|
||||
if ($this->classMap) {
|
||||
$this->classMap = array_merge($this->classMap, $classMap);
|
||||
} else {
|
||||
$this->classMap = $classMap;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix, either
|
||||
* appending or prepending to the ones previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param list<string>|string $paths The PSR-0 root directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function add($prefix, $paths, $prepend = false)
|
||||
{
|
||||
$paths = (array) $paths;
|
||||
if (!$prefix) {
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
$paths,
|
||||
$this->fallbackDirsPsr0
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
$this->fallbackDirsPsr0,
|
||||
$paths
|
||||
);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
$first = $prefix[0];
|
||||
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
||||
$this->prefixesPsr0[$first][$prefix] = $paths;
|
||||
|
||||
return;
|
||||
}
|
||||
if ($prepend) {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
$paths,
|
||||
$this->prefixesPsr0[$first][$prefix]
|
||||
);
|
||||
} else {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
$this->prefixesPsr0[$first][$prefix],
|
||||
$paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace, either
|
||||
* appending or prepending to the ones previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param list<string>|string $paths The PSR-4 base directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addPsr4($prefix, $paths, $prepend = false)
|
||||
{
|
||||
$paths = (array) $paths;
|
||||
if (!$prefix) {
|
||||
// Register directories for the root namespace.
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
$paths,
|
||||
$this->fallbackDirsPsr4
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
$this->fallbackDirsPsr4,
|
||||
$paths
|
||||
);
|
||||
}
|
||||
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
||||
// Register directories for a new namespace.
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = $paths;
|
||||
} elseif ($prepend) {
|
||||
// Prepend directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
$paths,
|
||||
$this->prefixDirsPsr4[$prefix]
|
||||
);
|
||||
} else {
|
||||
// Append directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
$this->prefixDirsPsr4[$prefix],
|
||||
$paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix,
|
||||
* replacing any others previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param list<string>|string $paths The PSR-0 base directories
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function set($prefix, $paths)
|
||||
{
|
||||
if (!$prefix) {
|
||||
$this->fallbackDirsPsr0 = (array) $paths;
|
||||
} else {
|
||||
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace,
|
||||
* replacing any others previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param list<string>|string $paths The PSR-4 base directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setPsr4($prefix, $paths)
|
||||
{
|
||||
if (!$prefix) {
|
||||
$this->fallbackDirsPsr4 = (array) $paths;
|
||||
} else {
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Turns on searching the include path for class files.
|
||||
*
|
||||
* @param bool $useIncludePath
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setUseIncludePath($useIncludePath)
|
||||
{
|
||||
$this->useIncludePath = $useIncludePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Can be used to check if the autoloader uses the include path to check
|
||||
* for classes.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function getUseIncludePath()
|
||||
{
|
||||
return $this->useIncludePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Turns off searching the prefix and fallback directories for classes
|
||||
* that have not been registered with the class map.
|
||||
*
|
||||
* @param bool $classMapAuthoritative
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setClassMapAuthoritative($classMapAuthoritative)
|
||||
{
|
||||
$this->classMapAuthoritative = $classMapAuthoritative;
|
||||
}
|
||||
|
||||
/**
|
||||
* Should class lookup fail if not found in the current class map?
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isClassMapAuthoritative()
|
||||
{
|
||||
return $this->classMapAuthoritative;
|
||||
}
|
||||
|
||||
/**
|
||||
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
||||
*
|
||||
* @param string|null $apcuPrefix
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setApcuPrefix($apcuPrefix)
|
||||
{
|
||||
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* The APCu prefix in use, or null if APCu caching is not enabled.
|
||||
*
|
||||
* @return string|null
|
||||
*/
|
||||
public function getApcuPrefix()
|
||||
{
|
||||
return $this->apcuPrefix;
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers this instance as an autoloader.
|
||||
*
|
||||
* @param bool $prepend Whether to prepend the autoloader or not
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register($prepend = false)
|
||||
{
|
||||
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
||||
|
||||
if (null === $this->vendorDir) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($prepend) {
|
||||
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
||||
} else {
|
||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||
self::$registeredLoaders[$this->vendorDir] = $this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters this instance as an autoloader.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function unregister()
|
||||
{
|
||||
spl_autoload_unregister(array($this, 'loadClass'));
|
||||
|
||||
if (null !== $this->vendorDir) {
|
||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the given class or interface.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
* @return true|null True if loaded, null otherwise
|
||||
*/
|
||||
public function loadClass($class)
|
||||
{
|
||||
if ($file = $this->findFile($class)) {
|
||||
$includeFile = self::$includeFile;
|
||||
$includeFile($file);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the path to the file where the class is defined.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
*
|
||||
* @return string|false The path if found, false otherwise
|
||||
*/
|
||||
public function findFile($class)
|
||||
{
|
||||
// class map lookup
|
||||
if (isset($this->classMap[$class])) {
|
||||
return $this->classMap[$class];
|
||||
}
|
||||
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
|
||||
return false;
|
||||
}
|
||||
if (null !== $this->apcuPrefix) {
|
||||
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
|
||||
if ($hit) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
$file = $this->findFileWithExtension($class, '.php');
|
||||
|
||||
// Search for Hack files if we are running on HHVM
|
||||
if (false === $file && defined('HHVM_VERSION')) {
|
||||
$file = $this->findFileWithExtension($class, '.hh');
|
||||
}
|
||||
|
||||
if (null !== $this->apcuPrefix) {
|
||||
apcu_add($this->apcuPrefix.$class, $file);
|
||||
}
|
||||
|
||||
if (false === $file) {
|
||||
// Remember that this class does not exist.
|
||||
$this->missingClasses[$class] = true;
|
||||
}
|
||||
|
||||
return $file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the currently registered loaders keyed by their corresponding vendor directories.
|
||||
*
|
||||
* @return array<string, self>
|
||||
*/
|
||||
public static function getRegisteredLoaders()
|
||||
{
|
||||
return self::$registeredLoaders;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $class
|
||||
* @param string $ext
|
||||
* @return string|false
|
||||
*/
|
||||
private function findFileWithExtension($class, $ext)
|
||||
{
|
||||
// PSR-4 lookup
|
||||
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
|
||||
|
||||
$first = $class[0];
|
||||
if (isset($this->prefixLengthsPsr4[$first])) {
|
||||
$subPath = $class;
|
||||
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
||||
$subPath = substr($subPath, 0, $lastPos);
|
||||
$search = $subPath . '\\';
|
||||
if (isset($this->prefixDirsPsr4[$search])) {
|
||||
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
||||
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
||||
if (file_exists($file = $dir . $pathEnd)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-4 fallback dirs
|
||||
foreach ($this->fallbackDirsPsr4 as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 lookup
|
||||
if (false !== $pos = strrpos($class, '\\')) {
|
||||
// namespaced class name
|
||||
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
||||
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
|
||||
} else {
|
||||
// PEAR-like class name
|
||||
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
|
||||
}
|
||||
|
||||
if (isset($this->prefixesPsr0[$first])) {
|
||||
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
|
||||
if (0 === strpos($class, $prefix)) {
|
||||
foreach ($dirs as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 fallback dirs
|
||||
foreach ($this->fallbackDirsPsr0 as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 include paths.
|
||||
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
private static function initializeIncludeClosure()
|
||||
{
|
||||
if (self::$includeFile !== null) {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Scope isolated include.
|
||||
*
|
||||
* Prevents access to $this/self from included files.
|
||||
*
|
||||
* @param string $file
|
||||
* @return void
|
||||
*/
|
||||
self::$includeFile = \Closure::bind(static function($file) {
|
||||
include $file;
|
||||
}, null, null);
|
||||
}
|
||||
}
|
21
wp-content/plugins/web-stories/includes/vendor/composer/LICENSE
vendored
Normal file
21
wp-content/plugins/web-stories/includes/vendor/composer/LICENSE
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
Copyright (c) Nils Adermann, Jordi Boggiano
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is furnished
|
||||
to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
192
wp-content/plugins/web-stories/includes/vendor/composer/autoload_classmap.php
vendored
Normal file
192
wp-content/plugins/web-stories/includes/vendor/composer/autoload_classmap.php
vendored
Normal file
@@ -0,0 +1,192 @@
|
||||
<?php
|
||||
|
||||
// autoload_classmap.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
||||
'Google\\Web_Stories\\AMP\\Canonical_Sanitizer' => $baseDir . '/AMP/Canonical_Sanitizer.php',
|
||||
'Google\\Web_Stories\\AMP\\Integration\\AMP_Story_Sanitizer' => $baseDir . '/AMP/Integration/AMP_Story_Sanitizer.php',
|
||||
'Google\\Web_Stories\\AMP\\Meta_Sanitizer' => $baseDir . '/AMP/Meta_Sanitizer.php',
|
||||
'Google\\Web_Stories\\AMP\\Optimization' => $baseDir . '/AMP/Optimization.php',
|
||||
'Google\\Web_Stories\\AMP\\Output_Buffer' => $baseDir . '/AMP/Output_Buffer.php',
|
||||
'Google\\Web_Stories\\AMP\\Sanitization' => $baseDir . '/AMP/Sanitization.php',
|
||||
'Google\\Web_Stories\\AMP\\Story_Sanitizer' => $baseDir . '/AMP/Story_Sanitizer.php',
|
||||
'Google\\Web_Stories\\AMP\\Tag_And_Attribute_Sanitizer' => $baseDir . '/AMP/Tag_And_Attribute_Sanitizer.php',
|
||||
'Google\\Web_Stories\\AMP\\Traits\\Sanitization_Utils' => $baseDir . '/AMP/Traits/Sanitization_Utils.php',
|
||||
'Google\\Web_Stories\\AMP_Story_Player_Assets' => $baseDir . '/AMP_Story_Player_Assets.php',
|
||||
'Google\\Web_Stories\\AdSense' => $baseDir . '/AdSense.php',
|
||||
'Google\\Web_Stories\\Ad_Manager' => $baseDir . '/Ad_Manager.php',
|
||||
'Google\\Web_Stories\\Admin\\Activation_Notice' => $baseDir . '/Admin/Activation_Notice.php',
|
||||
'Google\\Web_Stories\\Admin\\Admin' => $baseDir . '/Admin/Admin.php',
|
||||
'Google\\Web_Stories\\Admin\\Cross_Origin_Isolation' => $baseDir . '/Admin/Cross_Origin_Isolation.php',
|
||||
'Google\\Web_Stories\\Admin\\Customizer' => $baseDir . '/Admin/Customizer.php',
|
||||
'Google\\Web_Stories\\Admin\\Dashboard' => $baseDir . '/Admin/Dashboard.php',
|
||||
'Google\\Web_Stories\\Admin\\Editor' => $baseDir . '/Admin/Editor.php',
|
||||
'Google\\Web_Stories\\Admin\\Google_Fonts' => $baseDir . '/Admin/Google_Fonts.php',
|
||||
'Google\\Web_Stories\\Admin\\Meta_Boxes' => $baseDir . '/Admin/Meta_Boxes.php',
|
||||
'Google\\Web_Stories\\Admin\\PluginActionLinks' => $baseDir . '/Admin/PluginActionLinks.php',
|
||||
'Google\\Web_Stories\\Admin\\PluginRowMeta' => $baseDir . '/Admin/PluginRowMeta.php',
|
||||
'Google\\Web_Stories\\Admin\\Site_Health' => $baseDir . '/Admin/Site_Health.php',
|
||||
'Google\\Web_Stories\\Admin\\TinyMCE' => $baseDir . '/Admin/TinyMCE.php',
|
||||
'Google\\Web_Stories\\Analytics' => $baseDir . '/Analytics.php',
|
||||
'Google\\Web_Stories\\Assets' => $baseDir . '/Assets.php',
|
||||
'Google\\Web_Stories\\Block\\Web_Stories_Block' => $baseDir . '/Block/Web_Stories_Block.php',
|
||||
'Google\\Web_Stories\\Context' => $baseDir . '/Context.php',
|
||||
'Google\\Web_Stories\\Database_Upgrader' => $baseDir . '/Database_Upgrader.php',
|
||||
'Google\\Web_Stories\\Decoder' => $baseDir . '/Decoder.php',
|
||||
'Google\\Web_Stories\\Demo_Content' => $baseDir . '/Demo_Content.php',
|
||||
'Google\\Web_Stories\\Discovery' => $baseDir . '/Discovery.php',
|
||||
'Google\\Web_Stories\\Embed_Base' => $baseDir . '/Embed_Base.php',
|
||||
'Google\\Web_Stories\\Exception\\FailedToMakeInstance' => $baseDir . '/Exception/FailedToMakeInstance.php',
|
||||
'Google\\Web_Stories\\Exception\\InvalidEventProperties' => $baseDir . '/Exception/InvalidEventProperties.php',
|
||||
'Google\\Web_Stories\\Exception\\InvalidService' => $baseDir . '/Exception/InvalidService.php',
|
||||
'Google\\Web_Stories\\Exception\\SanitizationException' => $baseDir . '/Exception/SanitizationException.php',
|
||||
'Google\\Web_Stories\\Exception\\WebStoriesException' => $baseDir . '/Exception/WebStoriesException.php',
|
||||
'Google\\Web_Stories\\Experiments' => $baseDir . '/Experiments.php',
|
||||
'Google\\Web_Stories\\Font_Post_Type' => $baseDir . '/Font_Post_Type.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Conditional' => $baseDir . '/Infrastructure/Conditional.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Delayed' => $baseDir . '/Infrastructure/Delayed.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\HasMeta' => $baseDir . '/Infrastructure/HasMeta.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\HasRequirements' => $baseDir . '/Infrastructure/HasRequirements.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Injector' => $baseDir . '/Infrastructure/Injector.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Injector\\FallbackInstantiator' => $baseDir . '/Infrastructure/Injector/FallbackInstantiator.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Injector\\InjectionChain' => $baseDir . '/Infrastructure/Injector/InjectionChain.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Injector\\SimpleInjector' => $baseDir . '/Infrastructure/Injector/SimpleInjector.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Instantiator' => $baseDir . '/Infrastructure/Instantiator.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Plugin' => $baseDir . '/Infrastructure/Plugin.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\PluginActivationAware' => $baseDir . '/Infrastructure/PluginActivationAware.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\PluginDeactivationAware' => $baseDir . '/Infrastructure/PluginDeactivationAware.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\PluginUninstallAware' => $baseDir . '/Infrastructure/PluginUninstallAware.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Registerable' => $baseDir . '/Infrastructure/Registerable.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Service' => $baseDir . '/Infrastructure/Service.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\ServiceBasedPlugin' => $baseDir . '/Infrastructure/ServiceBasedPlugin.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\ServiceContainer' => $baseDir . '/Infrastructure/ServiceContainer.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\ServiceContainer\\LazilyInstantiatedService' => $baseDir . '/Infrastructure/ServiceContainer/LazilyInstantiatedService.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\ServiceContainer\\SimpleServiceContainer' => $baseDir . '/Infrastructure/ServiceContainer/SimpleServiceContainer.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\SiteInitializationAware' => $baseDir . '/Infrastructure/SiteInitializationAware.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\SiteRemovalAware' => $baseDir . '/Infrastructure/SiteRemovalAware.php',
|
||||
'Google\\Web_Stories\\Integrations\\AMP' => $baseDir . '/Integrations/AMP.php',
|
||||
'Google\\Web_Stories\\Integrations\\Conditional_Featured_Image' => $baseDir . '/Integrations/Conditional_Featured_Image.php',
|
||||
'Google\\Web_Stories\\Integrations\\Core_Themes_Support' => $baseDir . '/Integrations/Core_Themes_Support.php',
|
||||
'Google\\Web_Stories\\Integrations\\Ezoic' => $baseDir . '/Integrations/Ezoic.php',
|
||||
'Google\\Web_Stories\\Integrations\\Jetpack' => $baseDir . '/Integrations/Jetpack.php',
|
||||
'Google\\Web_Stories\\Integrations\\New_Relic' => $baseDir . '/Integrations/New_Relic.php',
|
||||
'Google\\Web_Stories\\Integrations\\NextGen_Gallery' => $baseDir . '/Integrations/NextGen_Gallery.php',
|
||||
'Google\\Web_Stories\\Integrations\\Plugin_Status' => $baseDir . '/Integrations/Plugin_Status.php',
|
||||
'Google\\Web_Stories\\Integrations\\ShortPixel' => $baseDir . '/Integrations/ShortPixel.php',
|
||||
'Google\\Web_Stories\\Integrations\\Site_Kit' => $baseDir . '/Integrations/Site_Kit.php',
|
||||
'Google\\Web_Stories\\Integrations\\WooCommerce' => $baseDir . '/Integrations/WooCommerce.php',
|
||||
'Google\\Web_Stories\\Interfaces\\Field' => $baseDir . '/Interfaces/Field.php',
|
||||
'Google\\Web_Stories\\Interfaces\\FieldState' => $baseDir . '/Interfaces/FieldState.php',
|
||||
'Google\\Web_Stories\\Interfaces\\FieldStateFactory' => $baseDir . '/Interfaces/FieldStateFactory.php',
|
||||
'Google\\Web_Stories\\Interfaces\\Migration' => $baseDir . '/Interfaces/Migration.php',
|
||||
'Google\\Web_Stories\\Interfaces\\Product_Query' => $baseDir . '/Interfaces/Product_Query.php',
|
||||
'Google\\Web_Stories\\Interfaces\\Renderer' => $baseDir . '/Interfaces/Renderer.php',
|
||||
'Google\\Web_Stories\\KSES' => $baseDir . '/KSES.php',
|
||||
'Google\\Web_Stories\\Locale' => $baseDir . '/Locale.php',
|
||||
'Google\\Web_Stories\\Media\\Base_Color' => $baseDir . '/Media/Base_Color.php',
|
||||
'Google\\Web_Stories\\Media\\Blurhash' => $baseDir . '/Media/Blurhash.php',
|
||||
'Google\\Web_Stories\\Media\\Cropping' => $baseDir . '/Media/Cropping.php',
|
||||
'Google\\Web_Stories\\Media\\Image_Sizes' => $baseDir . '/Media/Image_Sizes.php',
|
||||
'Google\\Web_Stories\\Media\\Media_Source_Taxonomy' => $baseDir . '/Media/Media_Source_Taxonomy.php',
|
||||
'Google\\Web_Stories\\Media\\SVG' => $baseDir . '/Media/SVG.php',
|
||||
'Google\\Web_Stories\\Media\\Types' => $baseDir . '/Media/Types.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Captions' => $baseDir . '/Media/Video/Captions.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Is_Gif' => $baseDir . '/Media/Video/Is_Gif.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Muting' => $baseDir . '/Media/Video/Muting.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Optimization' => $baseDir . '/Media/Video/Optimization.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Poster' => $baseDir . '/Media/Video/Poster.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Trimming' => $baseDir . '/Media/Video/Trimming.php',
|
||||
'Google\\Web_Stories\\Mgid' => $baseDir . '/Mgid.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source' => $baseDir . '/Migrations/Add_Media_Source.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Editor' => $baseDir . '/Migrations/Add_Media_Source_Editor.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Gif_Conversion' => $baseDir . '/Migrations/Add_Media_Source_Gif_Conversion.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Page_Template' => $baseDir . '/Migrations/Add_Media_Source_Page_Template.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Recording' => $baseDir . '/Migrations/Add_Media_Source_Recording.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Source_Image' => $baseDir . '/Migrations/Add_Media_Source_Source_Image.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Source_Video' => $baseDir . '/Migrations/Add_Media_Source_Source_Video.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Video_Optimization' => $baseDir . '/Migrations/Add_Media_Source_Video_Optimization.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Poster_Generation_Media_Source' => $baseDir . '/Migrations/Add_Poster_Generation_Media_Source.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Stories_Caps' => $baseDir . '/Migrations/Add_Stories_Caps.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_VideoPress_Poster_Generation_Media_Source' => $baseDir . '/Migrations/Add_VideoPress_Poster_Generation_Media_Source.php',
|
||||
'Google\\Web_Stories\\Migrations\\Migrate_Base' => $baseDir . '/Migrations/Migrate_Base.php',
|
||||
'Google\\Web_Stories\\Migrations\\Migration_Meta_To_Term' => $baseDir . '/Migrations/Migration_Meta_To_Term.php',
|
||||
'Google\\Web_Stories\\Migrations\\Remove_Broken_Text_Styles' => $baseDir . '/Migrations/Remove_Broken_Text_Styles.php',
|
||||
'Google\\Web_Stories\\Migrations\\Remove_Incorrect_Tracking_Id' => $baseDir . '/Migrations/Remove_Incorrect_Tracking_Id.php',
|
||||
'Google\\Web_Stories\\Migrations\\Remove_Unneeded_Attachment_Meta' => $baseDir . '/Migrations/Remove_Unneeded_Attachment_Meta.php',
|
||||
'Google\\Web_Stories\\Migrations\\Replace_Conic_Style_Presets' => $baseDir . '/Migrations/Replace_Conic_Style_Presets.php',
|
||||
'Google\\Web_Stories\\Migrations\\Rewrite_Flush' => $baseDir . '/Migrations/Rewrite_Flush.php',
|
||||
'Google\\Web_Stories\\Migrations\\Set_Legacy_Analytics_Usage_Flag' => $baseDir . '/Migrations/Set_Legacy_Analytics_Usage_Flag.php',
|
||||
'Google\\Web_Stories\\Migrations\\Unify_Color_Presets' => $baseDir . '/Migrations/Unify_Color_Presets.php',
|
||||
'Google\\Web_Stories\\Migrations\\Update_1' => $baseDir . '/Migrations/Update_1.php',
|
||||
'Google\\Web_Stories\\Migrations\\Update_Publisher_Logos' => $baseDir . '/Migrations/Update_Publisher_Logos.php',
|
||||
'Google\\Web_Stories\\Model\\Story' => $baseDir . '/Model/Story.php',
|
||||
'Google\\Web_Stories\\Page_Template_Post_Type' => $baseDir . '/Page_Template_Post_Type.php',
|
||||
'Google\\Web_Stories\\Plugin' => $baseDir . '/Plugin.php',
|
||||
'Google\\Web_Stories\\PluginFactory' => $baseDir . '/PluginFactory.php',
|
||||
'Google\\Web_Stories\\Post_Type_Base' => $baseDir . '/Post_Type_Base.php',
|
||||
'Google\\Web_Stories\\REST_API\\Embed_Controller' => $baseDir . '/REST_API/Embed_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Font_Controller' => $baseDir . '/REST_API/Font_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Hotlinking_Controller' => $baseDir . '/REST_API/Hotlinking_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Link_Controller' => $baseDir . '/REST_API/Link_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Page_Template_Controller' => $baseDir . '/REST_API/Page_Template_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Products_Controller' => $baseDir . '/REST_API/Products_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Publisher_Logos_Controller' => $baseDir . '/REST_API/Publisher_Logos_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\REST_Controller' => $baseDir . '/REST_API/REST_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Status_Check_Controller' => $baseDir . '/REST_API/Status_Check_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Autosaves_Controller' => $baseDir . '/REST_API/Stories_Autosaves_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Base_Controller' => $baseDir . '/REST_API/Stories_Base_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Controller' => $baseDir . '/REST_API/Stories_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Lock_Controller' => $baseDir . '/REST_API/Stories_Lock_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Media_Controller' => $baseDir . '/REST_API/Stories_Media_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Settings_Controller' => $baseDir . '/REST_API/Stories_Settings_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Taxonomies_Controller' => $baseDir . '/REST_API/Stories_Taxonomies_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Terms_Controller' => $baseDir . '/REST_API/Stories_Terms_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Users_Controller' => $baseDir . '/REST_API/Stories_Users_Controller.php',
|
||||
'Google\\Web_Stories\\Register_Widget' => $baseDir . '/Register_Widget.php',
|
||||
'Google\\Web_Stories\\Remove_Transients' => $baseDir . '/Remove_Transients.php',
|
||||
'Google\\Web_Stories\\Renderer\\Archives' => $baseDir . '/Renderer/Archives.php',
|
||||
'Google\\Web_Stories\\Renderer\\Feed' => $baseDir . '/Renderer/Feed.php',
|
||||
'Google\\Web_Stories\\Renderer\\Oembed' => $baseDir . '/Renderer/Oembed.php',
|
||||
'Google\\Web_Stories\\Renderer\\Single' => $baseDir . '/Renderer/Single.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\Carousel_Renderer' => $baseDir . '/Renderer/Stories/Carousel_Renderer.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldStateFactory\\Factory' => $baseDir . '/Renderer/Stories/FieldStateFactory/Factory.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldState\\BaseFieldState' => $baseDir . '/Renderer/Stories/FieldState/BaseFieldState.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldState\\CarouselView' => $baseDir . '/Renderer/Stories/FieldState/CarouselView.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldState\\CircleView' => $baseDir . '/Renderer/Stories/FieldState/CircleView.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldState\\GridView' => $baseDir . '/Renderer/Stories/FieldState/GridView.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldState\\ListView' => $baseDir . '/Renderer/Stories/FieldState/ListView.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\Fields\\BaseField' => $baseDir . '/Renderer/Stories/Fields/BaseField.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\Generic_Renderer' => $baseDir . '/Renderer/Stories/Generic_Renderer.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\Renderer' => $baseDir . '/Renderer/Stories/Renderer.php',
|
||||
'Google\\Web_Stories\\Renderer\\Story\\Embed' => $baseDir . '/Renderer/Story/Embed.php',
|
||||
'Google\\Web_Stories\\Renderer\\Story\\HTML' => $baseDir . '/Renderer/Story/HTML.php',
|
||||
'Google\\Web_Stories\\Renderer\\Story\\Image' => $baseDir . '/Renderer/Story/Image.php',
|
||||
'Google\\Web_Stories\\Renderer\\Story\\Singleton' => $baseDir . '/Renderer/Story/Singleton.php',
|
||||
'Google\\Web_Stories\\Service_Base' => $baseDir . '/Service_Base.php',
|
||||
'Google\\Web_Stories\\Services' => $baseDir . '/Services.php',
|
||||
'Google\\Web_Stories\\Settings' => $baseDir . '/Settings.php',
|
||||
'Google\\Web_Stories\\Shopping\\Product' => $baseDir . '/Shopping/Product.php',
|
||||
'Google\\Web_Stories\\Shopping\\Product_Meta' => $baseDir . '/Shopping/Product_Meta.php',
|
||||
'Google\\Web_Stories\\Shopping\\Shopify_Query' => $baseDir . '/Shopping/Shopify_Query.php',
|
||||
'Google\\Web_Stories\\Shopping\\Shopping_Vendors' => $baseDir . '/Shopping/Shopping_Vendors.php',
|
||||
'Google\\Web_Stories\\Shopping\\WooCommerce_Query' => $baseDir . '/Shopping/WooCommerce_Query.php',
|
||||
'Google\\Web_Stories\\Shortcode\\Embed_Shortcode' => $baseDir . '/Shortcode/Embed_Shortcode.php',
|
||||
'Google\\Web_Stories\\Shortcode\\Stories_Shortcode' => $baseDir . '/Shortcode/Stories_Shortcode.php',
|
||||
'Google\\Web_Stories\\Stories_Script_Data' => $baseDir . '/Stories_Script_Data.php',
|
||||
'Google\\Web_Stories\\Story_Archive' => $baseDir . '/Story_Archive.php',
|
||||
'Google\\Web_Stories\\Story_Post_Type' => $baseDir . '/Story_Post_Type.php',
|
||||
'Google\\Web_Stories\\Story_Query' => $baseDir . '/Story_Query.php',
|
||||
'Google\\Web_Stories\\Story_Revisions' => $baseDir . '/Story_Revisions.php',
|
||||
'Google\\Web_Stories\\Taxonomy\\Category_Taxonomy' => $baseDir . '/Taxonomy/Category_Taxonomy.php',
|
||||
'Google\\Web_Stories\\Taxonomy\\Tag_Taxonomy' => $baseDir . '/Taxonomy/Tag_Taxonomy.php',
|
||||
'Google\\Web_Stories\\Taxonomy\\Taxonomy_Base' => $baseDir . '/Taxonomy/Taxonomy_Base.php',
|
||||
'Google\\Web_Stories\\Tracking' => $baseDir . '/Tracking.php',
|
||||
'Google\\Web_Stories\\User\\Capabilities' => $baseDir . '/User/Capabilities.php',
|
||||
'Google\\Web_Stories\\User\\Preferences' => $baseDir . '/User/Preferences.php',
|
||||
'Google\\Web_Stories\\Widgets\\Stories' => $baseDir . '/Widgets/Stories.php',
|
||||
'Web_Stories_Compatibility' => $baseDir . '/compat/Web_Stories_Compatibility.php',
|
||||
);
|
10
wp-content/plugins/web-stories/includes/vendor/composer/autoload_files.php
vendored
Normal file
10
wp-content/plugins/web-stories/includes/vendor/composer/autoload_files.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
// autoload_files.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'4fd4eff0e3c3662a20875366933cfd84' => $baseDir . '/polyfills/mbstring.php',
|
||||
);
|
9
wp-content/plugins/web-stories/includes/vendor/composer/autoload_namespaces.php
vendored
Normal file
9
wp-content/plugins/web-stories/includes/vendor/composer/autoload_namespaces.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
// autoload_namespaces.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
);
|
9
wp-content/plugins/web-stories/includes/vendor/composer/autoload_psr4.php
vendored
Normal file
9
wp-content/plugins/web-stories/includes/vendor/composer/autoload_psr4.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
// autoload_psr4.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
);
|
49
wp-content/plugins/web-stories/includes/vendor/composer/autoload_real.php
vendored
Normal file
49
wp-content/plugins/web-stories/includes/vendor/composer/autoload_real.php
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
// autoload_real.php @generated by Composer
|
||||
|
||||
class ComposerAutoloaderInit7332ac3859d2c670778a251896f13cf2
|
||||
{
|
||||
private static $loader;
|
||||
|
||||
public static function loadClassLoader($class)
|
||||
{
|
||||
if ('Google_Web_Stories_Composer\Autoload\ClassLoader' === $class) {
|
||||
require __DIR__ . '/ClassLoader.php';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Google_Web_Stories_Composer\Autoload\ClassLoader
|
||||
*/
|
||||
public static function getLoader()
|
||||
{
|
||||
if (null !== self::$loader) {
|
||||
return self::$loader;
|
||||
}
|
||||
|
||||
spl_autoload_register(array('ComposerAutoloaderInit7332ac3859d2c670778a251896f13cf2', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Google_Web_Stories_Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInit7332ac3859d2c670778a251896f13cf2', 'loadClassLoader'));
|
||||
|
||||
require __DIR__ . '/autoload_static.php';
|
||||
call_user_func(\Google_Web_Stories_Composer\Autoload\ComposerStaticInit7332ac3859d2c670778a251896f13cf2::getInitializer($loader));
|
||||
|
||||
$loader->setClassMapAuthoritative(true);
|
||||
$loader->register(true);
|
||||
|
||||
$filesToLoad = \Google_Web_Stories_Composer\Autoload\ComposerStaticInit7332ac3859d2c670778a251896f13cf2::$files;
|
||||
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
|
||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
||||
|
||||
require $file;
|
||||
}
|
||||
}, null, null);
|
||||
foreach ($filesToLoad as $fileIdentifier => $file) {
|
||||
$requireFile($fileIdentifier, $file);
|
||||
}
|
||||
|
||||
return $loader;
|
||||
}
|
||||
}
|
206
wp-content/plugins/web-stories/includes/vendor/composer/autoload_static.php
vendored
Normal file
206
wp-content/plugins/web-stories/includes/vendor/composer/autoload_static.php
vendored
Normal file
@@ -0,0 +1,206 @@
|
||||
<?php
|
||||
|
||||
// autoload_static.php @generated by Composer
|
||||
|
||||
namespace Google_Web_Stories_Composer\Autoload;
|
||||
|
||||
class ComposerStaticInit7332ac3859d2c670778a251896f13cf2
|
||||
{
|
||||
public static $files = array (
|
||||
'4fd4eff0e3c3662a20875366933cfd84' => __DIR__ . '/../..' . '/polyfills/mbstring.php',
|
||||
);
|
||||
|
||||
public static $classMap = array (
|
||||
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
||||
'Google\\Web_Stories\\AMP\\Canonical_Sanitizer' => __DIR__ . '/../..' . '/AMP/Canonical_Sanitizer.php',
|
||||
'Google\\Web_Stories\\AMP\\Integration\\AMP_Story_Sanitizer' => __DIR__ . '/../..' . '/AMP/Integration/AMP_Story_Sanitizer.php',
|
||||
'Google\\Web_Stories\\AMP\\Meta_Sanitizer' => __DIR__ . '/../..' . '/AMP/Meta_Sanitizer.php',
|
||||
'Google\\Web_Stories\\AMP\\Optimization' => __DIR__ . '/../..' . '/AMP/Optimization.php',
|
||||
'Google\\Web_Stories\\AMP\\Output_Buffer' => __DIR__ . '/../..' . '/AMP/Output_Buffer.php',
|
||||
'Google\\Web_Stories\\AMP\\Sanitization' => __DIR__ . '/../..' . '/AMP/Sanitization.php',
|
||||
'Google\\Web_Stories\\AMP\\Story_Sanitizer' => __DIR__ . '/../..' . '/AMP/Story_Sanitizer.php',
|
||||
'Google\\Web_Stories\\AMP\\Tag_And_Attribute_Sanitizer' => __DIR__ . '/../..' . '/AMP/Tag_And_Attribute_Sanitizer.php',
|
||||
'Google\\Web_Stories\\AMP\\Traits\\Sanitization_Utils' => __DIR__ . '/../..' . '/AMP/Traits/Sanitization_Utils.php',
|
||||
'Google\\Web_Stories\\AMP_Story_Player_Assets' => __DIR__ . '/../..' . '/AMP_Story_Player_Assets.php',
|
||||
'Google\\Web_Stories\\AdSense' => __DIR__ . '/../..' . '/AdSense.php',
|
||||
'Google\\Web_Stories\\Ad_Manager' => __DIR__ . '/../..' . '/Ad_Manager.php',
|
||||
'Google\\Web_Stories\\Admin\\Activation_Notice' => __DIR__ . '/../..' . '/Admin/Activation_Notice.php',
|
||||
'Google\\Web_Stories\\Admin\\Admin' => __DIR__ . '/../..' . '/Admin/Admin.php',
|
||||
'Google\\Web_Stories\\Admin\\Cross_Origin_Isolation' => __DIR__ . '/../..' . '/Admin/Cross_Origin_Isolation.php',
|
||||
'Google\\Web_Stories\\Admin\\Customizer' => __DIR__ . '/../..' . '/Admin/Customizer.php',
|
||||
'Google\\Web_Stories\\Admin\\Dashboard' => __DIR__ . '/../..' . '/Admin/Dashboard.php',
|
||||
'Google\\Web_Stories\\Admin\\Editor' => __DIR__ . '/../..' . '/Admin/Editor.php',
|
||||
'Google\\Web_Stories\\Admin\\Google_Fonts' => __DIR__ . '/../..' . '/Admin/Google_Fonts.php',
|
||||
'Google\\Web_Stories\\Admin\\Meta_Boxes' => __DIR__ . '/../..' . '/Admin/Meta_Boxes.php',
|
||||
'Google\\Web_Stories\\Admin\\PluginActionLinks' => __DIR__ . '/../..' . '/Admin/PluginActionLinks.php',
|
||||
'Google\\Web_Stories\\Admin\\PluginRowMeta' => __DIR__ . '/../..' . '/Admin/PluginRowMeta.php',
|
||||
'Google\\Web_Stories\\Admin\\Site_Health' => __DIR__ . '/../..' . '/Admin/Site_Health.php',
|
||||
'Google\\Web_Stories\\Admin\\TinyMCE' => __DIR__ . '/../..' . '/Admin/TinyMCE.php',
|
||||
'Google\\Web_Stories\\Analytics' => __DIR__ . '/../..' . '/Analytics.php',
|
||||
'Google\\Web_Stories\\Assets' => __DIR__ . '/../..' . '/Assets.php',
|
||||
'Google\\Web_Stories\\Block\\Web_Stories_Block' => __DIR__ . '/../..' . '/Block/Web_Stories_Block.php',
|
||||
'Google\\Web_Stories\\Context' => __DIR__ . '/../..' . '/Context.php',
|
||||
'Google\\Web_Stories\\Database_Upgrader' => __DIR__ . '/../..' . '/Database_Upgrader.php',
|
||||
'Google\\Web_Stories\\Decoder' => __DIR__ . '/../..' . '/Decoder.php',
|
||||
'Google\\Web_Stories\\Demo_Content' => __DIR__ . '/../..' . '/Demo_Content.php',
|
||||
'Google\\Web_Stories\\Discovery' => __DIR__ . '/../..' . '/Discovery.php',
|
||||
'Google\\Web_Stories\\Embed_Base' => __DIR__ . '/../..' . '/Embed_Base.php',
|
||||
'Google\\Web_Stories\\Exception\\FailedToMakeInstance' => __DIR__ . '/../..' . '/Exception/FailedToMakeInstance.php',
|
||||
'Google\\Web_Stories\\Exception\\InvalidEventProperties' => __DIR__ . '/../..' . '/Exception/InvalidEventProperties.php',
|
||||
'Google\\Web_Stories\\Exception\\InvalidService' => __DIR__ . '/../..' . '/Exception/InvalidService.php',
|
||||
'Google\\Web_Stories\\Exception\\SanitizationException' => __DIR__ . '/../..' . '/Exception/SanitizationException.php',
|
||||
'Google\\Web_Stories\\Exception\\WebStoriesException' => __DIR__ . '/../..' . '/Exception/WebStoriesException.php',
|
||||
'Google\\Web_Stories\\Experiments' => __DIR__ . '/../..' . '/Experiments.php',
|
||||
'Google\\Web_Stories\\Font_Post_Type' => __DIR__ . '/../..' . '/Font_Post_Type.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Conditional' => __DIR__ . '/../..' . '/Infrastructure/Conditional.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Delayed' => __DIR__ . '/../..' . '/Infrastructure/Delayed.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\HasMeta' => __DIR__ . '/../..' . '/Infrastructure/HasMeta.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\HasRequirements' => __DIR__ . '/../..' . '/Infrastructure/HasRequirements.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Injector' => __DIR__ . '/../..' . '/Infrastructure/Injector.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Injector\\FallbackInstantiator' => __DIR__ . '/../..' . '/Infrastructure/Injector/FallbackInstantiator.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Injector\\InjectionChain' => __DIR__ . '/../..' . '/Infrastructure/Injector/InjectionChain.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Injector\\SimpleInjector' => __DIR__ . '/../..' . '/Infrastructure/Injector/SimpleInjector.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Instantiator' => __DIR__ . '/../..' . '/Infrastructure/Instantiator.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Plugin' => __DIR__ . '/../..' . '/Infrastructure/Plugin.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\PluginActivationAware' => __DIR__ . '/../..' . '/Infrastructure/PluginActivationAware.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\PluginDeactivationAware' => __DIR__ . '/../..' . '/Infrastructure/PluginDeactivationAware.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\PluginUninstallAware' => __DIR__ . '/../..' . '/Infrastructure/PluginUninstallAware.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Registerable' => __DIR__ . '/../..' . '/Infrastructure/Registerable.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\Service' => __DIR__ . '/../..' . '/Infrastructure/Service.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\ServiceBasedPlugin' => __DIR__ . '/../..' . '/Infrastructure/ServiceBasedPlugin.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\ServiceContainer' => __DIR__ . '/../..' . '/Infrastructure/ServiceContainer.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\ServiceContainer\\LazilyInstantiatedService' => __DIR__ . '/../..' . '/Infrastructure/ServiceContainer/LazilyInstantiatedService.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\ServiceContainer\\SimpleServiceContainer' => __DIR__ . '/../..' . '/Infrastructure/ServiceContainer/SimpleServiceContainer.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\SiteInitializationAware' => __DIR__ . '/../..' . '/Infrastructure/SiteInitializationAware.php',
|
||||
'Google\\Web_Stories\\Infrastructure\\SiteRemovalAware' => __DIR__ . '/../..' . '/Infrastructure/SiteRemovalAware.php',
|
||||
'Google\\Web_Stories\\Integrations\\AMP' => __DIR__ . '/../..' . '/Integrations/AMP.php',
|
||||
'Google\\Web_Stories\\Integrations\\Conditional_Featured_Image' => __DIR__ . '/../..' . '/Integrations/Conditional_Featured_Image.php',
|
||||
'Google\\Web_Stories\\Integrations\\Core_Themes_Support' => __DIR__ . '/../..' . '/Integrations/Core_Themes_Support.php',
|
||||
'Google\\Web_Stories\\Integrations\\Ezoic' => __DIR__ . '/../..' . '/Integrations/Ezoic.php',
|
||||
'Google\\Web_Stories\\Integrations\\Jetpack' => __DIR__ . '/../..' . '/Integrations/Jetpack.php',
|
||||
'Google\\Web_Stories\\Integrations\\New_Relic' => __DIR__ . '/../..' . '/Integrations/New_Relic.php',
|
||||
'Google\\Web_Stories\\Integrations\\NextGen_Gallery' => __DIR__ . '/../..' . '/Integrations/NextGen_Gallery.php',
|
||||
'Google\\Web_Stories\\Integrations\\Plugin_Status' => __DIR__ . '/../..' . '/Integrations/Plugin_Status.php',
|
||||
'Google\\Web_Stories\\Integrations\\ShortPixel' => __DIR__ . '/../..' . '/Integrations/ShortPixel.php',
|
||||
'Google\\Web_Stories\\Integrations\\Site_Kit' => __DIR__ . '/../..' . '/Integrations/Site_Kit.php',
|
||||
'Google\\Web_Stories\\Integrations\\WooCommerce' => __DIR__ . '/../..' . '/Integrations/WooCommerce.php',
|
||||
'Google\\Web_Stories\\Interfaces\\Field' => __DIR__ . '/../..' . '/Interfaces/Field.php',
|
||||
'Google\\Web_Stories\\Interfaces\\FieldState' => __DIR__ . '/../..' . '/Interfaces/FieldState.php',
|
||||
'Google\\Web_Stories\\Interfaces\\FieldStateFactory' => __DIR__ . '/../..' . '/Interfaces/FieldStateFactory.php',
|
||||
'Google\\Web_Stories\\Interfaces\\Migration' => __DIR__ . '/../..' . '/Interfaces/Migration.php',
|
||||
'Google\\Web_Stories\\Interfaces\\Product_Query' => __DIR__ . '/../..' . '/Interfaces/Product_Query.php',
|
||||
'Google\\Web_Stories\\Interfaces\\Renderer' => __DIR__ . '/../..' . '/Interfaces/Renderer.php',
|
||||
'Google\\Web_Stories\\KSES' => __DIR__ . '/../..' . '/KSES.php',
|
||||
'Google\\Web_Stories\\Locale' => __DIR__ . '/../..' . '/Locale.php',
|
||||
'Google\\Web_Stories\\Media\\Base_Color' => __DIR__ . '/../..' . '/Media/Base_Color.php',
|
||||
'Google\\Web_Stories\\Media\\Blurhash' => __DIR__ . '/../..' . '/Media/Blurhash.php',
|
||||
'Google\\Web_Stories\\Media\\Cropping' => __DIR__ . '/../..' . '/Media/Cropping.php',
|
||||
'Google\\Web_Stories\\Media\\Image_Sizes' => __DIR__ . '/../..' . '/Media/Image_Sizes.php',
|
||||
'Google\\Web_Stories\\Media\\Media_Source_Taxonomy' => __DIR__ . '/../..' . '/Media/Media_Source_Taxonomy.php',
|
||||
'Google\\Web_Stories\\Media\\SVG' => __DIR__ . '/../..' . '/Media/SVG.php',
|
||||
'Google\\Web_Stories\\Media\\Types' => __DIR__ . '/../..' . '/Media/Types.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Captions' => __DIR__ . '/../..' . '/Media/Video/Captions.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Is_Gif' => __DIR__ . '/../..' . '/Media/Video/Is_Gif.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Muting' => __DIR__ . '/../..' . '/Media/Video/Muting.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Optimization' => __DIR__ . '/../..' . '/Media/Video/Optimization.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Poster' => __DIR__ . '/../..' . '/Media/Video/Poster.php',
|
||||
'Google\\Web_Stories\\Media\\Video\\Trimming' => __DIR__ . '/../..' . '/Media/Video/Trimming.php',
|
||||
'Google\\Web_Stories\\Mgid' => __DIR__ . '/../..' . '/Mgid.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source' => __DIR__ . '/../..' . '/Migrations/Add_Media_Source.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Editor' => __DIR__ . '/../..' . '/Migrations/Add_Media_Source_Editor.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Gif_Conversion' => __DIR__ . '/../..' . '/Migrations/Add_Media_Source_Gif_Conversion.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Page_Template' => __DIR__ . '/../..' . '/Migrations/Add_Media_Source_Page_Template.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Recording' => __DIR__ . '/../..' . '/Migrations/Add_Media_Source_Recording.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Source_Image' => __DIR__ . '/../..' . '/Migrations/Add_Media_Source_Source_Image.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Source_Video' => __DIR__ . '/../..' . '/Migrations/Add_Media_Source_Source_Video.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Media_Source_Video_Optimization' => __DIR__ . '/../..' . '/Migrations/Add_Media_Source_Video_Optimization.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Poster_Generation_Media_Source' => __DIR__ . '/../..' . '/Migrations/Add_Poster_Generation_Media_Source.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_Stories_Caps' => __DIR__ . '/../..' . '/Migrations/Add_Stories_Caps.php',
|
||||
'Google\\Web_Stories\\Migrations\\Add_VideoPress_Poster_Generation_Media_Source' => __DIR__ . '/../..' . '/Migrations/Add_VideoPress_Poster_Generation_Media_Source.php',
|
||||
'Google\\Web_Stories\\Migrations\\Migrate_Base' => __DIR__ . '/../..' . '/Migrations/Migrate_Base.php',
|
||||
'Google\\Web_Stories\\Migrations\\Migration_Meta_To_Term' => __DIR__ . '/../..' . '/Migrations/Migration_Meta_To_Term.php',
|
||||
'Google\\Web_Stories\\Migrations\\Remove_Broken_Text_Styles' => __DIR__ . '/../..' . '/Migrations/Remove_Broken_Text_Styles.php',
|
||||
'Google\\Web_Stories\\Migrations\\Remove_Incorrect_Tracking_Id' => __DIR__ . '/../..' . '/Migrations/Remove_Incorrect_Tracking_Id.php',
|
||||
'Google\\Web_Stories\\Migrations\\Remove_Unneeded_Attachment_Meta' => __DIR__ . '/../..' . '/Migrations/Remove_Unneeded_Attachment_Meta.php',
|
||||
'Google\\Web_Stories\\Migrations\\Replace_Conic_Style_Presets' => __DIR__ . '/../..' . '/Migrations/Replace_Conic_Style_Presets.php',
|
||||
'Google\\Web_Stories\\Migrations\\Rewrite_Flush' => __DIR__ . '/../..' . '/Migrations/Rewrite_Flush.php',
|
||||
'Google\\Web_Stories\\Migrations\\Set_Legacy_Analytics_Usage_Flag' => __DIR__ . '/../..' . '/Migrations/Set_Legacy_Analytics_Usage_Flag.php',
|
||||
'Google\\Web_Stories\\Migrations\\Unify_Color_Presets' => __DIR__ . '/../..' . '/Migrations/Unify_Color_Presets.php',
|
||||
'Google\\Web_Stories\\Migrations\\Update_1' => __DIR__ . '/../..' . '/Migrations/Update_1.php',
|
||||
'Google\\Web_Stories\\Migrations\\Update_Publisher_Logos' => __DIR__ . '/../..' . '/Migrations/Update_Publisher_Logos.php',
|
||||
'Google\\Web_Stories\\Model\\Story' => __DIR__ . '/../..' . '/Model/Story.php',
|
||||
'Google\\Web_Stories\\Page_Template_Post_Type' => __DIR__ . '/../..' . '/Page_Template_Post_Type.php',
|
||||
'Google\\Web_Stories\\Plugin' => __DIR__ . '/../..' . '/Plugin.php',
|
||||
'Google\\Web_Stories\\PluginFactory' => __DIR__ . '/../..' . '/PluginFactory.php',
|
||||
'Google\\Web_Stories\\Post_Type_Base' => __DIR__ . '/../..' . '/Post_Type_Base.php',
|
||||
'Google\\Web_Stories\\REST_API\\Embed_Controller' => __DIR__ . '/../..' . '/REST_API/Embed_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Font_Controller' => __DIR__ . '/../..' . '/REST_API/Font_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Hotlinking_Controller' => __DIR__ . '/../..' . '/REST_API/Hotlinking_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Link_Controller' => __DIR__ . '/../..' . '/REST_API/Link_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Page_Template_Controller' => __DIR__ . '/../..' . '/REST_API/Page_Template_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Products_Controller' => __DIR__ . '/../..' . '/REST_API/Products_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Publisher_Logos_Controller' => __DIR__ . '/../..' . '/REST_API/Publisher_Logos_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\REST_Controller' => __DIR__ . '/../..' . '/REST_API/REST_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Status_Check_Controller' => __DIR__ . '/../..' . '/REST_API/Status_Check_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Autosaves_Controller' => __DIR__ . '/../..' . '/REST_API/Stories_Autosaves_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Base_Controller' => __DIR__ . '/../..' . '/REST_API/Stories_Base_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Controller' => __DIR__ . '/../..' . '/REST_API/Stories_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Lock_Controller' => __DIR__ . '/../..' . '/REST_API/Stories_Lock_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Media_Controller' => __DIR__ . '/../..' . '/REST_API/Stories_Media_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Settings_Controller' => __DIR__ . '/../..' . '/REST_API/Stories_Settings_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Taxonomies_Controller' => __DIR__ . '/../..' . '/REST_API/Stories_Taxonomies_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Terms_Controller' => __DIR__ . '/../..' . '/REST_API/Stories_Terms_Controller.php',
|
||||
'Google\\Web_Stories\\REST_API\\Stories_Users_Controller' => __DIR__ . '/../..' . '/REST_API/Stories_Users_Controller.php',
|
||||
'Google\\Web_Stories\\Register_Widget' => __DIR__ . '/../..' . '/Register_Widget.php',
|
||||
'Google\\Web_Stories\\Remove_Transients' => __DIR__ . '/../..' . '/Remove_Transients.php',
|
||||
'Google\\Web_Stories\\Renderer\\Archives' => __DIR__ . '/../..' . '/Renderer/Archives.php',
|
||||
'Google\\Web_Stories\\Renderer\\Feed' => __DIR__ . '/../..' . '/Renderer/Feed.php',
|
||||
'Google\\Web_Stories\\Renderer\\Oembed' => __DIR__ . '/../..' . '/Renderer/Oembed.php',
|
||||
'Google\\Web_Stories\\Renderer\\Single' => __DIR__ . '/../..' . '/Renderer/Single.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\Carousel_Renderer' => __DIR__ . '/../..' . '/Renderer/Stories/Carousel_Renderer.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldStateFactory\\Factory' => __DIR__ . '/../..' . '/Renderer/Stories/FieldStateFactory/Factory.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldState\\BaseFieldState' => __DIR__ . '/../..' . '/Renderer/Stories/FieldState/BaseFieldState.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldState\\CarouselView' => __DIR__ . '/../..' . '/Renderer/Stories/FieldState/CarouselView.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldState\\CircleView' => __DIR__ . '/../..' . '/Renderer/Stories/FieldState/CircleView.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldState\\GridView' => __DIR__ . '/../..' . '/Renderer/Stories/FieldState/GridView.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\FieldState\\ListView' => __DIR__ . '/../..' . '/Renderer/Stories/FieldState/ListView.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\Fields\\BaseField' => __DIR__ . '/../..' . '/Renderer/Stories/Fields/BaseField.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\Generic_Renderer' => __DIR__ . '/../..' . '/Renderer/Stories/Generic_Renderer.php',
|
||||
'Google\\Web_Stories\\Renderer\\Stories\\Renderer' => __DIR__ . '/../..' . '/Renderer/Stories/Renderer.php',
|
||||
'Google\\Web_Stories\\Renderer\\Story\\Embed' => __DIR__ . '/../..' . '/Renderer/Story/Embed.php',
|
||||
'Google\\Web_Stories\\Renderer\\Story\\HTML' => __DIR__ . '/../..' . '/Renderer/Story/HTML.php',
|
||||
'Google\\Web_Stories\\Renderer\\Story\\Image' => __DIR__ . '/../..' . '/Renderer/Story/Image.php',
|
||||
'Google\\Web_Stories\\Renderer\\Story\\Singleton' => __DIR__ . '/../..' . '/Renderer/Story/Singleton.php',
|
||||
'Google\\Web_Stories\\Service_Base' => __DIR__ . '/../..' . '/Service_Base.php',
|
||||
'Google\\Web_Stories\\Services' => __DIR__ . '/../..' . '/Services.php',
|
||||
'Google\\Web_Stories\\Settings' => __DIR__ . '/../..' . '/Settings.php',
|
||||
'Google\\Web_Stories\\Shopping\\Product' => __DIR__ . '/../..' . '/Shopping/Product.php',
|
||||
'Google\\Web_Stories\\Shopping\\Product_Meta' => __DIR__ . '/../..' . '/Shopping/Product_Meta.php',
|
||||
'Google\\Web_Stories\\Shopping\\Shopify_Query' => __DIR__ . '/../..' . '/Shopping/Shopify_Query.php',
|
||||
'Google\\Web_Stories\\Shopping\\Shopping_Vendors' => __DIR__ . '/../..' . '/Shopping/Shopping_Vendors.php',
|
||||
'Google\\Web_Stories\\Shopping\\WooCommerce_Query' => __DIR__ . '/../..' . '/Shopping/WooCommerce_Query.php',
|
||||
'Google\\Web_Stories\\Shortcode\\Embed_Shortcode' => __DIR__ . '/../..' . '/Shortcode/Embed_Shortcode.php',
|
||||
'Google\\Web_Stories\\Shortcode\\Stories_Shortcode' => __DIR__ . '/../..' . '/Shortcode/Stories_Shortcode.php',
|
||||
'Google\\Web_Stories\\Stories_Script_Data' => __DIR__ . '/../..' . '/Stories_Script_Data.php',
|
||||
'Google\\Web_Stories\\Story_Archive' => __DIR__ . '/../..' . '/Story_Archive.php',
|
||||
'Google\\Web_Stories\\Story_Post_Type' => __DIR__ . '/../..' . '/Story_Post_Type.php',
|
||||
'Google\\Web_Stories\\Story_Query' => __DIR__ . '/../..' . '/Story_Query.php',
|
||||
'Google\\Web_Stories\\Story_Revisions' => __DIR__ . '/../..' . '/Story_Revisions.php',
|
||||
'Google\\Web_Stories\\Taxonomy\\Category_Taxonomy' => __DIR__ . '/../..' . '/Taxonomy/Category_Taxonomy.php',
|
||||
'Google\\Web_Stories\\Taxonomy\\Tag_Taxonomy' => __DIR__ . '/../..' . '/Taxonomy/Tag_Taxonomy.php',
|
||||
'Google\\Web_Stories\\Taxonomy\\Taxonomy_Base' => __DIR__ . '/../..' . '/Taxonomy/Taxonomy_Base.php',
|
||||
'Google\\Web_Stories\\Tracking' => __DIR__ . '/../..' . '/Tracking.php',
|
||||
'Google\\Web_Stories\\User\\Capabilities' => __DIR__ . '/../..' . '/User/Capabilities.php',
|
||||
'Google\\Web_Stories\\User\\Preferences' => __DIR__ . '/../..' . '/User/Preferences.php',
|
||||
'Google\\Web_Stories\\Widgets\\Stories' => __DIR__ . '/../..' . '/Widgets/Stories.php',
|
||||
'Web_Stories_Compatibility' => __DIR__ . '/../..' . '/compat/Web_Stories_Compatibility.php',
|
||||
);
|
||||
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->classMap = ComposerStaticInit7332ac3859d2c670778a251896f13cf2::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user