🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 14:57:54 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
elementor
/
modules
/
atomic-widgets
/
styles
📍 /home/eliteewa/public_html/wp-content/plugins/elementor/modules/atomic-widgets/styles
🔄 Refresh
✏️
Editing: grid-track-renderer.php
Writable
<?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