Bearsampp
2026.7.11
Toggle main menu visibility
Loading...
Searching...
No Matches
class.tool.composer.php
Go to the documentation of this file.
1
<?php
2
/*
3
* Copyright (c) 2021-2024 Bearsampp
4
* License: GNU General Public License version 3 or later; see LICENSE.txt
5
* Author: Bear
6
* Website: https://bearsampp.com
7
* Github: https://github.com/Bearsampp
8
*/
9
16
class
ToolComposer
extends
Module
17
{
21
const
ROOT_CFG_VERSION
=
'composerVersion'
;
22
26
const
LOCAL_CFG_EXE
=
'composerExe'
;
27
33
private
$exe
;
34
41
public
function
__construct
(
$id
,
$type
) {
42
Log::initClass
($this);
43
$this->
reload
(
$id
,
$type
);
44
}
45
52
public
function
reload
(
$id
=
null
,
$type
=
null
) {
53
global
$bearsamppConfig
,
$bearsamppLang
;
54
Log::reloadClass
($this);
55
56
$this->name =
$bearsamppLang
->getValue(
Lang::COMPOSER
);
57
$this->version =
$bearsamppConfig
->getRaw(self::ROOT_CFG_VERSION);
58
parent::reload(
$id
,
$type
);
59
60
if
($this->bearsamppConfRaw !==
false
) {
61
$this->exe = $this->symlinkPath .
'/'
. $this->bearsamppConfRaw[self::LOCAL_CFG_EXE];
62
}
63
64
if
(!$this->enable) {
65
Log::info
($this->name .
' is not enabled!'
);
66
return
;
67
}
68
if
(!is_dir($this->currentPath)) {
69
Log::error
(sprintf(
$bearsamppLang
->getValue(
Lang::ERROR_FILE_NOT_FOUND
), $this->name .
' '
. $this->version, $this->currentPath));
70
}
71
if
(!is_dir($this->symlinkPath)) {
72
Log::error
(sprintf(
$bearsamppLang
->getValue(
Lang::ERROR_FILE_NOT_FOUND
), $this->name .
' '
. $this->version, $this->symlinkPath));
73
return
;
74
}
75
if
(!is_file($this->bearsamppConf)) {
76
Log::error
(sprintf(
$bearsamppLang
->getValue(
Lang::ERROR_CONF_NOT_FOUND
), $this->name .
' '
. $this->version, $this->bearsamppConf));
77
}
78
if
(!is_file($this->exe)) {
79
Log::error
(sprintf(
$bearsamppLang
->getValue(
Lang::ERROR_EXE_NOT_FOUND
), $this->name .
' '
. $this->version, $this->exe));
80
}
81
}
82
88
public
function
setVersion
(
$version
) {
89
global
$bearsamppConfig
;
90
$this->version =
$version
;
91
$bearsamppConfig
->replace(self::ROOT_CFG_VERSION,
$version
);
92
$this->
reload
();
93
}
94
100
public
function
getExe
() {
101
return
$this->exe
;
102
}
103
}
104
$bearsamppLang
global $bearsamppLang
Definition
ajax.apache.php:16
Lang\COMPOSER
const COMPOSER
Definition
class.lang.php:143
Lang\ERROR_EXE_NOT_FOUND
const ERROR_EXE_NOT_FOUND
Definition
class.lang.php:154
Lang\ERROR_CONF_NOT_FOUND
const ERROR_CONF_NOT_FOUND
Definition
class.lang.php:153
Lang\ERROR_FILE_NOT_FOUND
const ERROR_FILE_NOT_FOUND
Definition
class.lang.php:155
Log\info
static info($data, $file=null)
Definition
class.log.php:627
Log\reloadClass
static reloadClass($classInstance)
Definition
class.log.php:670
Log\error
static error($data, $file=null)
Definition
class.log.php:650
Log\initClass
static initClass($classInstance)
Definition
class.log.php:660
Module
Definition
class.module.php:15
Module\$version
$version
Definition
class.module.php:24
Module\$type
$type
Definition
class.module.php:20
Module\$id
$id
Definition
class.module.php:21
ToolComposer
Definition
class.tool.composer.php:17
ToolComposer\getExe
getExe()
Definition
class.tool.composer.php:100
ToolComposer\LOCAL_CFG_EXE
const LOCAL_CFG_EXE
Definition
class.tool.composer.php:26
ToolComposer\setVersion
setVersion($version)
Definition
class.tool.composer.php:88
ToolComposer\reload
reload($id=null, $type=null)
Definition
class.tool.composer.php:52
ToolComposer\ROOT_CFG_VERSION
const ROOT_CFG_VERSION
Definition
class.tool.composer.php:21
ToolComposer\__construct
__construct($id, $type)
Definition
class.tool.composer.php:41
ToolComposer\$exe
$exe
Definition
class.tool.composer.php:33
$bearsamppConfig
global $bearsamppConfig
Definition
homepage.php:41
sandbox
core
classes
tools
class.tool.composer.php
Generated by
1.17.0