Extends Plone content with metadata about the last modifier
Project description
Introduction
collective.lastmodifier provides support for storing the user who made the last modification on a content item. It extends Archetypes-based content types with a lastModifier field using schemaextender. Further it registers an index and a metadata column in portal_catalog and enables their usage in collections.
Installation
Install collective.lastmodifier by adding it to the list of eggs in your buildout or by adding it as a dependency of your policy package. Then run buildout and restart your instance.
Go to Site Setup of your Plone site and activate the collective.lastmodifier add-on.
Last modifier adapter
In addition to the catalog index and metadata the last modifier adapter provides easy access for getting the last modifier or for setting it:
from collective.lastmodifier.interfaces import ILastModifier
last_modifier = ILastModifier(context)
last_modifier.get() # returns the user id of the last modifier
last_modifier.set(user_id) # sets the last modifier
# Or to set the last modifier even easier
from collective.lastmodifier.utils import set_last_modifier
set_last_modifier(context)
Compatibility
Runs with Plone 4.3.
It is currently only compatible with Archetypes and Dexterity.
Links
Copyright
This package is copyright by 4teamwork.
collective.lastmodifier is licensed under GNU General Public License, version 2.
Changelog
1.1.3 (2018-11-16)
Drop plone 4.2 support [Nachtalb]
Fix obsolete information in README.rst [Nachtalb]
Make set_last_modifier reusable [Nachtalb]
1.1.2 (2014-09-19)
Use IDexterityContent instead of IDexterityItem to match all dexterity contents. [cedricmessiant]
1.1.1 (2014-09-05)
Let ILastModifier fallback to the creator. [jone]
1.1.0 (2014-09-02)
Drop Plone 4.1 support. [jone]
Implement dexterity support. [jone]
Implement an ILastModifier adapter. [jone]
Implement uninstall for the package. [jone]
1.0.1 (2014-02-05)
Cleanup package and declare dependencies. [jone]
Fix maximum recursion depths in certain testing environments. This is caused by applying the patch multiple times when the ZCML is loaded multiple times. [jone]
1.0 (2012-08-15)
Initial release
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for collective.lastmodifier-1.1.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf45fc0fd9dfe33870a2a45670b149f3b746aff483bd7e4fe817d1d514d969fa |
|
MD5 | 5a9fa993b8a9da067f185f576d5372c0 |
|
BLAKE2b-256 | 992a85cc03b6b7f32c8cb1fa070165e6f51298357a4be0a9cd985fa673093381 |