* @author Shohei Nakajima * @link http://www.netcommons.org NetCommons Project * @license http://www.netcommons.org/license.txt NetCommons License * @copyright Copyright 2014, NetCommons Project */ App::uses('InstallAppTask', 'Install.Console/Command'); App::uses('InstallValidatorUtil', 'Install.Utility'); /** * Installのパーミッション設定 * * @author Shohei Nakajima * @package NetCommons\Install\Console\Command */ class CheckLibVersionTask extends InstallAppTask { /** * Execution method always used for tasks * * @return void */ public function execute() { parent::execute(); $this->phpVersion = InstallValidatorUtil::$phpVersion; $status = 0; if (version_compare($this->phpVersion, '5.4.0') >= 0) { $message = __d('install', '%s(%s) version success.', 'PHP', $this->phpVersion); $this->out('Success: ' . $message); } else { $message = __d( 'install', '%s(%s) version error. Please more than "%s" version.', 'PHP', $this->phpVersion, 'PHP 5.4' ); $this->err('Error: ' . $message); $status = parent::CODE_ERROR; } $version = phpversion('pdo_mysql'); if (! $version) { $message = __d('install', 'Not found the %s. Please install the %s.', 'pdo_mysql', 'pdo_mysql'); $this->err('Error: ' . $message); $status = parent::CODE_ERROR; } else { $message = __d('install', '%s(%s) version success.', 'pdo_mysql', $version); $this->out('Success: ' . $message); } if ($status !== 0) { $this->_stop($status); } } /** * Gets the option parser instance and configures it. * * @return ConsoleOptionParser */ public function getOptionParser() { $parser = parent::getOptionParser(); $parser->description(__d('install', 'NetCommons Install Step 2')); return $parser; } }