Merge pull request #3004 from sgladstone/master
[civicrm-core.git] / CRM / Extension / Browser.php
index 70eaba90b627507b15387f45b6976c45bf8c61da..49295c940fc1732e48c385306d3eb44c28802d01 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.3                                                |
+ | CiviCRM version 4.5                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -30,7 +30,7 @@
  * system.
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
  *
  */
@@ -217,29 +217,29 @@ class CRM_Extension_Browser {
       return array();
     }
 
+    $exts = array();
     list ($status, $extdir) = CRM_Utils_HttpClient::singleton()->get($this->getRepositoryUrl() . $this->indexPath);
     if ($extdir === FALSE || $status !== CRM_Utils_HttpClient::STATUS_OK) {
       CRM_Core_Session::setStatus(ts('The CiviCRM public extensions directory at %1 could not be contacted - please check your webserver can make external HTTP requests or contact CiviCRM team on <a href="http://forum.civicrm.org/">CiviCRM forum</a>.<br />', array(1 => $this->getRepositoryUrl())), ts('Connection Error'), 'error');
-    }
-
-    $lines = explode("\n", $extdir);
-
-    foreach ($lines as $ln) {
-      if (preg_match("@\<li\>(.*)\</li\>@i", $ln, $out)) {
-        // success
-        $extsRaw[] = $out;
-        $key = strip_tags($out[1]);
-        if (substr($key, -4) == '.xml') {
-          $exts[] = array('key' => substr($key, 0, -4));
+    } else {
+      $lines = explode("\n", $extdir);
+
+      foreach ($lines as $ln) {
+        if (preg_match("@\<li\>(.*)\</li\>@i", $ln, $out)) {
+          // success
+          $extsRaw[] = $out;
+          $key = strip_tags($out[1]);
+          if (substr($key, -4) == '.xml') {
+            $exts[] = array('key' => substr($key, 0, -4));
+          }
         }
       }
     }
 
+    // CRM-13141 There may not be any compatible extensions available for the requested CiviCRM version + CMS. If so, $extdir is empty so just return a notification.
     if (empty($exts)) {
-      if ($extdir !== FALSE) {
-        CRM_Core_Session::setStatus(ts('Could not retrieve a list of extensions from the CiviCRM public directory at %1 - please contact CiviCRM team on <a href="http://forum.civicrm.org/">CiviCRM forum</a>.<br />', array(1 => $this->getRepositoryUrl())), ts('Failed Fetching List'), 'error');
-      }
-      $exts = array();
+      $config = CRM_Core_Config::singleton();
+      CRM_Core_Session::setStatus(ts('There are currently no extensions on the CiviCRM public extension directory which are compatible with version %2 (<a href="%1">requested extensions from here</a>). If you want to install an extension which is not marked as compatible, you may be able to <a href="%3">download and install extensions manually</a> (depending on access to your web server).<br />', array(1 => $this->getRepositoryUrl(), 2 => $config->civiVersion, 3 => 'http://wiki.civicrm.org/confluence/display/CRMDOC/Extensions')), ts('No Extensions Available for this Version'), 'info');
     }
 
     ini_restore('allow_url_fopen');
@@ -300,4 +300,4 @@ class CRM_Extension_Browser {
     return;
   }
 
-}
\ No newline at end of file
+}