From 0db8dc8da51c5bae8e31e0ca07e1e95ee48264dc Mon Sep 17 00:00:00 2001 From: leekelleher Date: Sat, 28 Apr 2012 13:53:36 -0100 Subject: [PATCH] uComponents: Class to define the data-type GUIDs (for 3rd party reference) --- components/editorControls/DataTypeGuids.cs | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 components/editorControls/DataTypeGuids.cs diff --git a/components/editorControls/DataTypeGuids.cs b/components/editorControls/DataTypeGuids.cs new file mode 100644 index 0000000000..317963738a --- /dev/null +++ b/components/editorControls/DataTypeGuids.cs @@ -0,0 +1,33 @@ +namespace umbraco.editorControls +{ + /// + /// Defines the Guids for all the DataTypes; e.g. quick access to 3rd-party developers. + /// + public static class DataTypeGuids + { + /// + /// Guid for the MultiNodeTreePicker data-type. + /// + public const string MultiNodeTreePickerId = "7E062C13-7C41-4AD9-B389-41D88AEEF87C"; + + /// + /// Guid for the MultipleTextstring data-type. + /// + public const string MultipleTextstringId = "5359AD0B-06CC-4182-92BD-0A9117448D3F"; + + /// + /// Guid for the Slider data-type. + /// + public const string SliderId = "29E790E6-26B3-438A-B21F-908663A0B19E"; + + /// + /// Guid for the XPathCheckBoxList data-type. + /// + public const string XPathCheckBoxListId = "34451D92-D270-49BA-8C7F-EE55BFEEE1CB"; + + /// + /// Guid for the XPathDropDownList data-type. + /// + public const string XPathDropDownListId = "173A96AE-00ED-4A7C-9F76-4B53D4A0A1B9"; + } +} \ No newline at end of file