• File: module.php
  • Full Path: /home/bravrvjk/hpgt.org/wp-content/plugins/wpr-addons-pro/modules/sharing-buttons-pro/module.php
  • Date Modified: 05/28/2025 4:55 AM
  • File size: 500 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
namespace WprAddonsPro\Modules\SharingButtonsPro;

use WprAddonsPro\Base\Module_Base;

class Module extends Module_Base {

	public function __construct() {
		parent::__construct();

		// This is here for extensibility purposes - go to town and make things happen!
	}
	
	public function get_name() {
		return 'wpr-sharing-buttons-pro';
	}

	public function get_widgets() {
		return [
			'Wpr_Sharing_Buttons_Pro', // This should match the widget/element class.
		];
	}
	
}