本文整理汇总了PHP中Tinebase_Core::finishProfiling方法的典型用法代码示例。如果您正苦于以下问题:PHP Tinebase_Core::finishProfiling方法的具体用法?PHP Tinebase_Core::finishProfiling怎么用?PHP Tinebase_Core::finishProfiling使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tinebase_Core
的用法示例。
在下文中一共展示了Tinebase_Core::finishProfiling方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: handle
/**
* (non-PHPdoc)
* @see Tinebase_Server_Interface::handle()
*/
public function handle(\Zend\Http\Request $request = null, $body = null)
{
$method = $this->getRequestMethod();
if (!in_array($method, array('Tinebase.monitoringCheckDB', 'Tinebase.monitoringCheckConfig'))) {
Tinebase_Core::initFramework();
if (Tinebase_Core::isLogLevel(Zend_Log::DEBUG)) {
Tinebase_Core::getLogger()->debug(__METHOD__ . '::' . __LINE__ . ' Is cli request. method: ' . $method);
}
}
// prevents problems with missing request uri (@see Sabre\HTTP\Request->getUri())
if (!isset($_SERVER['REQUEST_URI'])) {
$_SERVER['REQUEST_URI'] = '';
}
$tinebaseServer = new Tinebase_Frontend_Cli();
$opts = Tinebase_Core::get('opts');
if (!in_array($method, self::getAnonymousMethods($method))) {
$tinebaseServer->authenticate($opts->username, $opts->password);
}
$result = $tinebaseServer->handle($opts);
//@todo remove cli session path
// convert function result to shell return code
if ($result === NULL || $result === TRUE || !is_int($result)) {
$result = 0;
} else {
if ($result === FALSE) {
$result = 1;
}
}
// finish profiling here - we won't run in Tinebase_Core again
Tinebase_Core::finishProfiling();
Tinebase_Core::getDbProfiling();
exit($result);
}