Files
mayan-edms/mayan/apps/metadata/methods.py
Roberto Rosario 0e86f2ad8a Refactor the model accesors
Refactor the accesors to behave like methods instead of properties.
This means all accesors will be prepended with the string
"get_" and will include a set of parenthesis.

Improve the ModeAttribute class to use the method's
short_description. This commit also adds support for a
new method .help_text attribute has been added.

Move accessors to their own module, named "methods.py".

Remove the PropertyHelper class as the accessors no longer
need it.

Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
2018-12-15 04:49:40 -04:00

16 lines
391 B
Python

from __future__ import unicode_literals
from django.utils.translation import ugettext_lazy as _
def method_get_metadata(self, internal_name):
return self.metadata.get(metadata_type__name=internal_name)
method_get_metadata.short_description = _(
'get_metadata(< metadata type internal name >)'
)
method_get_metadata.help_text = _(
'Return the specified document metadata.'
)