Lines Matching full:file
18 /** @var int The current user's permissions for this file */
20 /** @var bool Wether this is an image file */
22 /** @var string MD5 sum over the file's content (if available and requested) */
27 /** @var string The file path to this media revision */
28 protected $file; variable in dokuwiki\\Remote\\Response\\Media
37 * @param int|null $perms The current user's permissions for this file
38 * @param bool|null $isimage Wether this is an image file
39 * @param string $hash MD5 sum over the file's content
52 $this->file = mediaFN($this->id, $revision);
53 $this->revision = $revision ?: $mtime ?: filemtime($this->file);
54 $this->size = $size ?? filesize($this->file);
69 $this->hash = md5(io_readFile($this->file, false));