whoami7 - Manager
:
/
home
/
rattkxnv
/
fitwithiit.com
/
wp-content
/
plugins
/
web-stories
/
includes
/
Upload File:
files >> //home/rattkxnv/fitwithiit.com/wp-content/plugins/web-stories/includes/AMP_Story_Player_Assets.php
<?php /** * Class AMP_Story_Player_Assets. * * @link https://github.com/googleforcreators/web-stories-wp * * @copyright 2020 Google LLC * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 */ /** * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ declare(strict_types = 1); namespace Google\Web_Stories; use Google\Web_Stories\Infrastructure\Registerable; use Google\Web_Stories\Infrastructure\Service; use WP_Scripts; use WP_Styles; /** * Class AMP_Story_Player_Assets */ class AMP_Story_Player_Assets implements Service, Registerable { /** * Script handle. */ public const SCRIPT_HANDLE = 'standalone-amp-story-player'; /** * Runs on instantiation. * * @since 1.8.0 */ public function register(): void { add_action( 'wp_default_styles', [ $this, 'register_style' ] ); add_action( 'wp_default_scripts', [ $this, 'register_script' ] ); } /** * Registers the amp player style. * * @since 1.8.0 * * @param WP_Styles $wp_styles WP_Styles instance. */ public function register_style( WP_Styles $wp_styles ): void { $wp_styles->add( self::SCRIPT_HANDLE, 'https://cdn.ampproject.org/amp-story-player-v0.css', [], 'v0' ); } /** * Registers the amp player script. * * @since 1.8.0 * * @param WP_Scripts $wp_scripts WP_Scripts instance. */ public function register_script( WP_Scripts $wp_scripts ): void { $wp_scripts->add( self::SCRIPT_HANDLE, 'https://cdn.ampproject.org/amp-story-player-v0.js', [], 'v0', false ); } }
Copyright ©2021 || Defacer Indonesia