00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Install_Model_Installer_Env extends Mage_Install_Model_Installer_Abstract
00035 {
00036 public function __construct() {}
00037
00038 public function install()
00039 {
00040 if (!$this->_checkPhpExtensions()) {
00041 throw new Exception();
00042 }
00043 return $this;
00044 }
00045
00046 protected function _checkPhpExtensions()
00047 {
00048 $res = true;
00049 $config = Mage::getSingleton('install/config')->getExtensionsForCheck();
00050 foreach ($config as $extension => $info) {
00051 if (!empty($info) && is_array($info)) {
00052 $res = $this->_checkExtension($info) && $res;
00053 }
00054 else {
00055 $res = $this->_checkExtension($extension) && $res;
00056 }
00057 }
00058 return $res;
00059 }
00060
00061 protected function _checkExtension($extension)
00062 {
00063 if (is_array($extension)) {
00064 $oneLoaded = false;
00065 foreach ($extension as $item) {
00066 if (extension_loaded($item)) {
00067 $oneLoaded = true;
00068 }
00069 }
00070
00071 if (!$oneLoaded) {
00072 Mage::getSingleton('install/session')->addError(
00073 Mage::helper('install')->__('One from PHP Extensions "%s" must be loaded', implode(',', $extension))
00074 );
00075 return false;
00076 }
00077 }
00078 elseif(!extension_loaded($extension)) {
00079 Mage::getSingleton('install/session')->addError(
00080 Mage::helper('install')->__('PHP Extension "%s" must be loaded', $extension)
00081 );
00082 return false;
00083 }
00084 else {
00085
00086
00087
00088 }
00089 return true;
00090 }
00091 }