/**
  * Initializes the plugin object and returns its instance
  *
  * @since 1.0.0
  *
  * @access public
  * @return object The plugin object instance
  */
 public static function get_instance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }