當前位置: 首頁>>代碼示例>>PHP>>正文


PHP PMF_Db::checkOnEmptyTable方法代碼示例

本文整理匯總了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"];
}
開發者ID:atlcurling,項目名稱:tkt,代碼行數:31,代碼來源:record.edit.php

示例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();
        ?>
開發者ID:jr-ewing,項目名稱:phpMyFAQ,代碼行數:31,代碼來源:export.main.php


注:本文中的PMF_Db::checkOnEmptyTable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。