Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
315344eb
Commit
315344eb
authored
11 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
move public files api to a clearer namespace
parent
2e1b5349
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/public/files/file.php
+1
-1
1 addition, 1 deletion
lib/public/files/file.php
lib/public/files/folder.php
+9
-9
9 additions, 9 deletions
lib/public/files/folder.php
lib/public/files/node.php
+3
-3
3 additions, 3 deletions
lib/public/files/node.php
with
13 additions
and
13 deletions
lib/public/files/
node/
file.php
→
lib/public/files/file.php
+
1
−
1
View file @
315344eb
...
...
@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/
namespace
OCP\Files
\Node
;
namespace
OCP\Files
;
use
OC\Files\NotPermittedException
;
...
...
This diff is collapsed.
Click to expand it.
lib/public/files/
node/
folder.php
→
lib/public/files/folder.php
+
9
−
9
View file @
315344eb
...
...
@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/
namespace
OCP\Files
\Node
;
namespace
OCP\Files
;
use
OC\Files\Cache\Cache
;
use
OC\Files\Cache\Scanner
;
...
...
@@ -31,7 +31,7 @@ interface Folder extends Node {
/**
* check if a node is a (grand-)child of the folder
*
* @param \OCP\Files\Node
\Node
$node
* @param \OCP\Files\Node $node
* @return bool
*/
public
function
isSubNode
(
$node
);
...
...
@@ -40,7 +40,7 @@ interface Folder extends Node {
* get the content of this directory
*
* @throws \OC\Files\NotFoundException
* @return \OCP\Files\Node
\Node
[]
* @return \OCP\Files\Node[]
*/
public
function
getDirectoryListing
();
...
...
@@ -48,7 +48,7 @@ interface Folder extends Node {
* Get the node at $path
*
* @param string $path
* @return \OCP\Files\Node
\Node
* @return \OCP\Files\Node
* @throws \OC\Files\NotFoundException
*/
public
function
get
(
$path
);
...
...
@@ -61,14 +61,14 @@ interface Folder extends Node {
/**
* @param string $path
* @return \OCP\Files\
Node\
Folder
* @return \OCP\Files\Folder
* @throws NotPermittedException
*/
public
function
newFolder
(
$path
);
/**
* @param string $path
* @return \OCP\Files\
Node\
File
* @return \OCP\Files\File
* @throws NotPermittedException
*/
public
function
newFile
(
$path
);
...
...
@@ -77,7 +77,7 @@ interface Folder extends Node {
* search for files with the name matching $query
*
* @param string $query
* @return \OCP\Files\Node
\Node
[]
* @return \OCP\Files\Node[]
*/
public
function
search
(
$query
);
...
...
@@ -85,13 +85,13 @@ interface Folder extends Node {
* search for files by mimetype
*
* @param string $mimetype
* @return \OCP\Files\Node
\Node
[]
* @return \OCP\Files\Node[]
*/
public
function
searchByMime
(
$mimetype
);
/**
* @param $id
* @return \OCP\Files\Node
\Node
[]
* @return \OCP\Files\Node[]
*/
public
function
getById
(
$id
);
...
...
This diff is collapsed.
Click to expand it.
lib/public/files/node
/node
.php
→
lib/public/files/node.php
+
3
−
3
View file @
315344eb
...
...
@@ -6,13 +6,13 @@
* See the COPYING-README file.
*/
namespace
OCP\Files
\Node
;
namespace
OCP\Files
;
interface
Node
{
/**
* @param string $targetPath
* @throws \OC\Files\NotPermittedException
* @return \OCP\Files\Node
\Node
* @return \OCP\Files\Node
*/
public
function
move
(
$targetPath
);
...
...
@@ -20,7 +20,7 @@ interface Node {
/**
* @param string $targetPath
* @return \OCP\Files\Node
\Node
* @return \OCP\Files\Node
*/
public
function
copy
(
$targetPath
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment