File: /home/frenchy/refonte2023/wordpress/wp-content/plugins/ova-doc/inc/class-ova-register-sidebar.php
<?php
if ( !defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists('OVADOC_Sidebar') ) {
class OVADOC_Sidebar {
public function __construct() {
add_action( 'widgets_init', array( $this, 'ova_register_sidebar' ) );
}
public function ova_register_sidebar() {
$args = array(
'name' => esc_html__( 'Document Sidebar ', 'ova-doc' ),
'id' => 'ova-doc-sidebar',
'description' => esc_html__( 'Document Sidebar', 'ova-doc' ),
'class' => '',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>',
);
register_sidebar( $args );
}
}
new OVADOC_Sidebar();
}