예제 #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();
 }