当前位置: 首页>>代码示例>>PHP>>正文


PHP filesystem::has_read_permission方法代码示例

本文整理汇总了PHP中filesystem::has_read_permission方法的典型用法代码示例。如果您正苦于以下问题:PHP filesystem::has_read_permission方法的具体用法?PHP filesystem::has_read_permission怎么用?PHP filesystem::has_read_permission使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在filesystem的用法示例。


在下文中一共展示了filesystem::has_read_permission方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: or

under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
*/
require "../../Group-Office.php";
//load file management class
$GO_SECURITY->authenticate();
$GO_MODULES->authenticate('filesystem');
require $GO_CONFIG->class_path . 'filetypes.class.inc';
require_once $GO_CONFIG->class_path . 'filesystem.class.inc';
require_once 'group_folders.inc';
$fs = new filesystem();
$filetypes = new filetypes();
$path = smartstrip($_REQUEST['path']);
$group_folders = get_group_folders($GO_SECURITY->user_id, 0);
if (is_group_folder($group_folders, $path) || $fs->has_read_permission($GO_SECURITY->user_id, $path) || $fs->has_write_permission($GO_SECURITY->user_id, $path)) {
    $filename = basename($path);
    $extension = get_extension($filename);
    $type = $filetypes->get_type($extension);
    $browser = detect_browser();
    header('Content-Type: ' . $type['mime']);
    header('Content-Length: ' . filesize($path));
    header('Expires: ' . gmdate('D, d M Y H:i:s') . ' GMT');
    if ($browser['name'] == 'MSIE') {
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename="' . $filename . '"');
        header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
        header('Pragma: public');
    } else {
        header('Content-Type: ' . $type['mime']);
        header('Pragma: no-cache');
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:download.php

示例2: die

$GO_MODULES->authenticate('filesystem');
require $GO_LANGUAGE->get_language_file('email');
$email_module = $GO_MODULES->get_module('email');
if (!$email_module) {
    die($strDataError);
}
//load file management class
require $GO_CONFIG->class_path . "filesystem.class.inc";
require $email_module['class_path'] . 'email.class.inc';
require $GO_CONFIG->class_path . 'filetypes.class.inc';
$email = new email();
$fs = new filesystem();
$filetypes = new filetypes();
$path = stripslashes($_REQUEST['path']);
$task = '';
if (!$fs->has_read_permission($GO_SECURITY->user_id, $path)) {
    header('Location: ' . $GO_CONFIG->host . 'error_docs/401.php');
    exit;
}
$attachments_size = 0;
if (isset($_SESSION['attach_array'])) {
    for ($i = 1; $i <= sizeof($_SESSION['attach_array']); $i++) {
        $attachments_size += $_SESSION['attach_array'][$i]->file_size;
    }
}
if (isset($_REQUEST['files'])) {
    for ($i = 0; $i < count($_REQUEST['files']); $i++) {
        $attachments_size += filesize(smartstrip($_REQUEST['files'][$i]));
    }
    if ($attachments_size < $GO_CONFIG->max_attachment_size) {
        while ($file = smartstrip(array_shift($_REQUEST['files']))) {
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:attach_online.php

示例3: isset

$task = isset($_REQUEST['task']) ? $_REQUEST['task'] : '';
$_SESSION['cut_files'] = isset($_SESSION['cut_files']) ? $_SESSION['cut_files'] : array();
$_SESSION['cut_folders'] = isset($_SESSION['cut_folders']) ? $_SESSION['cut_folders'] : array();
$_SESSION['copy_folders'] = isset($_SESSION['copy_folders']) ? $_SESSION['copy_folders'] : array();
$_SESSION['copy_files'] = isset($_SESSION['copy_files']) ? $_SESSION['copy_files'] : array();
//vars used to remember files that are to be overwritten or not
$overwrite_destination_path = isset($_POST['overwrite_destination_path']) ? smartstrip($_POST['overwrite_destination_path']) : '';
$overwrite_source_path = isset($_POST['overwrite_source_path']) ? smartstrip($_POST['overwrite_source_path']) : '';
$overwrite_all = isset($_POST['overwrite_all']) && $_POST['overwrite_all'] == 'true' ? 'true' : 'false';
$overwrite = isset($_POST['overwrite']) ? $_POST['overwrite'] : $overwrite_all;
require_once 'group_folders.inc';
$group_folders = get_group_folders($GO_SECURITY->user_id, 0);
$read_permission = $write_permission = true;
if (!is_group_folder($group_folders, $path)) {
    //check read permissions and remember last browsed path
    $read_permission = $fs->has_read_permission($GO_SECURITY->user_id, $path);
    $write_permission = $fs->has_write_permission($GO_SECURITY->user_id, $path);
}
if (!$read_permission && !$write_permission) {
    $_SESSION['GO_FILESYSTEM_PATH'] = $home_path;
    $task = 'access_denied';
} else {
    if ($GO_CONFIG->window_mode != 'projects') {
        $_SESSION['GO_FILESYSTEM_PATH'] = $path;
    }
}
//cut paste or copy before output has started
switch ($task) {
    case 'upload':
        if ($_SERVER['REQUEST_METHOD'] == 'POST') {
            $task = 'list';
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:index.php


注:本文中的filesystem::has_read_permission方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。