/**
  * Return's the webstore version
  *
  * @param string $passkey
  * @return string
  */
 public function ws_version($passkey)
 {
     if (!$this->check_passkey($passkey)) {
         return "Invalid Password";
     }
     return _xls_version();
 }
예제 #2
0
 /**
  * Echo current version
  */
 public function actionVersion()
 {
     echo _xls_version();
 }