/
home
/
cabinetdhs
/
www
/
wp-content
/
plugins
/
anywhere-elementor-pro
/
includes
/
modules
/
acf-gallery
/
skins
/
Upload File
HOME
<?php namespace Aepro\Modules\AcfGallery\Skins; use Elementor\Widget_Base; use Elementor\Controls_Manager; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Skin_Grid extends Skin_Base { public function get_id() { return 'grid'; } public function get_title() { return __( 'Grid', 'ae-pro' ); } public function register_controls( Widget_Base $widget ) { $this->parent = $widget; parent::field_control(); parent::grid_view(); } public function render() { // TODO: Implement render() method. parent::grid_html(); } public function register_style_controls() { parent::grid_style_control(); } public function register_overlay_controls() { parent::grid_overlay_controls(); } public function register_overlay_style_controls() { parent::grid_overlay_style_control(); } }