Correction de l'indentation
This commit is contained in:
parent
714bd53440
commit
17836fd225
@ -44,34 +44,25 @@ Bonne lecture ! -->
|
|||||||
</head>
|
</head>
|
||||||
<body class="is-preload">
|
<body class="is-preload">
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
class Version {
|
||||||
class Version
|
public static function get() {
|
||||||
{
|
$tag = trim(exec('git describe --tags --abbrev=0'));
|
||||||
|
return sprintf('%s', $tag);
|
||||||
public static function get()
|
|
||||||
{
|
|
||||||
$tag = trim(exec('git describe --tags --abbrev=0'));
|
|
||||||
|
|
||||||
return sprintf('%s', $tag);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
class DateVersion
|
class DateVersion {
|
||||||
{
|
public static function get() {
|
||||||
|
$commitDate = new \DateTime(trim(exec('git log -n1 --pretty=%ci index.php')));
|
||||||
public static function get()
|
$commitDate->setTimezone(new \DateTimeZone('Europe/Paris'));
|
||||||
{
|
return sprintf('%s', $commitDate->format('d/m/Y à H:i:s'));
|
||||||
$commitDate = new \DateTime(trim(exec('git log -n1 --pretty=%ci index.php')));
|
|
||||||
$commitDate->setTimezone(new \DateTimeZone('Europe/Paris'));
|
|
||||||
|
|
||||||
return sprintf('%s', $commitDate->format('d/m/Y à H:i:s'));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// echo 'Version du site : ' . Version::get();
|
// echo 'Version du site : ' . Version::get();
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
Loading…
Reference in New Issue
Block a user