mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 10:49:11 +00:00
9bc219ee14
About Shared Library (shared) and Module Library (module) type of cmake target INSTALL command has different behaviour for ARCHIVE LIBRARY RUNTIME depending on the platform
35 lines
No EOL
658 B
PHP
35 lines
No EOL
658 B
PHP
<?php
|
|
|
|
require_once('common/config.php');
|
|
require_once('common/time.php');
|
|
require_once('common/xml_utils.php');
|
|
|
|
if (RYAPI_MODE == 'server') {
|
|
require_once('server/config.php');
|
|
require_once('server/time.php');
|
|
} else {
|
|
require_once('client/time.php');
|
|
}
|
|
|
|
$format = 'raw';
|
|
if (isset($_GET['format'])) $format = trim($_GET['format']);
|
|
|
|
// Compute
|
|
|
|
$tick = ryzom_time_tick();
|
|
switch($format) {
|
|
case 'raw':
|
|
echo $tick;
|
|
break;
|
|
case 'txt':
|
|
$rytime = ryzom_time_array($tick);
|
|
echo ryzom_time_txt($rytime);
|
|
break;
|
|
case 'xml':
|
|
$rytime = ryzom_time_array($tick);
|
|
ryzom_display_xml_header();
|
|
echo ryzom_time_xml($rytime)->asXML();
|
|
break;
|
|
}
|
|
|
|
?>
|