本文整理汇总了PHP中PMF_Db::checkOnEmptyTable方法的典型用法代码示例。如果您正苦于以下问题:PHP PMF_Db::checkOnEmptyTable方法的具体用法?PHP PMF_Db::checkOnEmptyTable怎么用?PHP PMF_Db::checkOnEmptyTable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PMF_Db
的用法示例。
在下文中一共展示了PMF_Db::checkOnEmptyTable方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
content_css : "../template/<?php
print PMF_Template::getTplSetName();
?>
/css/style.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "js/template_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "<?php
print $user->userdata->get('display_name');
?>
",
user_id : "<?php
print $user->userdata->get('user_id');
?>
"
}
});
}
/* ]]> */
</script>
<?php
}
}
} elseif ($permission["editbt"] != 1 && !PMF_Db::checkOnEmptyTable('faqcategories')) {
print $PMF_LANG["err_NotAuth"];
} elseif ($permission["editbt"] && PMF_Db::checkOnEmptyTable('faqcategories')) {
print $PMF_LANG["no_cats"];
}
示例2: header
* @since 2003-04-17
*/
if (!defined('IS_VALID_PHPMYFAQ')) {
header('Location: http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['SCRIPT_NAME']));
exit;
}
require PMF_INCLUDE_DIR . '/Export.php';
?>
<h2><?php
print $PMF_LANG["ad_menu_export"];
?>
</h2>
<form action="?action=exportfile" method="post">
<?php
if (!PMF_Db::checkOnEmptyTable('faqdata')) {
if (!PMF_Db::checkOnEmptyTable('faqcategories')) {
$categoryData = new PMF_Category_Tree_DataProvider_SingleQuery($LANGCODE);
$categoryLayout = new PMF_Category_Layout(new PMF_Category_Tree_Helper(new PMF_Category_Tree($categoryData)));
?>
<fieldset><legend><?php
print $PMF_LANG['ad_export_which_cat'];
?>
</legend>
<label class="left" for="rubrik"><?php
print $PMF_LANG["ad_entry_category"];
?>
</label>
<select name="catid" id="catid" size="1">
<?php
print $categoryLayout->renderOptions();
?>