Reputation: 19
What are the benefits of reusing an existing field for a content type?
Alternatively, what are the benefits of making a new field for a new content type?
For example, I have a content type called 'Book Review' with a field labeled 'Summary'. I'd like to create a new content type called 'Movie Review' and also give it a field called 'Summary'.
Upvotes: 1
Views: 435
Reputation: 2458
Benefits of reusing an existing field
Benefits of using different(new) fields
My preferred choice
Upvotes: 1
Reputation: 1273
Reusing same field - Let you handle the field at one place. Code handling + theming. Making a new field - summery is not a good example, since you have a built in text area given by Drupal. Adding an image field with the same preset size for both (movie & book) will give you the ability to show images on each content type and let them look the same if you want (without double work).
Upvotes: 0