4 require_once
'Services/Administration/interfaces/interface.ilVersionControlInformation.php';
24 $lng = $DIC->language();
26 if (null !== self::$revision_information) {
27 return self::$revision_information;
47 if ($version_number[0]) {
48 $version_number = $version_number[0];
51 if ($version_mini_hash[0]) {
52 $version_mini_hash = $version_mini_hash[0];
55 if ($line && array_filter($line)) {
56 $line = implode(
' | ', array_filter($line));
59 $origin = trim(exec(
'git config --get remote.origin.url'));
60 $branch = trim(exec(
'git rev-parse --abbrev-ref HEAD'));
61 $version_mini_hash = trim(exec(
'git rev-parse --short HEAD'));
62 $version_number = exec(
'git rev-list --count HEAD');
63 $line = trim(exec(
'git log -1'));
74 if ($version_number) {
75 $info[] = sprintf(
$lng->txt(
'git_revision'), $version_number);
78 if ($version_mini_hash) {
79 $info[] = sprintf(
$lng->txt(
'git_hash_short'), $version_mini_hash);
83 $info[] = sprintf(
$lng->txt(
'git_last_commit'), $line);
86 self::$revision_information = $info;
96 return implode(
"<br />", self::$revision_information);
static isWindows()
check wether the current client system is a windows system
static execQuoted($cmd, $args=null)
exec command and fix spaces on windows