-
-
Notifications
You must be signed in to change notification settings - Fork 57
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
Add api.content.get_parents #531
Comments
https://community.plone.org/t/best-way-to-get-the-object-parent/19633 here some ideas and discussion. In particular we could add an option to get the parent with or without aq_inner. |
I think it should rather be |
I consider this something interesting to have in For me the function signature should be: def iter_ancestors(obj, function=None, interface=None): In that case the closest one can be fetched with: next(iter_ancestors(obj, ...), None) |
It would be nice to provide an API for iterating through all of an object's parents. It can be implemented using Acquisition.aq_chain
Nice to have: Provide a way to filter the parents for ones that implement a particular interface or match a predicate. Provide a way to get the closest parent that matches these filters (if any).
The text was updated successfully, but these errors were encountered: