File "widgets.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/widgets.php
File size: 2.29 KB
MIME-type: text/x-php
Charset: utf-8

<?php
$widgets_all         = \ElementsKit_Lite\Config\Widget_List::instance()->get_list();
$widgets_active      = \ElementsKit_Lite\Config\Widget_List::instance()->get_list( 'active' );
$widgets_categorized = array();
foreach ( $widgets_all as $key => $row ) {
	$widgets_categorized[ ( $row['widget-category'] ?? 'general' ) ][ $key ] = $row;
}

// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Checking current page type. The page only can access admin. So nonce verification is not required.
$widget_css_class = isset( $_GET['ekit-onboard-steps'] ) && $_GET['ekit-onboard-steps'] == 'loaded' ? 'ekit-admin-widgets-container' : 'ekit-admin-widget-list';
?>
<!-- this blank input is for empty form submission -->
<input checked="checked" type="checkbox" value="_null" style="display:none" name="widget_list[]" >

<div class="ekit-admin-fields-container <?php echo esc_attr( $widget_css_class ) ?>">
	<span class="ekit-admin-fields-container-description"><?php esc_html_e( 'You can disable the elements you are not using on your site. That will disable all associated assets of those widgets to improve your site loading speed.', 'elementskit-lite' ); ?></span>

	<div class="ekit-admin-fields-container-fieldset">
		<?php foreach ( $widgets_categorized as $widget_category => $widgets ) : ?>
			<h2 class="ekit-widget-group-title"><?php echo esc_html( ucwords( str_replace( '-', ' ', $widget_category ) ) ); ?></h2>
			<div class="attr-row">
				<?php foreach ( $widgets as $widget => $widget_config ) : ?>
				<div class="attr-col-md-6 attr-col-lg-3"  <?php echo ( $widget_config['package'] != 'pro-disabled' ? '' : 'data-attr-toggle="modal" data-target="#elementskit_go_pro_modal"' ); ?>>
					<?php
						$this->utils->input(
							array(
								'type'    => 'switch',
								'name'    => 'widget_list[]',
								'label'   => esc_html( $widget_config['title'] ),
								'value'   => $widget,
								'attr'    => ( $widget_config['package'] != 'pro-disabled' ? array() : array( 'disabled' => 'disabled' ) ),
								'class'   => 'ekit-content-type-' . esc_attr( $widget_config['package'] ),
								'options' => array(
									'checked' => ( isset( $widgets_active[ $widget ] ) ? true : false ),
								),
							)
						);
					?>
				</div>
				<?php endforeach; ?>
			</div>
		<?php endforeach; ?>
	</div>
</div>