Files
EasySoft-ZenTaoPMS/extension/lite/install/ext/model/getlicense.php
T

17 lines
477 B
PHP

<?php
/**
* Get license according the client lang.
*
* @access public
* @return string
*/
public function getLicense()
{
$clientLang = $this->app->getClientLang();
$licenseCN = file_get_contents($this->app->getBasePath() . 'doc/LICENSE.LITE.CN');
$licenseEN = file_get_contents($this->app->getBasePath() . 'doc/LICENSE.LITE.EN');
if($clientLang == 'zh-cn' or $clientLang == 'zh-tw') return $licenseCN . $licenseEN;
return $licenseEN . $licenseCN;
}