Exemplo n.º 1
0
 function kml_TimeSptamp($when = null)
 {
     parent::kml_TimePrimitive();
     if ($when !== null) {
         $this->set_when($when);
     }
 }
Exemplo n.º 2
0
 function kml_TimeSpan($begin = null, $end = null)
 {
     parent::kml_TimePrimitive();
     if ($begin !== null) {
         $this->set_begin($begin);
     }
     if ($end !== null) {
         $this->set_end($end);
     }
 }