golden hour
/home/phakp/public_html/wp/wp-content/themes/neve/inc/core/styles
⬆️ Go Up
Upload
File/Folder
Size
Actions
css_prop.php
5.99 KB
Del
OK
dynamic_selector.php
5.95 KB
Del
OK
frontend.php
20.92 KB
Del
OK
generator.php
1.77 KB
Del
OK
gutenberg.php
8.54 KB
Del
OK
Edit: generator.php
<?php /** * Style generator based on settings. * * @package Neve\Core\Styles */ namespace Neve\Core\Styles; use Neve\Core\Settings\Config; use Neve\Core\Settings\Mods; use PHPUnit\Util\Type; /** * Class Generator * * @package Neve\Core\Styles */ class Generator { /** * Subscriber list used for CSS generation. * * @var array Subscriber list. */ protected $_subscribers = []; const SUBSCRIBER_TYPE = 'type'; const SUBSCRIBER_MAP = 'map'; const SUBSCRIBER_KEY = 'key'; const SUBSCRIBER_DEFAULTS = 'defaults'; /** * Current context. * * @var null */ protected $context = null; /** * Generate the dynamic CSS. * * @param bool $echo Should we write it or return it. * * @return string|void Css output. */ public function generate( $echo = false ) { $desktop_css = ''; $tablet_css = ''; $all_css = ''; $this->_subscribers = array_merge( $this->_subscribers, apply_filters( 'neve_style_subscribers', [] ) ); if ( $this->context === null ) { $this->context = Dynamic_Selector::CONTEXT_FRONTEND; } /** * Neve try to build the CSS as mobile first. * Based on this fact, the general CSS is considere the mobile one. */ $dynamic_selectors = new Dynamic_Selector( $this->_subscribers, $this->context ); $all_css .= $dynamic_selectors->for_mobile(); $tablet_css .= $dynamic_selectors->for_tablet(); $desktop_css .= $dynamic_selectors->for_desktop(); if ( ! empty( $tablet_css ) ) { $all_css .= sprintf( '@media(min-width: 576px){ %s }', $tablet_css ); } if ( ! empty( $desktop_css ) ) { $all_css .= sprintf( '@media(min-width: 960px){ %s }', $desktop_css ); } if ( ! $echo ) { return $all_css; } echo $all_css; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } }
Save