public function __construct()
 {
     $classname = __CLASS__;
     $description = esc_html__('Display WordPress Starter entries.');
     $id_base = self::ID;
     self::$title = esc_html__('WordPress Starter');
     parent::__construct($classname, $description, $id_base, self::$title);
 }
 public function __construct()
 {
     $classname = __CLASS__;
     $description = esc_html__('A monthly archive of your site\'s testimonials.', 'testimonials-widget');
     $id_base = self::ID;
     self::$title = esc_html__('Testimonials Archives', 'testimonials-widget');
     parent::__construct($classname, $description, $id_base, self::$title);
 }
 public function __construct()
 {
     $classname = __CLASS__;
     $description = esc_html__('A cloud of your most used testimonials\' tags.', 'testimonials-widget');
     $id_base = self::ID;
     self::$title = esc_html__('Testimonials Tag Cloud', 'testimonials-widget');
     parent::__construct($classname, $description, $id_base, self::$title);
 }
 public function __construct()
 {
     $classname = __CLASS__;
     $description = esc_html__('Displays rotating testimonials or statically.', 'testimonials-widget');
     $id_base = self::ID;
     $title = esc_html__('Testimonials Slider', 'testimonials-widget');
     parent::__construct($classname, $description, $id_base, $title);
 }
 public function __construct()
 {
     $classname = __CLASS__;
     $description = esc_html__('Your site\'s most recent testimonials.', 'testimonials-widget');
     $id_base = self::ID;
     self::$title = esc_html__('Recent Testimonials', 'testimonials-widget');
     parent::__construct($classname, $description, $id_base, self::$title);
 }
 public function __construct()
 {
     $classname = __CLASS__;
     $description = esc_html__('A list or dropdown of testimonials\' categories.', 'testimonials-widget');
     $id_base = self::ID;
     self::$title = esc_html__('Testimonials Categories', 'testimonials-widget');
     parent::__construct($classname, $description, $id_base, self::$title);
 }
 public function __construct($classname = null, $description = null, $id_base = null, $title = null)
 {
     $classname = 'Testimonials_Widget_Widget';
     $description = esc_html__('Display testimonials with multiple selection and display options', 'testimonials-widget');
     $id_base = self::ID;
     $title = esc_html__('Testimonials', 'testimonials-widget');
     parent::__construct($classname, $description, $id_base, $title);
 }