-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Default Fallback Processor Feature #26
base: master
Are you sure you want to change the base?
Conversation
…nfig file for better readability.
…s with deployment.
… deployment then enable it once project is set up.
…ates to dynamically create content items. Fixed spelling error in setting name.
…e event will delete the item when the template is deleted.
…content item in the location specified in the config file when a template is created in a specific location specified in the config file.
…h the database the developer intends since we are dealing with events
…on methods, reduce code, and additional config file changes integrations
…ling the Default Item
… own context as needed instead of being a helper class
@@ -32,6 +35,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "04. Demo", "04. Demo", "{22 | |||
EndProject | |||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Demo.Web", "Demo.Web\Demo.Web.csproj", "{CC55891F-E4DE-4EBD-9A01-0F4498E49FCF}" | |||
EndProject | |||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".tds", ".tds", "{82477168-C91B-4DEA-BBFB-0FE78B4900CC}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This folder wasn't checked into source control and shouldn't be included in the SLN file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has been corrected!
{ | ||
using (new SecurityDisabler()) | ||
{ | ||
return field.Item; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't you be locating and returning the "Default Values Item"? This method it just returning the same item it already has.
…n the config of the application
…et the template path and remove it since we have a setting for it.
This feature allows content editors to set defaults for fields above Standard Values. However, Standard Values will override the Fallback value, which we would want.