getlicense.php 477 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Get license according the client lang.
  4. *
  5. * @access public
  6. * @return string
  7. */
  8. public function getLicense()
  9. {
  10. $clientLang = $this->app->getClientLang();
  11. $licenseCN = file_get_contents($this->app->getBasePath() . 'doc/LICENSE.LITE.CN');
  12. $licenseEN = file_get_contents($this->app->getBasePath() . 'doc/LICENSE.LITE.EN');
  13. if($clientLang == 'zh-cn' or $clientLang == 'zh-tw') return $licenseCN . $licenseEN;
  14. return $licenseEN . $licenseCN;
  15. }