MonitorController.php
680 Bytes
<?php
class MonitorController extends QLib_Controller_Default_Action
{
public function init()
{
}
public function indexAction()
{
}
public function postAction()
{
$append = array(
'profile' => $this->helpGparam('profile'),
'location' => $this->helpGparam('location'),
'place' => $this->helpGparam('place'),
'situation' => $this->helpGparam('situation')
);
$server = $_SERVER;
QINLogs_Sys::logger('monitor', 'user_monitor', $server, QINLogs_Sys::ERROR_INFO, $append);
$this->helpGo('/monitor/thanks');
}
public function thanksAction()
{
}
}