/**
  * Get information about all premium plugins.
  * This file is created automatically at build. Do not edit!
  *
  * @return array[]
  */
 protected static function _get_all_product_info()
 {
     $all_product_info = array();
     $data_file = WPGlobus::data_path() . '/wpglobus-product-info.json';
     if (is_readable($data_file)) {
         $all_product_info_json = file_get_contents($data_file);
         $all_product_info = json_decode($all_product_info_json, true);
     }
     return $all_product_info;
 }