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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
1d0af242
Commit
1d0af242
authored
11 years ago
by
Frank Karlitschek
Browse files
Options
Downloads
Plain Diff
Merge pull request #6436 from owncloud/allconfig-defaults
Add default parameter to OC\AllConfig/OCP\IConfig's getValue's
parents
a99dd318
e2efad6a
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/private/allconfig.php
+17
-7
17 additions, 7 deletions
lib/private/allconfig.php
lib/public/iconfig.php
+12
-3
12 additions, 3 deletions
lib/public/iconfig.php
with
29 additions
and
10 deletions
lib/private/allconfig.php
+
17
−
7
View file @
1d0af242
...
@@ -15,6 +15,7 @@ namespace OC;
...
@@ -15,6 +15,7 @@ namespace OC;
class
AllConfig
implements
\OCP\IConfig
{
class
AllConfig
implements
\OCP\IConfig
{
/**
/**
* Sets a new system wide value
* Sets a new system wide value
*
* @param string $key the key of the value, under which will be saved
* @param string $key the key of the value, under which will be saved
* @param string $value the value that should be stored
* @param string $value the value that should be stored
* @todo need a use case for this
* @todo need a use case for this
...
@@ -25,16 +26,19 @@ class AllConfig implements \OCP\IConfig {
...
@@ -25,16 +26,19 @@ class AllConfig implements \OCP\IConfig {
/**
/**
* Looks up a system wide defined value
* Looks up a system wide defined value
*
* @param string $key the key of the value, under which it was saved
* @param string $key the key of the value, under which it was saved
* @param string $default the default value to be returned if the value isn't set
* @return string the saved value
* @return string the saved value
*/
*/
public
function
getSystemValue
(
$key
)
{
public
function
getSystemValue
(
$key
,
$default
=
''
)
{
return
\OCP\Config
::
getSystemValue
(
$key
,
''
);
return
\OCP\Config
::
getSystemValue
(
$key
,
$default
);
}
}
/**
/**
* Writes a new app wide value
* Writes a new app wide value
*
* @param string $appName the appName that we want to store the value under
* @param string $appName the appName that we want to store the value under
* @param string $key the key of the value, under which will be saved
* @param string $key the key of the value, under which will be saved
* @param string $value the value that should be stored
* @param string $value the value that should be stored
...
@@ -45,17 +49,20 @@ class AllConfig implements \OCP\IConfig {
...
@@ -45,17 +49,20 @@ class AllConfig implements \OCP\IConfig {
/**
/**
* Looks up an app wide defined value
* Looks up an app wide defined value
*
* @param string $appName the appName that we stored the value under
* @param string $appName the appName that we stored the value under
* @param string $key the key of the value, under which it was saved
* @param string $key the key of the value, under which it was saved
* @param string $default the default value to be returned if the value isn't set
* @return string the saved value
* @return string the saved value
*/
*/
public
function
getAppValue
(
$appName
,
$key
)
{
public
function
getAppValue
(
$appName
,
$key
,
$default
=
''
)
{
return
\OCP\Config
::
getAppValue
(
$appName
,
$key
,
''
);
return
\OCP\Config
::
getAppValue
(
$appName
,
$key
,
$default
);
}
}
/**
/**
* Set a user defined value
* Set a user defined value
*
* @param string $userId the userId of the user that we want to store the value under
* @param string $userId the userId of the user that we want to store the value under
* @param string $appName the appName that we want to store the value under
* @param string $appName the appName that we want to store the value under
* @param string $key the key under which the value is being stored
* @param string $key the key under which the value is being stored
...
@@ -67,11 +74,14 @@ class AllConfig implements \OCP\IConfig {
...
@@ -67,11 +74,14 @@ class AllConfig implements \OCP\IConfig {
/**
/**
* Shortcut for getting a user defined value
* Shortcut for getting a user defined value
*
* @param string $userId the userId of the user that we want to store the value under
* @param string $userId the userId of the user that we want to store the value under
* @param string $appName the appName that we stored the value under
* @param string $appName the appName that we stored the value under
* @param string $key the key under which the value is being stored
* @param string $key the key under which the value is being stored
* @param string $default the default value to be returned if the value isn't set
* @return string
*/
*/
public
function
getUserValue
(
$userId
,
$appName
,
$key
)
{
public
function
getUserValue
(
$userId
,
$appName
,
$key
,
$default
=
''
)
{
return
\OCP\Config
::
getUserValue
(
$userId
,
$appName
,
$key
);
return
\OCP\Config
::
getUserValue
(
$userId
,
$appName
,
$key
,
$default
);
}
}
}
}
This diff is collapsed.
Click to expand it.
lib/public/iconfig.php
+
12
−
3
View file @
1d0af242
...
@@ -36,6 +36,7 @@ namespace OCP;
...
@@ -36,6 +36,7 @@ namespace OCP;
interface
IConfig
{
interface
IConfig
{
/**
/**
* Sets a new system wide value
* Sets a new system wide value
*
* @param string $key the key of the value, under which will be saved
* @param string $key the key of the value, under which will be saved
* @param string $value the value that should be stored
* @param string $value the value that should be stored
* @todo need a use case for this
* @todo need a use case for this
...
@@ -44,14 +45,17 @@ interface IConfig {
...
@@ -44,14 +45,17 @@ interface IConfig {
/**
/**
* Looks up a system wide defined value
* Looks up a system wide defined value
*
* @param string $key the key of the value, under which it was saved
* @param string $key the key of the value, under which it was saved
* @param string $default the default value to be returned if the value isn't set
* @return string the saved value
* @return string the saved value
*/
*/
public
function
getSystemValue
(
$key
);
public
function
getSystemValue
(
$key
,
$default
=
''
);
/**
/**
* Writes a new app wide value
* Writes a new app wide value
*
* @param string $appName the appName that we want to store the value under
* @param string $appName the appName that we want to store the value under
* @param string $key the key of the value, under which will be saved
* @param string $key the key of the value, under which will be saved
* @param string $value the value that should be stored
* @param string $value the value that should be stored
...
@@ -60,15 +64,18 @@ interface IConfig {
...
@@ -60,15 +64,18 @@ interface IConfig {
/**
/**
* Looks up an app wide defined value
* Looks up an app wide defined value
*
* @param string $appName the appName that we stored the value under
* @param string $appName the appName that we stored the value under
* @param string $key the key of the value, under which it was saved
* @param string $key the key of the value, under which it was saved
* @param string $default the default value to be returned if the value isn't set
* @return string the saved value
* @return string the saved value
*/
*/
public
function
getAppValue
(
$appName
,
$key
);
public
function
getAppValue
(
$appName
,
$key
,
$default
=
''
);
/**
/**
* Set a user defined value
* Set a user defined value
*
* @param string $userId the userId of the user that we want to store the value under
* @param string $userId the userId of the user that we want to store the value under
* @param string $appName the appName that we want to store the value under
* @param string $appName the appName that we want to store the value under
* @param string $key the key under which the value is being stored
* @param string $key the key under which the value is being stored
...
@@ -78,9 +85,11 @@ interface IConfig {
...
@@ -78,9 +85,11 @@ interface IConfig {
/**
/**
* Shortcut for getting a user defined value
* Shortcut for getting a user defined value
*
* @param string $userId the userId of the user that we want to store the value under
* @param string $userId the userId of the user that we want to store the value under
* @param string $appName the appName that we stored the value under
* @param string $appName the appName that we stored the value under
* @param string $key the key under which the value is being stored
* @param string $key the key under which the value is being stored
* @param string $default the default value to be returned if the value isn't set
*/
*/
public
function
getUserValue
(
$userId
,
$appName
,
$key
);
public
function
getUserValue
(
$userId
,
$appName
,
$key
,
$default
=
''
);
}
}
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