コード例 #1
0
ファイル: Lister.php プロジェクト: featherbb/featherbb
 /**
  * Get all official plugins using GitHub API
  */
 public static function getOfficialPlugins()
 {
     $plugins = array();
     // Get the official list from the website
     $content = json_decode(AdminUtils::get_content('http://featherbb.org/plugins.json'));
     // If internet is available
     if (!is_null($content)) {
         foreach ($content as $plugin) {
             // Get information from each repo
             // TODO: cache
             $plugins[] = json_decode(AdminUtils::get_content('https://raw.githubusercontent.com/featherbb/' . $plugin . '/master/featherbb.json'));
         }
     }
     return $plugins;
 }