This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Retrieve the git version number so we can show it. | |
*/ | |
$files = []; | |
$dir = dirname(dirname(dirname(__FILE__))) . '/.git/refs/tags'; | |
if(file_exists($dir)) { | |
foreach (new DirectoryIterator($dir) as $file) { | |
if ($file->isDot()) { | |
continue; | |
} |
NewerOlder