⧼vector-jumptocontent⧽

Document fields automatic.pl

From EPrints Documentation
Revision as of 14:32, 18 August 2010 by Pm705 (talk | contribs)


Back to cfg.d

This file contains the set_document_fields_automatic function. You use this function to perform at set of actions which you want to happen automatically before the Document as part of the Document commit() step, in which the document is written to the database.

Example

$c->{set_document_defaults} = sub
{
        my( $data, $session, $eprint ) = @_;

        $data->{language} = $session->get_langid();
        $data->{security} = "public";
};