From: Gunnar Wrobel
Date: Mon, 29 Nov 2010 15:36:54 +0000 (+0100) Subject: phpdoc X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=22ad600dec3fe81ae53e495aff67af14a002b906;p=horde.git phpdoc --- diff --git a/framework/Prefs/lib/Horde/Prefs/Storage/File.php b/framework/Prefs/lib/Horde/Prefs/Storage/File.php index 27ce6639e..7518c110a 100644 --- a/framework/Prefs/lib/Horde/Prefs/Storage/File.php +++ b/framework/Prefs/lib/Horde/Prefs/Storage/File.php @@ -58,6 +58,12 @@ class Horde_Prefs_Storage_File extends Horde_Prefs_Storage_Base } /** + * Retrieves the requested preferences scope from the storage backend. + * + * @param Horde_Prefs_Scope $scope_ob The scope object. + * + * @return Horde_Prefs_Scope The modified scope object. + * @throws Horde_Prefs_Exception */ public function get($scope_ob) { @@ -107,6 +113,11 @@ class Horde_Prefs_Storage_File extends Horde_Prefs_Storage_Base } /** + * Stores changed preferences in the storage backend. + * + * @param Horde_Prefs_Scope $scope_ob The scope object. + * + * @throws Horde_Prefs_Exception */ public function store($scope_ob) { @@ -131,6 +142,14 @@ class Horde_Prefs_Storage_File extends Horde_Prefs_Storage_Base } /** + * Removes preferences from the backend. + * + * @param string $scope The scope of the prefs to clear. If null, clears + * all scopes. + * @param string $pref The pref to clear. If null, clears the entire + * scope. + * + * @throws Horde_Db_Exception */ public function remove($scope = null, $pref = null) {