本文整理汇总了PHP中tsmConfig::showDebug方法的典型用法代码示例。如果您正苦于以下问题:PHP tsmConfig::showDebug方法的具体用法?PHP tsmConfig::showDebug怎么用?PHP tsmConfig::showDebug使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tsmConfig
的用法示例。
在下文中一共展示了tsmConfig::showDebug方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: vmTrace
function vmTrace($notice, $force = FALSE)
{
if ($force || tsmConfig::showDebug()) {
ob_start();
echo '<pre>';
debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 10);
echo '</pre>';
$body = ob_get_contents();
ob_end_clean();
if (tsmConfig::$echoDebug) {
echo $notice . ' <pre>' . $body . '</pre>';
} else {
if (tsmConfig::$logDebug) {
logInfo($body, $notice);
} else {
$app = JFactory::getApplication();
$app->enqueueMessage($notice . ' ' . $body . ' ');
}
}
}
}
示例2: saveorder
function saveorder()
{
vRequest::vmCheckToken();
$cid = vRequest::getInt($this->_cidName, vRequest::getInt('cid', array()));
$order = vRequest::getInt('order', array());
$model = tmsModel::getModel($this->_cname);
if (!$model->saveorder($cid, $order)) {
$msg = 'error';
} else {
if (JFactory::getApplication()->isAdmin() and tsmConfig::showDebug()) {
$msg = tsmText::sprintf('com_tsmart_NEW_ORDERING_SAVEDF', $this->mainLangKey);
} else {
$msg = tsmText::sprintf('com_tsmart_NEW_ORDERING_SAVED');
}
}
$this->setRedirect($this->redirectPath, $msg);
}