🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 21:10:39 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
elementor
/
modules
/
atomic-widgets
/
library
📍 /home/eliteewa/public_html/wp-content/plugins/elementor/modules/atomic-widgets/library
🔄 Refresh
✏️
Editing: grid.php
Writable
<?php namespace Elementor\Modules\AtomicWidgets\Library; use Elementor\Modules\Library\Documents\Library_Document; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Elementor Grid library document. * * Elementor grid library document handler class is responsible for * handling a document of a grid type. * * @since 3.29.0 */ class Grid extends Library_Document { public static function get_properties() { $properties = parent::get_properties(); $properties['support_kit'] = true; return $properties; } /** * Get document name. * * Retrieve the document name. * * @since 2.0.0 * @access public * * @return string Document name. */ public function get_name() { return 'e-grid'; } /** * Get document title. * * Retrieve the document title. * * @since 2.0.0 * @access public * @static * * @return string Document title. */ public static function get_title() { return esc_html__( 'Grid', 'elementor' ); } /** * Get Type * * Return the grid document type. * * @return string */ public static function get_type() { return 'e-grid'; } }
💾 Save Changes
❌ Cancel