Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
wp-content
/
plugins
/
elementor
/
modules
/
atomic-widgets
/
styles
✏️
Editing: grid-track-renderer.php
<?php namespace Elementor\Modules\AtomicWidgets\Styles; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Grid_Track_Renderer { public const GRID_TRACK_PROPERTIES = [ 'grid-template-columns', 'grid-template-rows' ]; public static function is_grid_track_property( ?string $css_property ): bool { return in_array( $css_property, self::GRID_TRACK_PROPERTIES, true ); } public static function format_repeat( int $count ): ?string { if ( $count < 1 ) { return null; } return "repeat({$count}, 1fr)"; } }
💾 Save Changes
❌ Cancel