mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
60 lines
1 KiB
PHP
60 lines
1 KiB
PHP
<?php
|
|
|
|
use Kanboard\Core\Translator;
|
|
|
|
/**
|
|
* Build version number from git-archive output
|
|
*
|
|
* @param string $ref
|
|
* @param string $commit_hash
|
|
* @return string
|
|
*/
|
|
function build_app_version($ref, $commit_hash)
|
|
{
|
|
$version = 'master';
|
|
|
|
if ($ref !== '$Format:%d$') {
|
|
$tag = preg_replace('/\s*\(.*tag:\sv([^,]+).*\)/i', '\1', $ref);
|
|
|
|
if (!is_null($tag) && $tag !== $ref) {
|
|
return $tag;
|
|
}
|
|
}
|
|
|
|
if ($commit_hash !== '$Format:%H$') {
|
|
$version .= '.'.$commit_hash;
|
|
}
|
|
|
|
return $version;
|
|
}
|
|
|
|
/**
|
|
* Translate a string
|
|
*
|
|
* @return string
|
|
*/
|
|
function t()
|
|
{
|
|
return call_user_func_array(array(Translator::getInstance(), 'translate'), func_get_args());
|
|
}
|
|
|
|
/**
|
|
* Translate a string with no HTML escaping
|
|
*
|
|
* @return string
|
|
*/
|
|
function e()
|
|
{
|
|
return call_user_func_array(array(Translator::getInstance(), 'translateNoEscaping'), func_get_args());
|
|
}
|
|
|
|
/**
|
|
* Translate a number
|
|
*
|
|
* @param mixed $value
|
|
* @return string
|
|
*/
|
|
function n($value)
|
|
{
|
|
return Translator::getInstance()->number($value);
|
|
}
|