Файловый менеджер - Редактировать - /var/www/portal.bdu.ac.bd/public_html/wp-content/plugins/magazine-blocks/includes/ScriptStyle.php
Назад
<?php /** * Register and enqueue scripts for plugin. * * @since 1.0.0 * @package Magazine Blocks */ namespace MagazineBlocks; defined( 'ABSPATH' ) || exit; use MagazineBlocks\Traits\Singleton; /** * Register and enqueue scripts for plugin. * * @since 1.0.0 */ class ScriptStyle { use Singleton; /** * Scripts. * * @var array */ private $scripts = array(); /** * Styles. * * @var array */ private $styles = array(); /** * Localized scripts. * * @var array */ private $localized_scripts = array(); /** * Setting. * * @var \MagazineBlocks\Setting */ private $setting; /** * Constructor. */ protected function __construct() { $this->setting = new Setting(); $this->init_hooks(); } /** * Initialize hooks. * * @since 1.0.0 */ private function init_hooks() { add_action( 'init', array( $this, 'after_wp_init' ) ); add_action( 'init', array( $this, 'register_scripts_styles' ), 11 ); add_filter( 'wp_handle_upload', function( $upload ) { delete_transient( '_magazine_blocks_media_items' ); return $upload; } ); add_action( 'wp_head', function() { printf( '<script>window._MAGAZINE_BLOCKS_WEBPACK_PUBLIC_PATH_ = "%s"</script>', esc_url( MAGAZINE_BLOCKS_DIST_DIR_URL . '/' ) ); } ); add_action( 'enqueue_block_editor_assets', array( $this, 'localize_block_scripts' ) ); add_action( 'admin_enqueue_scripts', array( $this, 'localize_admin_scripts' ) ); } /** * Get asset url. * * @param string $filename Asset filename. * @param boolean $dev Has dev url. * @return string */ private function get_asset_url( $filename, $dev = true ) { $path = plugins_url( 'dist/', MAGAZINE_BLOCKS_PLUGIN_FILE ); if ( $dev && magazine_blocks_is_development() ) { $path = 'http://localhost:3000/dist/'; } return $path . $filename; } /** * After WP init. * * @return void */ public function after_wp_init() { $blocks_asset = $this->get_asset_file( 'blocks' ); $dashboard_asset = $this->get_asset_file( 'dashboard' ); $frontend_asset = $this->get_asset_file( 'frontend' ); $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; $this->scripts = array( 'blocks' => array( 'src' => $this->get_asset_url( "blocks$suffix.js", false ), 'deps' => $blocks_asset['dependencies'], 'version' => $blocks_asset['version'], 'i18n' => true, ), 'admin' => array( 'src' => $this->get_asset_url( "dashboard$suffix.js" ), 'deps' => $dashboard_asset['dependencies'], 'version' => $dashboard_asset['version'], 'i18n' => true, ), 'frontend-utils' => array( 'src' => $this->get_asset_url( "frontend$suffix.js", false ), 'deps' => array(), 'version' => MAGAZINE_BLOCKS_VERSION, ), 'frontend-common' => array( 'src' => $this->get_asset_url( "common$suffix.js", false ), 'deps' => array( 'magazine-blocks-frontend-utils' ), 'version' => MAGAZINE_BLOCKS_VERSION, ), ); foreach ( array( 'featured-posts', ) as $view_script ) { $this->scripts[ "frontend-$view_script" ] = array( 'src' => $this->get_asset_url( "$view_script$suffix.js", false ), 'deps' => array( 'magazine-blocks-frontend-common' ), 'version' => MAGAZINE_BLOCKS_VERSION, ); } $this->styles = array( 'blocks' => array( 'src' => $this->get_asset_url( 'style-blocks.css', false ), 'version' => $blocks_asset['version'], 'deps' => array(), ), 'blocks-editor' => array( 'src' => $this->get_asset_url( 'blocks.css', false ), 'version' => $blocks_asset['version'], 'deps' => array(), ), ); wp_enqueue_script( 'magazine-blocks-slider', plugins_url( '/assets/js/customSlider.js', MAGAZINE_BLOCKS_PLUGIN_FILE ), $blocks_asset['dependencies'], MAGAZINE_BLOCKS_VERSION, true ); wp_enqueue_script( 'magazine-blocks-news-ticker', plugins_url( '/assets/js/mzb.js', MAGAZINE_BLOCKS_PLUGIN_FILE ), $blocks_asset['dependencies'], MAGAZINE_BLOCKS_VERSION, true ); // wp_enqueue_script( // 'magazine-blocks-splide-slider', // plugins_url( '/assets/js/frontend.js', MAGAZINE_BLOCKS_PLUGIN_FILE ), // $blocks_asset['dependencies'], // MAGAZINE_BLOCKS_VERSION, // true // ); wp_enqueue_script( 'magazine-blocks-frontend', plugins_url( '/dist/frontend.js', MAGAZINE_BLOCKS_PLUGIN_FILE ), array( 'wp-dom-ready' ), MAGAZINE_BLOCKS_VERSION, true ); } /** * Get all media items. * * @return array */ private function get_media_items() { $media_items = get_transient( '_magazine_blocks_media_items' ); if ( empty( $media_items ) ) { $media_items = array_map( function( $item ) { $item = (array) $item; $item['media_details'] = wp_get_attachment_metadata( $item['ID'] ); $item['alt_text'] = get_post_meta( $item['ID'], '_wp_attachment_image_alt', true ); $item['mime_type'] = $item['post_mime_type']; $item['source_url'] = wp_get_attachment_url( $item['ID'] ); return $item; }, get_posts( array( 'post_type' => 'attachment', 'post_status' => 'inherit', 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', ) ) ); set_transient( '_magazine_blocks_media_items', $media_items, DAY_IN_SECONDS ); } return $media_items; } /** * Register scripts. * * @return void */ public function register_scripts() { foreach ( $this->scripts as $handle => $script ) { wp_register_script( "magazine-blocks-$handle", $script['src'], $script['deps'], $script['version'], true ); if ( isset( $script['i18n'] ) && $script['i18n'] ) { wp_set_script_translations( "magazine-blocks-$handle", 'magazine-blocks', MAGAZINE_BLOCKS_LANGUAGES ); } } } /** * Register styles. * * @return void */ public function register_styles() { foreach ( $this->styles as $handle => $style ) { wp_register_style( "magazine-blocks-$handle", $style['src'], $style['deps'], $style['version'] ); } } /** * Register scripts and styles for plugin. * * @since 1.0.0 */ public function register_scripts_styles() { $this->register_scripts(); $this->register_styles(); } /** * Get asset file * * @param string $prefix Filename prefix. * @return array|mixed */ private function get_asset_file( string $prefix ) { $asset_file = dirname( MAGAZINE_BLOCKS_PLUGIN_FILE ) . "/dist/$prefix.asset.php"; return file_exists( $asset_file ) ? include $asset_file : array( 'dependencies' => array(), 'version' => MAGAZINE_BLOCKS_VERSION, ); } /** * Localize block scripts. * * @return void */ public function localize_admin_scripts() { if ( ! function_exists( 'get_plugins' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } if ( ! function_exists( 'wp_get_themes' ) ) { require_once ABSPATH . 'wp-admin/includes/theme.php'; } $installed_plugin_slugs = array_keys( get_plugins() ); $allowed_plugin_slugs = array( 'everest-forms/everest-forms.php', 'user-registration/user-registration.php', 'learning-management-system/lms.php', 'blockart-blocks/blockart.php', ); $installed_theme_slugs = array_keys( wp_get_themes() ); $current_theme = get_stylesheet(); $localized_scripts = apply_filters( 'magazine_blocks_localize_admin_scripts', array( 'name' => '_MAGAZINE_BLOCKS_DASHBOARD_', 'data' => array( 'version' => MAGAZINE_BLOCKS_VERSION, 'plugins' => array_reduce( $allowed_plugin_slugs, function( $acc, $curr ) use ( $installed_plugin_slugs ) { if ( in_array( $curr, $installed_plugin_slugs, true ) ) { if ( is_plugin_active( $curr ) ) { $acc[ $curr ] = 'active'; } else { $acc[ $curr ] = 'inactive'; } } else { $acc[ $curr ] = 'not-installed'; } return $acc; }, array() ), 'themes' => array( 'zakra' => strpos( $current_theme, 'zakra' ) !== false ? 'active' : ( in_array( 'zakra', $installed_theme_slugs, true ) ? 'inactive' : 'not-installed' ), 'colormag' => strpos( $current_theme, 'colormag' ) !== false || strpos( $current_theme, 'colormag-pro' ) !== false ? 'active' : ( in_array( 'colormag', $installed_theme_slugs, true ) || in_array( 'colormag-pro', $installed_theme_slugs, true ) ? 'inactive' : 'not-installed' ), ), 'adminUrl' => admin_url(), 'googleFonts' => $this->get_google_fonts(), ), ) ); wp_localize_script( 'magazine-blocks-admin', $localized_scripts['name'], $localized_scripts['data'] ); } /** * Localize block scripts. * * @return void */ public function localize_block_scripts() { global $pagenow; $localized_scripts = apply_filters( 'magazine_blocks_localize_block_scripts', array( 'name' => '_MAGAZINE_BLOCKS_', 'data' => array( 'isNotPostEditor' => 'widgets.php' === $pagenow || 'customize.php' === $pagenow, 'isWP59OrAbove' => is_wp_version_compatible( '5.9' ), 'temperature' => Helper::show_temp(), 'weather' => Helper::show_weather(), 'location' => Helper::show_location(), 'apiKey' => get_option( 'dateWeatherApiKey' ), 'postalCode' => get_option( 'dateWeatherZipCode' ), 'nonce' => wp_create_nonce( '_magazine_blocks_nonce' ), 'ajaxUrl' => admin_url( 'admin-ajax.php' ), 'mediaItems' => $this->get_media_items(), 'configs' => magazine_blocks_array_except( $this->setting->get(), array( 'asset-generation', 'performance.local-google-fonts', 'performance.preload-local-fonts', 'editor.responsive-breakpoints', ) ), 'googleFonts' => $this->get_google_fonts(), ), ) ); wp_localize_script( 'magazine-blocks-blocks', $localized_scripts['name'], $localized_scripts['data'] ); } /** * Get google fonts. * * @return array */ protected function get_google_fonts() { $google_fonts_json = MAGAZINE_BLOCKS_PLUGIN_DIR . '/assets/json/google-fonts.json'; if ( ! file_exists( $google_fonts_json ) ) { return array(); } ob_start(); include $google_fonts_json; $google_fonts = json_decode( ob_get_clean(), true ); return $google_fonts; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.3-4ubuntu2.28 | Генерация страницы: 0.02 |
proxy
|
phpinfo
|
Настройка