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


PHP nggAdmin::swfupload_image方法代碼示例

本文整理匯總了PHP中nggAdmin::swfupload_image方法的典型用法代碼示例。如果您正苦於以下問題:PHP nggAdmin::swfupload_image方法的具體用法?PHP nggAdmin::swfupload_image怎麽用?PHP nggAdmin::swfupload_image使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在nggAdmin的用法示例。


在下文中一共展示了nggAdmin::swfupload_image方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: elseif

    $_COOKIE[SECURE_AUTH_COOKIE] = $_REQUEST['auth_cookie'];
} elseif (empty($_COOKIE[AUTH_COOKIE]) && !empty($_REQUEST['auth_cookie'])) {
    $_COOKIE[AUTH_COOKIE] = $_REQUEST['auth_cookie'];
}
if (empty($_COOKIE[LOGGED_IN_COOKIE]) && !empty($_REQUEST['logged_in_cookie'])) {
    $_COOKIE[LOGGED_IN_COOKIE] = $_REQUEST['logged_in_cookie'];
}
// don't ask me why, sometimes needed, taken from wp core
unset($current_user);
// admin.php require a proper login cookie
require_once ABSPATH . '/wp-admin/admin.php';
header('Content-Type: text/plain; charset=' . get_option('blog_charset'));
//check for correct capability
if (!is_user_logged_in()) {
    die('Login failure. -1');
}
//check for correct capability
if (!current_user_can('NextGEN Upload images')) {
    die('You do not have permission to upload files. -2');
}
//check for correct nonce
check_admin_referer('ngg_swfupload');
//check for nggallery
if (!defined('NGGALLERY_ABSPATH')) {
    die('NextGEN Gallery not available. -3');
}
include_once NGGALLERY_ABSPATH . 'admin/functions.php';
// get the gallery
$galleryID = (int) $_POST['galleryselect'];
echo nggAdmin::swfupload_image($galleryID);
開發者ID:besimhu,項目名稱:legacy,代碼行數:30,代碼來源:upload.php


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