本文整理汇总了PHP中func::printRespond方法的典型用法代码示例。如果您正苦于以下问题:PHP func::printRespond方法的具体用法?PHP func::printRespond怎么用?PHP func::printRespond使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类func
的用法示例。
在下文中一共展示了func::printRespond方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _t
$response['error'] = 1;
$response['message'] = _t('관리자만이 이 기능을 사용할 수 있습니다.');
} else {
$response['error'] = 1;
$pluginName = $_POST['plugin'];
$ting = (isset($_POST['ting']) && !empty($_POST['ting'])) ? Validator::getBool($_POST['ting']) : null;
if (!preg_match('/^[A-Za-z0-9 _-]+$/', $pluginName)) {
$response['message'] = _t('잘못된 플러그인 이름입니다');
func::printRespond($response);
}
if (!is_dir(ROOT . '/plugins/'.$pluginName)) {
$response['message'] = _t('플러그인이 존재하지 않습니다');
func::printRespond($response);
}
if (!file_exists(ROOT . '/plugins/'.$pluginName.'/index.xml')) {
$response['message'] = _t('플러그인 정보를 찾을 수 없습니다');
func::printRespond($response);
}
if (Plugin::activate($pluginName, $ting))
$response['error'] = 0;
}
func::printRespond($response);
?>