Implementing Media Library module

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2013-04-18 10:59:15 -07:00
parent 3bf363ef2c
commit 109da3a297
186 changed files with 11544 additions and 97 deletions

View File

@@ -271,6 +271,11 @@ namespace Orchard.Tests.Modules.Media.Services {
public void SaveStream(string path, Stream inputStream) {
SavedStreams.Add(path);
}
public string GetLocalPath(string url) {
throw new NotImplementedException();
}
}
private class StubStorageFolder : IStorageFolder {