. * */ /** * Handles persistent storage of TubePress options * */ interface org_tubepress_options_storage_StorageManager { /** * Print out debugging info for this * storage manager * * @return void */ public function debug(); /** * Determines if an option exists * * @param string $optionName The name of the option in question * * @return boolean True if the option exists, false otherwise */ public function exists($optionName); /** * Initialize the persistent storage * * @return void */ /** * Initializes the storage * * @return void */ public function init(); /** * Retrieve the current value of an option * * @param string $optionName The name of the option * * @return unknown_type The option's value */ public function get($optionName); /** * Sets an option value * * @param string $optionName The option name * @param unknown_type $optionValue The option value * * @return void */ public function set($optionName, $optionValue); }