ImageCropper Upload enabled

The cropper can now fully replace the upload datatype
This commit is contained in:
perploug
2014-02-17 16:12:21 +01:00
parent a4b1b31a24
commit 2bd2f12831
21 changed files with 225 additions and 88 deletions

View File

@@ -11,18 +11,12 @@ namespace Umbraco.Core.Configuration.UmbracoSettings
get { return (string)base["mediaTypeAlias"]; }
}
[ConfigurationProperty("focalPointProperty", IsRequired = true)]
[ConfigurationProperty("focalPointProperty", IsRequired = false)]
public string FocalPointProperty
{
get { return (string)base["focalPointProperty"]; }
}
[ConfigurationProperty("fileProperty", IsRequired = true)]
public string FileProperty
{
get { return (string)base["fileProperty"]; }
}
[ConfigurationCollection(typeof(ContentImagingCropSizeCollection))]
[ConfigurationProperty("", IsDefaultCollection = true)]
public ContentImagingCropSizeCollection CropSizeCollection

View File

@@ -8,8 +8,6 @@ namespace Umbraco.Core.Configuration.UmbracoSettings
string FocalPointProperty { get; }
string FileProperty { get; }
IEnumerable<IImagingCropSize> CropSizes { get; }
}
}