PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/tiktechtok.org/wp-content/plugins/widget-importer-exporter/includes/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //home/trave494/tiktechtok.org/wp-content/plugins/widget-importer-exporter/includes/widgets.php |
<?php /** * Widget Functions * * @package Widget_Importer_Exporter * @subpackage Functions * @copyright Copyright (c) 2013 - 2020, ChurchThemes.com, LLC * @link https://churchthemes.com/plugins/widget-importer-exporter/ * @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0-or-later * @since 0.4 */ defined('ABSPATH') || exit; // No direct access. /** * Available widgets * * Gather site's widgets into array with ID base, name, etc. * Used by export and import functions. * * @since 0.4 * @global array $wp_registered_widget_updates * @return array Widget information */ function wie_available_widgets() { global $wp_registered_widget_controls; $widget_controls = $wp_registered_widget_controls; $available_widgets = array(); foreach ($widget_controls as $widget) { // No duplicates. if (! empty( $widget['id_base'] ) && ! isset( $available_widgets[ $widget['id_base'] ] )) { $available_widgets[ $widget['id_base'] ]['id_base'] = $widget['id_base']; $available_widgets[ $widget['id_base'] ]['name'] = $widget['name']; } } return apply_filters( 'wie_available_widgets', $available_widgets ); }