本文整理汇总了PHP中func::alert方法的典型用法代码示例。如果您正苦于以下问题:PHP func::alert方法的具体用法?PHP func::alert怎么用?PHP func::alert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类func
的用法示例。
在下文中一共展示了func::alert方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
requireComponent('Bloglounge.Model.Exports');
$programName = Export::getProgramNameByDomain($domainName);
if (!is_dir(ROOT . '/exports/'.$programName)) {
func::alert(_t('프로그램이 존재하지 않습니다'), 'dialog');
}
if (!file_exists(ROOT .'/exports/'.$programName.'/index.xml')) {
func::alert(_t('프로그램 정보를 찾을 수 없습니다'), 'dialog');
}
requireComponent('LZ.PHP.XMLStruct');
$xmls = new XMLStruct;
if (!$xmls->openFile(ROOT . '/exports/'.$programName.'/index.xml')) {
func::alert(_t('프로그램 정보를 읽을 수 없습니다'), 'dialog');
}
$exportInfo = array();
$exportInfo['domain'] = $domainName;
$exportInfo['program'] = $programName;
$exportInfo['title'] = $xmls->getValue('/export/information/name[lang()]');
$exportInfo['config'] = $xmls->selectNode('/export/config[lang()]');
$exportInfo['description'] = func::filterJavascript($xmls->getValue('/export/information/description[lang()]'));
$exportInfo['license'] = func::filterJavascript($xmls->getValue('/export/information/license[lang()]'));
$exportInfo['version'] = func::filterJavascript($xmls->getValue('/export/information/version'));
$exportInfo['author'] = func::filterJavascript($xmls->getValue('/export/information/author[lang()]'));
$exportInfo['email'] = func::filterJavascript($xmls->getAttribute('/export/information/author[lang()]', 'email'));
$exportInfo['homepage'] = func::filterJavascript($xmls->getAttribute('/export/information/author[lang()]', 'link'));
$exportInfo['status'] = Validator::getBool($db->queryCell("SELECT status FROM {$database['prefix']}Exports WHERE domain='{$domainName}'"));
示例2: array
requireAdmin();
$pluginName = $_GET['pluginName'];
if (!is_dir(ROOT . '/plugins/'.$pluginName)) {
func::alert(_t('플러그인이 존재하지 않습니다'), 'dialog');
}
if (!file_exists(ROOT .'/plugins/'.$pluginName.'/index.xml')) {
func::alert(_t('플러그인 정보를 찾을 수 없습니다'), 'dialog');
}
requireComponent('LZ.PHP.XMLStruct');
$xmls = new XMLStruct;
if (!$xmls->openFile(ROOT . '/plugins/'.$pluginName.'/index.xml')) {
func::alert(_t('플러그인 정보를 읽을 수 없습니다'), 'dialog');
}
$pluginInfo = array();
$pluginInfo['name'] = $pluginName;
$pluginInfo['title'] = $xmls->getValue('/plugin/information/name[lang()]');
$pluginInfo['config'] = $xmls->selectNode('/plugin/config[lang()]');
$pluginInfo['description'] = func::filterJavascript($xmls->getValue('/plugin/information/description[lang()]'));
$pluginInfo['license'] = func::filterJavascript($xmls->getValue('/plugin/information/license[lang()]'));
$pluginInfo['version'] = func::filterJavascript($xmls->getValue('/plugin/information/version'));
$pluginInfo['author'] = func::filterJavascript($xmls->getValue('/plugin/information/author[lang()]'));
$pluginInfo['email'] = func::filterJavascript($xmls->getAttribute('/plugin/information/author[lang()]', 'email'));
$pluginInfo['homepage'] = func::filterJavascript($xmls->getAttribute('/plugin/information/author[lang()]', 'link'));
$pluginInfo['status'] = Validator::getBool($db->queryCell("SELECT status FROM {$database['prefix']}Plugins WHERE name='{$pluginName}'"));
$pluginInfo['tags'] = array();