This commit is contained in:
fen 2014-02-18 10:01:35 +08:00
commit 1e50409ce5
7 changed files with 0 additions and 26 deletions

View File

@ -1,26 +0,0 @@
<?php
/**
* Typecho_Storage_Adapter
*
* @copyright Copyright (c) 2012 Typecho Team. (http://typecho.org)
* @author Joyqi <magike.net@gmail.com>
* @license GNU General Public License 2.0
*/
interface Typecho_Storage_Adapter
{
public static function isAvailable();
public static function check(array $config);
public static function config(Typecho_Widget_Helper_Form $form);
public function get($path);
public function add($localPath);
public function set($path, $localPath);
public function delete($path);
}