Files
dostavka_vodi/wp-content/plugins/!clearfy/admin/pages/class-pages-widgets.php
User A0264400 a766acdc90 first commit
2026-04-01 23:20:16 +03:00

197 lines
5.6 KiB
PHP

<?php
/**
* The page Settings.
*
* @since 1.0.0
*/
// Exit if accessed directly
if( !defined('ABSPATH') ) {
exit;
}
class WCL_WidgetsPage extends WCL_Page {
/**
* The id of the page in the admin menu.
*
* Mainly used to navigate between pages.
* @see FactoryPages480_AdminPage
*
* @since 1.0.0
* @var string
*/
public $id = "widgets";
public $page_parent_page = "advanced";
public $page_menu_dashicon = 'dashicons-networking';
public $available_for_multisite = true;
/**
* @param WCL_Plugin $plugin
*/
public function __construct(WCL_Plugin $plugin)
{
$this->menu_title = __('Widgets', 'clearfy');
$this->page_menu_short_description = __('Disable unused widgets', 'clearfy');
parent::__construct($plugin);
$this->plugin = $plugin;
}
/**
* Permalinks options.
*
* @return mixed[]
* @since 1.0.0
*/
public function getPageOptions()
{
$options = array();
$options[] = array(
'type' => 'html',
'html' => '<div class="wbcr-factory-page-group-header">' . __('<strong>Disable unused widgets</strong>.', 'clearfy') . '<p>' . __('Some widgets, such as the Calendar or Tag Cloud, create an extra query to the database, even if they are not displayed on the website. Of course, a couple of hits to the database will not do much harm to the whole site. However, if the resource contains a huge amount of content, and the speed of its work above all else, disabling unused functionality is the first step to optimizing and accelerating it.', 'clearfy') . '</p></div>'
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_page',
'title' => __('Remove the "Pages" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_calendar',
'title' => __('Remove calendar widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_tag_cloud',
'title' => __('Remove the "Cloud of tags" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_archives',
'title' => __('Remove the "Archives" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_links',
'title' => __('Remove the "Links" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_meta',
'title' => __('Remove the "Meta" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_search',
'title' => __('Remove the "Search" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_text',
'title' => __('Remove the "Text" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_categories',
'title' => __('Remove the "Categories" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_recent_posts',
'title' => __('Remove the "Recent Posts" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_recent_comments',
'title' => __('Remove the "Recent Comments" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_rss',
'title' => __('Remove the "RSS" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_menu',
'title' => __('Remove the "Menu" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$options[] = array(
'type' => 'checkbox',
'way' => 'buttons',
'name' => 'remove_unneeded_widget_twenty_eleven_ephemera',
'title' => __('Remove the "Twenty Eleven Ephemera" widget', 'clearfy'),
'layout' => array('hint-type' => 'icon', 'hint-icon-color' => 'grey'),
'default' => false
);
$form_options = array();
$form_options[] = array(
'type' => 'form-group',
'items' => $options,
//'cssClass' => 'postbox'
);
return apply_filters('wbcr_clr_widgets_form_options', $form_options, $this);
}
}