PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
dokan-lite
/
includes
/
Widgets
<?php namespace WeDevs\Dokan\Widgets; use WP_Widget; use WeDevs\Dokan\Walkers\Category as CategoryWalker; class ProductCategoryMenu extends WP_Widget { /** * Constructor * * @return void **/ public function __construct() { $widget_ops = array( 'classname' => 'dokan-category-menu', 'description' => __( 'Dokan product category menu', 'dokan-lite' ) ); parent::__construct( 'dokan-category-menu', 'Dokan: Product Category', $widget_ops ); } /** * Outputs the HTML for this widget. * * @param array An array of standard parameters for widgets in this theme * @param array An array of settings for this widget instance * @return void Echoes it's output **/ public function widget( $args, $instance ) { extract( $args, EXTR_SKIP ); $title = apply_filters( 'widget_title', $instance['title'] ); echo $before_widget; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped if ( ! empty( $title ) ) echo $args['before_title'] . $title . $args['after_title']; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?> <div id="cat-drop-stack" class="product-cat-stack-dokan"> <?php $args = apply_filters( 'dokan_category_widget', array( 'hide_empty' => false, 'orderby' => 'name', 'depth' => 3 ) ); $categories = get_terms( 'product_cat', $args ); $args = array( 'taxonomy' => 'product_cat', 'selected_cats' => '' ); $walker = new CategoryWalker(); echo "<ul>"; echo call_user_func_array( array(&$walker, 'walk'), array( $categories, 0, array()) ); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped echo "</ul>"; ?> </div> <?php echo $after_widget; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped } /** * Deals with the settings when they are saved by the admin. Here is * where any validation should be dealt with. * * @param array An array of new settings as submitted by the admin * @param array An array of the previous settings * @return array The validated and (if necessary) amended settings **/ public function update( $new_instance, $old_instance ) { // update logic goes here $updated_instance = $new_instance; return $updated_instance; } /** * Displays the form for this widget on the Widgets page of the WP Admin area. * * @param array An array of the current settings for this widget * @return void Echoes it's output **/ public function form( $instance ) { $instance = wp_parse_args( (array) $instance, array( 'title' => __( 'Product Category', 'dokan-lite' ) ) ); $title = $instance['title']; ?> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title:', 'dokan-lite' ); ?></label> <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /> </p> <?php } }
[+]
..
[-] StoreContactForm.php
[edit]
[-] TopratedProducts.php
[edit]
[-] StoreCategoryMenu.php
[edit]
[-] Manager.php
[edit]
[-] StoreOpenClose.php
[edit]
[-] StoreLocation.php
[edit]
[-] BestSellingProducts.php
[edit]
[-] ProductCategoryMenu.php
[edit]