コード例 #1
0
ファイル: apache.php プロジェクト: alorel/alo-wamp
 /**
  * Constructor
  *
  * @author Art <*****@*****.**>
  */
 function __construct()
 {
     $this->ini = 'apache_version';
     $this->dir = DIR_APACHE;
     $this->service = 'aloapache';
     parent::__construct();
 }
コード例 #2
0
ファイル: php.php プロジェクト: alorel/alo-wamp
 /**
  * Constructor
  *
  * @author Art <*****@*****.**>
  */
 function __construct()
 {
     $this->dependent_dirs = [DIR_APACHE];
     $this->ini = 'php_version';
     $this->dir = DIR_PHP;
     parent::__construct();
 }
コード例 #3
0
ファイル: redis.php プロジェクト: alorel/alo-wamp
 /**
  * Constructor
  *
  * @author Art <*****@*****.**>
  */
 function __construct()
 {
     $this->ini = 'redis_version';
     $this->dir = DIR_REDIS;
     $this->service = 'aloredis';
     parent::__construct();
 }