Difference between revisions of "API:EPrints/DataObj"
(4 intermediate revisions by the same user not shown) | |||
Line 15: | Line 15: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki= | + | <!-- Pod2Wiki=head_description --> |
− | == | + | ==DESCRIPTION== |
− | + | This is a base class that is inherited by [[API:EPrints/DataObj/EPrint|EPrints::DataObj::EPrint]], [[API:EPrints/DataObj/User|EPrints::DataObj::User]], [[API:EPrints/DataObj/Subject|EPrints::DataObj::Subject]] and [[API:EPrints/DataObj/Document|EPrints::DataObj::Document]] and various other classes representing data objects. | |
− | + | This class is abstract and its methods should not be called directly. | |
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | $repo = $dataobj->repository; | + | <!-- Pod2Wiki= --> |
+ | </div> | ||
+ | <!-- Pod2Wiki=head_synopsis --> | ||
+ | ===Synopsis=== | ||
+ | $dataobj = $dataset->dataobj( $id ); | ||
+ | $dataobj->delete; | ||
+ | $dataobj->commit( $force ); | ||
+ | $dataset = $dataobj->dataset; | ||
+ | $repo = $dataobj->repository; | ||
+ | $id = $dataobj->id; | ||
+ | $dataobj->set_value( $fieldname, $value ); | ||
+ | $value = $dataobj->value( $fieldname ); | ||
+ | \@value = $dataobj->value( $fieldname ); # multiple | ||
+ | $boolean = $dataobj->is_set( $fieldname ); | ||
+ | $xhtml = $dataobj->render_value( $fieldname ); | ||
+ | $xhtml = $dataobj->render_citation( $style, %opts ); | ||
+ | $uri = $dataobj->uri; | ||
+ | $string = $dataobj->export( $plugin_id, %opts ); | ||
+ | $dataobj = $dataobj->create_subobject( $fieldname, $epdata ); | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | + | <!-- Pod2Wiki= --> | |
+ | </div> | ||
+ | <!-- Pod2Wiki=head_core_metadata_fields --> | ||
+ | ==CORE METADATA FIELDS== | ||
+ | None. This is an abstract class from which real data objects inherit and then add their metadata fields. | ||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | + | <!-- Pod2Wiki= --> | |
+ | </div> | ||
+ | <!-- Pod2Wiki=head_references_and_related_objects --> | ||
+ | ==REFERENCES AND RELATED OBJECTS== | ||
+ | None. This is an abstract class from which real data objects inherit and then add their references and related objects. | ||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_instance_variables --> | ||
+ | ==INSTANCE VARIABLES== | ||
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
<span style='display:none'>User Comments</span> | <span style='display:none'>User Comments</span> | ||
Line 54: | Line 84: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki= | + | <!-- Pod2Wiki=item_$self->{changed} --> |
− | == | + | ===$self->{changed}=== |
− | |||
− | + | A reference to a hash containing the old values of metadata that has changed since his the data object was last committed. | |
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
Line 67: | Line 96: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki= | + | <!-- Pod2Wiki=item_$self->{data} --> |
− | == | + | ===$self->{data}=== |
+ | |||
+ | A reference to a hash containing the metadata of this record. | ||
+ | |||
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
<span style='display:none'>User Comments</span> | <span style='display:none'>User Comments</span> | ||
Line 76: | Line 108: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki=item_$self->{ | + | <!-- Pod2Wiki=item_$self->{dataset} --> |
− | ===$self->{ | + | ===$self->{dataset}=== |
− | + | The [[API:EPrints/DataSet|EPrints::DataSet]] to which this record belongs. | |
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
Line 88: | Line 120: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki=item_$self->{ | + | <!-- Pod2Wiki=item_$self->{non_volatile_change} --> |
− | ===$self->{ | + | ===$self->{non_volatile_change}=== |
− | + | A boolean signifying whether the current changes include at least one change to a non-volatile field. | |
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
Line 100: | Line 132: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki=item_$self->{ | + | <!-- Pod2Wiki=item_$self->{session} --> |
− | ===$self->{ | + | ===$self->{session}=== |
− | The [[API:EPrints/ | + | The current [[API:EPrints/Repository|EPrints::Repository]]. This use to be [[API:EPrints/Session|EPrints::Session]] but was replaced in later versions. See [[API:EPrints/BackCompatibility|EPrints::BackCompatibility]]. |
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
Line 112: | Line 144: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki= | + | <!-- Pod2Wiki=item_$self->{under_construction} --> |
− | == | + | ===$self->{under_construction}=== |
− | + | ||
+ | A boolean signifying if the data object is currently under construction and therefore know house-keeping should be carried out on the data object whilst set. | ||
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
Line 132: | Line 165: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki= | + | <!-- Pod2Wiki=head_constructor_methods --> |
− | === | + | ===Constructor Methods=== |
− | |||
− | |||
− | |||
− | |||
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
<span style='display:none'>User Comments</span> | <span style='display:none'>User Comments</span> | ||
Line 146: | Line 175: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_new --> | <!-- Pod2Wiki=item_new --> | ||
− | ===new=== | + | ====new==== |
$dataobj = EPrints::DataObj->new( $session, $id, [ $dataset ] ) | $dataobj = EPrints::DataObj->new( $session, $id, [ $dataset ] ) | ||
Line 161: | Line 190: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_new_from_data --> | <!-- Pod2Wiki=item_new_from_data --> | ||
− | ===new_from_data=== | + | ====new_from_data==== |
$dataobj = EPrints::DataObj->new_from_data( $session, $data, [ $dataset ] ) | $dataobj = EPrints::DataObj->new_from_data( $session, $data, [ $dataset ] ) | ||
− | Construct and and returns a new data object based on the <tt>$data</tt> hash | + | Construct and and returns a new data object based on the <tt>$data</tt> hash reference of metadata. |
− | This is usually called by [[API:EPrints/DataObj#create_from_data|create_from_data]] to ensure default | + | This is usually called by [[API:EPrints/DataObj#create_from_data|create_from_data]] to ensure default values are set for those field values not initially included in <tt>$data</tt> before this method constructs the data object. |
<tt>$dataset</tt> is determined from the class if not provided. | <tt>$dataset</tt> is determined from the class if not provided. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
Line 191: | Line 207: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_create --> | <!-- Pod2Wiki=item_create --> | ||
− | ===create=== | + | ====create==== |
$dataobj = EPrints::DataObj::create( $session, @default_data ) | $dataobj = EPrints::DataObj::create( $session, @default_data ) | ||
ABSTRACT | ABSTRACT | ||
− | Create a new object of this type in the database. | + | Create a new object of this type in the database. |
The syntax for <tt>@default_data</tt> depends on the type of data object. | The syntax for <tt>@default_data</tt> depends on the type of data object. | ||
Line 208: | Line 224: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_create_from_data --> | <!-- Pod2Wiki=item_create_from_data --> | ||
− | ===create_from_data=== | + | ====create_from_data==== |
$dataobj = EPrints::DataObj->create_from_data( $session, $data, [ $dataset ] ) | $dataobj = EPrints::DataObj->create_from_data( $session, $data, [ $dataset ] ) | ||
− | Creates and returns a new data object of this type in the database. | + | Creates and returns a new data object of this type in the database. |
<tt>$data</tt> is a structured hash reference with multiple dimensions to encompass compound, multiple and sub-object field values. | <tt>$data</tt> is a structured hash reference with multiple dimensions to encompass compound, multiple and sub-object field values. | ||
Line 217: | Line 233: | ||
<tt>$dataset</tt> is the dataset to which the new data object will belong. If this is not defined, it is determined from the class. | <tt>$dataset</tt> is the dataset to which the new data object will belong. If this is not defined, it is determined from the class. | ||
− | This will pull in defaults for unset field values in <tt>$data</tt> before | + | This will pull in defaults for unset field values in <tt>$data</tt> before calling [[API:EPrints/DataObj#new_from_data|new_from_data]]. It will also create any sub-objects as well as the main object. |
Call this via: | Call this via: | ||
− | + | ||
$dataset->create_object( $session, $data ) | $dataset->create_object( $session, $data ) | ||
Line 230: | Line 246: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki= | + | <!-- Pod2Wiki=head_class_methods --> |
− | === | + | ===Class Methods=== |
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_system_field_info --> | ||
+ | ====get_system_field_info==== | ||
+ | |||
+ | $sys_fields = EPrints::DataObj->get_system_field_info | ||
+ | Return an array describing the system metadata of the this dataset. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_defaults --> | ||
+ | ====get_defaults==== | ||
+ | |||
+ | $defaults = EPrints::DataObj->get_defaults( $session, $data, [ $dataset ] ) | ||
+ | Return default values for this object based on the starting <tt>$data</tt>. Uses the data object class to determine dataset if <tt>$dataset</tt> not set. | ||
+ | |||
+ | Should be subclassed. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_dataset_id --> | ||
+ | ====get_dataset_id==== | ||
+ | |||
+ | $dataset = EPrints::DataObj->get_dataset_id | ||
+ | Returns the ID of the [[API:EPrints/DataSet|EPrints::DataSet]] object to which this record belongs. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_xml_to_epdata --> | ||
+ | ====xml_to_epdata==== | ||
+ | |||
+ | $epdata = EPrints::DataObj->xml_to_epdata( $session, $xml, %opts ) | ||
+ | Populates <tt>$epdata</tt> based on <tt>$xml</tt> using options in <tt>%opts</tt>. This is the inverse of [[API:EPrints/DataObj#to_xml|to_xml]] but doesn't create a new object. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_export_fieldlist --> | ||
+ | ====export_fieldlist==== | ||
+ | |||
+ | EPrints::DataObj->export_fieldlist | ||
+ | Returns fields to be exported by plugins that do not have pre-defined fields to export, (e.g. {{API:PodLink|file=Export/XML|package_name=Export::XML|section=|text=Export::XML}}). | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_in_export_fieldlist --> | ||
+ | ====in_export_fieldlist==== | ||
+ | |||
+ | EPrints::DataObj->in_export_fieldlist | ||
+ | Returns whether a field is in the export fieldlist for a particular data object. Returns <tt>true</tt> if there is no fieldlist restriction. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_start_element --> | ||
+ | ====start_element==== | ||
+ | |||
+ | EPrints::DataObj->start_element( $data, $epdata, $state ) | ||
+ | Consumes a SAX event. | ||
+ | |||
+ | <tt>$data</tt> is the SAX node data. | ||
− | + | <tt>$epdata</tt> is an EPrints data structure to write values to. | |
− | |||
− | + | <tt>$state</tt> maintains state between SAX calls but must contain at least: | |
− | + | dataset - the dataset the class belongs to | |
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
Line 247: | Line 356: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki= | + | <!-- Pod2Wiki=item_end_element --> |
− | === | + | ====end_element==== |
+ | |||
+ | EPrints::DataObj->end_element( $data, $epdata, $state ) | ||
+ | Ends element from [[API:EPrints/DataObj#start_element|start_element]]. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_characters --> | ||
+ | ====characters==== | ||
+ | |||
+ | EPrints::DataObj->characters( $data, $epdata, $state ) | ||
+ | Consumes characters within [[API:EPrints/DataObj#start_element|start_element]]. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_object_methods --> | ||
+ | ===Object Methods=== | ||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_clone --> | ||
+ | ====clone==== | ||
+ | |||
+ | $clone = $dataobj->clone | ||
+ | Clone the current data object, by creating a new data object of the same type and metadata but a new ID. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
− | + | <!-- Pod2Wiki= --> | |
− | + | </div> | |
+ | <!-- Pod2Wiki=item_create_subdataobj --> | ||
+ | ====create_subdataobj==== | ||
− | + | $subdataobj = $dataobj->create_subdataobj( $fieldname, $epdata ) | |
+ | Creates and returns a new data object that is a sub-object of this object in field <tt>$fieldname</tt> with initial data <tt>$epdata</tt>. | ||
+ | |||
+ | Clears the sub-object cache for this <tt>$fieldname</tt> which is equivalent to: | ||
+ | $dataobj->set_value( $fieldname, undef ); | ||
+ | |||
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
<span style='display:none'>User Comments</span> | <span style='display:none'>User Comments</span> | ||
Line 262: | Line 421: | ||
<!-- Pod2Wiki= --> | <!-- Pod2Wiki= --> | ||
</div> | </div> | ||
− | <!-- Pod2Wiki= | + | <!-- Pod2Wiki=item_local_path --> |
− | === | + | ====local_path==== |
− | $ | + | $local_path = $dataobj->local_path |
− | Return | + | Return local_path string for the history of the data object. |
Should be subclassed. | Should be subclassed. | ||
Line 278: | Line 437: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_update_triggers --> | <!-- Pod2Wiki=item_update_triggers --> | ||
− | ===update_triggers=== | + | ====update_triggers==== |
$dataobj->update_triggers | $dataobj->update_triggers | ||
Line 291: | Line 450: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_delete --> | <!-- Pod2Wiki=item_delete --> | ||
− | ===delete=== | + | ====delete==== |
$success = $dataobj->delete | $success = $dataobj->delete | ||
Line 310: | Line 469: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_empty --> | <!-- Pod2Wiki=item_empty --> | ||
− | ===empty=== | + | ====empty==== |
− | $dataobj->empty | + | $dataobj->empty |
Remove all of this object's values that may be imported. | Remove all of this object's values that may be imported. | ||
Line 323: | Line 482: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_update --> | <!-- Pod2Wiki=item_update --> | ||
− | ===update=== | + | ====update==== |
$dataobj->update( $epdata [, %opts ] ) | $dataobj->update( $epdata [, %opts ] ) | ||
Line 347: | Line 506: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_set_under_construction --> | <!-- Pod2Wiki=item_set_under_construction --> | ||
− | ===set_under_construction=== | + | ====set_under_construction==== |
$dataobj->set_under_construction( $boolean ) | $dataobj->set_under_construction( $boolean ) | ||
Line 360: | Line 519: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_under_construction --> | <!-- Pod2Wiki=item_under_construction --> | ||
− | ===under_construction=== | + | ====under_construction==== |
$boolean = $dataobj->under_construction | $boolean = $dataobj->under_construction | ||
Line 373: | Line 532: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_clear_changed --> | <!-- Pod2Wiki=item_clear_changed --> | ||
− | ===clear_changed=== | + | ====clear_changed==== |
$dataobj->clear_changed | $dataobj->clear_changed | ||
Line 388: | Line 547: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_clear_citationcaches --> | <!-- Pod2Wiki=item_clear_citationcaches --> | ||
− | ===clear_citationcaches=== | + | ====clear_citationcaches==== |
− | $dataobj->clear_citationcaches | + | $dataobj->clear_citationcaches |
− | Clear any | + | Clear any [[API:EPrints/DataObj/CitationCache|EPrints::DataObj::CitationCache]] objects associated with the data object. |
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
Line 401: | Line 560: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_commit --> | <!-- Pod2Wiki=item_commit --> | ||
− | ===commit=== | + | ====commit==== |
$success = $dataobj->commit( [ $force ] ) | $success = $dataobj->commit( [ $force ] ) | ||
Line 418: | Line 577: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_value --> | <!-- Pod2Wiki=item_value --> | ||
− | ===value=== | + | ====value==== |
$value = $dataobj->value( $fieldname ) | $value = $dataobj->value( $fieldname ) | ||
Line 435: | Line 594: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_set_value --> | <!-- Pod2Wiki=item_set_value --> | ||
− | ===set_value=== | + | ====set_value==== |
$dataobj->set_value( $fieldname, $value ) | $dataobj->set_value( $fieldname, $value ) | ||
Line 448: | Line 607: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_set_value_raw --> | <!-- Pod2Wiki=item_set_value_raw --> | ||
− | ===set_value_raw=== | + | ====set_value_raw==== |
$dataobj->set_value_raw( $fieldname, $value ) | $dataobj->set_value_raw( $fieldname, $value ) | ||
Line 461: | Line 620: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_get_values --> | <!-- Pod2Wiki=item_get_values --> | ||
− | ===get_values=== | + | ====get_values==== |
@values = $dataobj->get_values( $fieldnames ) | @values = $dataobj->get_values( $fieldnames ) | ||
Line 476: | Line 635: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_repository --> | <!-- Pod2Wiki=item_repository --> | ||
− | ===repository=== | + | ====repository==== |
$session = $dataobj->repository | $session = $dataobj->repository | ||
Line 493: | Line 652: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_get_data --> | <!-- Pod2Wiki=item_get_data --> | ||
− | ===get_data=== | + | ====get_data==== |
$data = $dataobj->get_data | $data = $dataobj->get_data | ||
Returns a reference to the hash of all the metadata for this record keyed by fieldname. | Returns a reference to the hash of all the metadata for this record keyed by fieldname. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
Line 519: | Line 665: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_get_dataset --> | <!-- Pod2Wiki=item_get_dataset --> | ||
− | ===get_dataset=== | + | ====get_dataset==== |
$dataset = $dataobj->get_dataset | $dataset = $dataobj->get_dataset | ||
Line 532: | Line 678: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_is_set --> | <!-- Pod2Wiki=item_is_set --> | ||
− | ===is_set=== | + | ====is_set==== |
$boolean = $dataobj->is_set( $fieldname ) | $boolean = $dataobj->is_set( $fieldname ) | ||
Line 547: | Line 693: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_exists_and_set --> | <!-- Pod2Wiki=item_exists_and_set --> | ||
− | ===exists_and_set=== | + | ====exists_and_set==== |
$boolean = $dataobj->exists_and_set( $fieldname ) | $boolean = $dataobj->exists_and_set( $fieldname ) | ||
Line 564: | Line 710: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_id --> | <!-- Pod2Wiki=item_id --> | ||
− | ===id=== | + | ====id==== |
$id = $dataobj->id | $id = $dataobj->id | ||
Line 581: | Line 727: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_get_gid --> | <!-- Pod2Wiki=item_get_gid --> | ||
− | ===get_gid=== | + | ====get_gid==== |
$gid = $dataobj->get_gid | $gid = $dataobj->get_gid | ||
Line 596: | Line 742: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_get_datestamp --> | <!-- Pod2Wiki=item_get_datestamp --> | ||
− | ===get_datestamp=== | + | ====get_datestamp==== |
$datestamp = $dataobj->get_datestamp | $datestamp = $dataobj->get_datestamp | ||
Line 609: | Line 755: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_render_value --> | <!-- Pod2Wiki=item_render_value --> | ||
− | ===render_value=== | + | ====render_value==== |
$xhtml = $dataobj->render_value( $fieldname, [ $showall ] ) | $xhtml = $dataobj->render_value( $fieldname, [ $showall ] ) | ||
Line 622: | Line 768: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_render_citation --> | <!-- Pod2Wiki=item_render_citation --> | ||
− | ===render_citation=== | + | ====render_citation==== |
$xhtml = $dataobj->render_citation( [ $style, %params ] ) | $xhtml = $dataobj->render_citation( [ $style, %params ] ) | ||
Line 637: | Line 783: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_render_citation_link --> | <!-- Pod2Wiki=item_render_citation_link --> | ||
− | ===render_citation_link=== | + | ====render_citation_link==== |
$xhtml = $dataobj->render_citation_link( [ $style, %params ] ) | $xhtml = $dataobj->render_citation_link( [ $style, %params ] ) | ||
Line 652: | Line 798: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_render_citation_link --> | <!-- Pod2Wiki=item_render_citation_link --> | ||
− | ===render_citation_link=== | + | ====render_citation_link==== |
$xhtml = $dataobj->render_citation_link( [ $style, %params ] ) | $xhtml = $dataobj->render_citation_link( [ $style, %params ] ) | ||
Line 665: | Line 811: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_render_description --> | <!-- Pod2Wiki=item_render_description --> | ||
− | ===render_description=== | + | ====render_description==== |
$xhtml = $dataobj->render_description | $xhtml = $dataobj->render_description | ||
Line 678: | Line 824: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_render --> | <!-- Pod2Wiki=item_render --> | ||
− | ===render=== | + | ====render==== |
( $xhtml, $title ) = $dataobj->render | ( $xhtml, $title ) = $dataobj->render | ||
Line 691: | Line 837: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_render_full --> | <!-- Pod2Wiki=item_render_full --> | ||
− | ===render_full=== | + | ====render_full==== |
$xhtml = $dataobj->render_full | $xhtml = $dataobj->render_full | ||
Line 704: | Line 850: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_render_export_links --> | <!-- Pod2Wiki=item_render_export_links --> | ||
− | ===render_export_links=== | + | ====render_export_links==== |
$xhtml_ul_list = $dataobj->render_export_links( [ $staff ] ) | $xhtml_ul_list = $dataobj->render_export_links( [ $staff ] ) | ||
Line 719: | Line 865: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_render_export_bar --> | <!-- Pod2Wiki=item_render_export_bar --> | ||
− | ===render_export_bar=== | + | ====render_export_bar==== |
$xhtml = $dataobj->render_export_bar( [ $staff ] ) | $xhtml = $dataobj->render_export_bar( [ $staff ] ) | ||
Line 734: | Line 880: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_uri --> | <!-- Pod2Wiki=item_uri --> | ||
− | ===uri=== | + | ====uri==== |
$url = $dataobj->uri | $url = $dataobj->uri | ||
Line 749: | Line 895: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_internal_uri --> | <!-- Pod2Wiki=item_internal_uri --> | ||
− | ===internal_uri=== | + | ====internal_uri==== |
$uri = $dataobj->internal_uri | $uri = $dataobj->internal_uri | ||
Line 764: | Line 910: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_path --> | <!-- Pod2Wiki=item_path --> | ||
− | ===path=== | + | ====path==== |
$path = $dataobj->path | $path = $dataobj->path | ||
Line 779: | Line 925: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_url --> | <!-- Pod2Wiki=item_url --> | ||
− | ===url=== | + | ====url==== |
$url = $dataobj->url | $url = $dataobj->url | ||
Line 796: | Line 942: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_get_control_url --> | <!-- Pod2Wiki=item_get_control_url --> | ||
− | ===get_control_url=== | + | ====get_control_url==== |
$url = $dataobj->get_control_url | $url = $dataobj->get_control_url | ||
Line 809: | Line 955: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_get_type --> | <!-- Pod2Wiki=item_get_type --> | ||
− | ===get_type=== | + | ====get_type==== |
$type = $dataobj->get_type | $type = $dataobj->get_type | ||
Line 824: | Line 970: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_to_xml --> | <!-- Pod2Wiki=item_to_xml --> | ||
− | ===to_xml=== | + | ====to_xml==== |
$xmlfragment = $dataobj->to_xml( %opts ) | $xmlfragment = $dataobj->to_xml( %opts ) | ||
Line 837: | Line 983: | ||
embed - Include the data of a file, not just it's URL. | embed - Include the data of a file, not just it's URL. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
<span style='display:none'>User Comments</span> | <span style='display:none'>User Comments</span> | ||
Line 858: | Line 991: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_to_sax --> | <!-- Pod2Wiki=item_to_sax --> | ||
− | ===to_sax=== | + | ====to_sax==== |
$dataobj->to_sax( %opts ) | $dataobj->to_sax( %opts ) | ||
Line 869: | Line 1,002: | ||
This does not output any document-level events. | This does not output any document-level events. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
Line 951: | Line 1,011: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_export --> | <!-- Pod2Wiki=item_export --> | ||
− | ===export=== | + | ====export==== |
$plugin_output = $dataobj->export( $plugin_id, %params ) | $plugin_output = $dataobj->export( $plugin_id, %params ) | ||
Line 966: | Line 1,026: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_queue_changes --> | <!-- Pod2Wiki=item_queue_changes --> | ||
− | ===queue_changes=== | + | ====queue_changes==== |
$dataobj->queue_changes | $dataobj->queue_changes | ||
Line 979: | Line 1,039: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_queue_all --> | <!-- Pod2Wiki=item_queue_all --> | ||
− | ===queue_all=== | + | ====queue_all==== |
$dataobj->queue_all | $dataobj->queue_all | ||
Line 992: | Line 1,052: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_queue_fulltext --> | <!-- Pod2Wiki=item_queue_fulltext --> | ||
− | ===queue_fulltext=== | + | ====queue_fulltext==== |
$dataobj->queue_fulltext | $dataobj->queue_fulltext | ||
Line 1,005: | Line 1,065: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_queue_removed --> | <!-- Pod2Wiki=item_queue_removed --> | ||
− | ===queue_removed=== | + | ====queue_removed==== |
$dataobj->queue_removed | $dataobj->queue_removed | ||
Line 1,018: | Line 1,078: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_has_owner --> | <!-- Pod2Wiki=item_has_owner --> | ||
− | ===has_owner=== | + | ====has_owner==== |
$boolean = $dataobj->has_owner( $user ) | $boolean = $dataobj->has_owner( $user ) | ||
Line 1,033: | Line 1,093: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_permit --> | <!-- Pod2Wiki=item_permit --> | ||
− | ===permit=== | + | ====permit==== |
$rc = $dataobj->permit( $priv, [ $user ] ) | $rc = $dataobj->permit( $priv, [ $user ] ) | ||
Line 1,066: | Line 1,126: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_in_editorial_scope_of --> | <!-- Pod2Wiki=item_in_editorial_scope_of --> | ||
− | ===in_editorial_scope_of=== | + | ====in_editorial_scope_of==== |
$boolean = $dataobj->in_editorial_scope_of( $user ) | $boolean = $dataobj->in_editorial_scope_of( $user ) | ||
Line 1,081: | Line 1,141: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_validate --> | <!-- Pod2Wiki=item_validate --> | ||
− | ===validate=== | + | ====validate==== |
$problems = $dataobj->validate( $for_archive ) | $problems = $dataobj->validate( $for_archive ) | ||
Line 1,098: | Line 1,158: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_get_warnings --> | <!-- Pod2Wiki=item_get_warnings --> | ||
− | ===get_warnings=== | + | ====get_warnings==== |
$warnings = $dataobj->get_warnings | $warnings = $dataobj->get_warnings | ||
Line 1,113: | Line 1,173: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_validate_field --> | <!-- Pod2Wiki=item_validate_field --> | ||
− | ===validate_field=== | + | ====validate_field==== |
@problems = $dataobj->validate_field( $fieldname ) | @problems = $dataobj->validate_field( $fieldname ) | ||
Line 1,130: | Line 1,190: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_tidy --> | <!-- Pod2Wiki=item_tidy --> | ||
− | ===tidy=== | + | ====tidy==== |
$dataobj->tidy | $dataobj->tidy | ||
Line 1,143: | Line 1,203: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_add_stored_file --> | <!-- Pod2Wiki=item_add_stored_file --> | ||
− | ===add_stored_file=== | + | ====add_stored_file==== |
$file = $dataobj->add_stored_file( $filename, $filehandle, $filesize ) | $file = $dataobj->add_stored_file( $filename, $filehandle, $filesize ) | ||
Line 1,158: | Line 1,218: | ||
</div> | </div> | ||
<!-- Pod2Wiki=item_stored_file --> | <!-- Pod2Wiki=item_stored_file --> | ||
− | ===stored_file=== | + | ====stored_file==== |
$file = $dataobj->stored_file( $filename ) | $file = $dataobj->stored_file( $filename ) | ||
Line 1,169: | Line 1,229: | ||
$dataobj->get_stored_file( $filename ) | $dataobj->get_stored_file( $filename ) | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
<span style='display:none'>User Comments</span> | <span style='display:none'>User Comments</span> |
Latest revision as of 16:41, 10 January 2022
EPrints 3 Reference: Directory Structure - Metadata Fields - Repository Configuration - XML Config Files - XML Export Format - EPrints data structure - Core API - Data Objects
Latest Source Code (3.4, 3.3) | Revision Log | Before editing this page please read Pod2Wiki
Contents
- 1 NAME
- 2 DESCRIPTION
- 3 CORE METADATA FIELDS
- 4 REFERENCES AND RELATED OBJECTS
- 5 INSTANCE VARIABLES
- 6 METHODS
- 6.1 Constructor Methods
- 6.2 Class Methods
- 6.3 Object Methods
- 6.3.1 clone
- 6.3.2 create_subdataobj
- 6.3.3 local_path
- 6.3.4 update_triggers
- 6.3.5 delete
- 6.3.6 empty
- 6.3.7 update
- 6.3.8 set_under_construction
- 6.3.9 under_construction
- 6.3.10 clear_changed
- 6.3.11 clear_citationcaches
- 6.3.12 commit
- 6.3.13 value
- 6.3.14 set_value
- 6.3.15 set_value_raw
- 6.3.16 get_values
- 6.3.17 repository
- 6.3.18 get_data
- 6.3.19 get_dataset
- 6.3.20 is_set
- 6.3.21 exists_and_set
- 6.3.22 id
- 6.3.23 get_gid
- 6.3.24 get_datestamp
- 6.3.25 render_value
- 6.3.26 render_citation
- 6.3.27 render_citation_link
- 6.3.28 render_citation_link
- 6.3.29 render_description
- 6.3.30 render
- 6.3.31 render_full
- 6.3.32 render_export_links
- 6.3.33 render_export_bar
- 6.3.34 uri
- 6.3.35 internal_uri
- 6.3.36 path
- 6.3.37 url
- 6.3.38 get_control_url
- 6.3.39 get_type
- 6.3.40 to_xml
- 6.3.41 to_sax
- 6.3.42 export
- 6.3.43 queue_changes
- 6.3.44 queue_all
- 6.3.45 queue_fulltext
- 6.3.46 queue_removed
- 6.3.47 has_owner
- 6.3.48 permit
- 6.3.49 in_editorial_scope_of
- 6.3.50 validate
- 6.3.51 get_warnings
- 6.3.52 validate_field
- 6.3.53 tidy
- 6.3.54 add_stored_file
- 6.3.55 stored_file
- 6.3.56 add_dataobj_relations
- 6.3.57 has_dataobj_relations
- 6.3.58 has_related_dataobjs
- 6.3.59 related_dataobjs
- 6.3.60 remove_dataobj_relations
- 7 SEE ALSO
- 8 COPYRIGHT
NAME
EPrints::DataObj - Base class for records in EPrints.
DESCRIPTION
This is a base class that is inherited by EPrints::DataObj::EPrint, EPrints::DataObj::User, EPrints::DataObj::Subject and EPrints::DataObj::Document and various other classes representing data objects.
This class is abstract and its methods should not be called directly.
Synopsis
$dataobj = $dataset->dataobj( $id ); $dataobj->delete; $dataobj->commit( $force ); $dataset = $dataobj->dataset; $repo = $dataobj->repository; $id = $dataobj->id; $dataobj->set_value( $fieldname, $value ); $value = $dataobj->value( $fieldname ); \@value = $dataobj->value( $fieldname ); # multiple $boolean = $dataobj->is_set( $fieldname ); $xhtml = $dataobj->render_value( $fieldname ); $xhtml = $dataobj->render_citation( $style, %opts ); $uri = $dataobj->uri; $string = $dataobj->export( $plugin_id, %opts ); $dataobj = $dataobj->create_subobject( $fieldname, $epdata );
CORE METADATA FIELDS
None. This is an abstract class from which real data objects inherit and then add their metadata fields.
REFERENCES AND RELATED OBJECTS
None. This is an abstract class from which real data objects inherit and then add their references and related objects.
INSTANCE VARIABLES
$self->{changed}
A reference to a hash containing the old values of metadata that has changed since his the data object was last committed.
$self->{data}
A reference to a hash containing the metadata of this record.
$self->{dataset}
The EPrints::DataSet to which this record belongs.
$self->{non_volatile_change}
A boolean signifying whether the current changes include at least one change to a non-volatile field.
$self->{session}
The current EPrints::Repository. This use to be EPrints::Session but was replaced in later versions. See EPrints::BackCompatibility.
$self->{under_construction}
A boolean signifying if the data object is currently under construction and therefore know house-keeping should be carried out on the data object whilst set.
METHODS
Constructor Methods
new
$dataobj = EPrints::DataObj->new( $session, $id, [ $dataset ] )
Return new data object, created by loading it from the database.
If $dataset is not defined uses the default dataset for this object.
new_from_data
$dataobj = EPrints::DataObj->new_from_data( $session, $data, [ $dataset ] )
Construct and and returns a new data object based on the $data hash reference of metadata.
This is usually called by create_from_data to ensure default values are set for those field values not initially included in $data before this method constructs the data object.
$dataset is determined from the class if not provided.
create
$dataobj = EPrints::DataObj::create( $session, @default_data )
ABSTRACT
Create a new object of this type in the database.
The syntax for @default_data depends on the type of data object.
create_from_data
$dataobj = EPrints::DataObj->create_from_data( $session, $data, [ $dataset ] )
Creates and returns a new data object of this type in the database.
$data is a structured hash reference with multiple dimensions to encompass compound, multiple and sub-object field values.
$dataset is the dataset to which the new data object will belong. If this is not defined, it is determined from the class.
This will pull in defaults for unset field values in $data before calling new_from_data. It will also create any sub-objects as well as the main object.
Call this via:
$dataset->create_object( $session, $data )
Class Methods
get_system_field_info
$sys_fields = EPrints::DataObj->get_system_field_info
Return an array describing the system metadata of the this dataset.
get_defaults
$defaults = EPrints::DataObj->get_defaults( $session, $data, [ $dataset ] )
Return default values for this object based on the starting $data. Uses the data object class to determine dataset if $dataset not set.
Should be subclassed.
get_dataset_id
$dataset = EPrints::DataObj->get_dataset_id
Returns the ID of the EPrints::DataSet object to which this record belongs.
xml_to_epdata
$epdata = EPrints::DataObj->xml_to_epdata( $session, $xml, %opts )
Populates $epdata based on $xml using options in %opts. This is the inverse of to_xml but doesn't create a new object.
export_fieldlist
EPrints::DataObj->export_fieldlist
Returns fields to be exported by plugins that do not have pre-defined fields to export, (e.g. Export::XML).
in_export_fieldlist
EPrints::DataObj->in_export_fieldlist
Returns whether a field is in the export fieldlist for a particular data object. Returns true if there is no fieldlist restriction.
start_element
EPrints::DataObj->start_element( $data, $epdata, $state )
Consumes a SAX event.
$data is the SAX node data.
$epdata is an EPrints data structure to write values to.
$state maintains state between SAX calls but must contain at least:
dataset - the dataset the class belongs to
end_element
EPrints::DataObj->end_element( $data, $epdata, $state )
Ends element from start_element.
characters
EPrints::DataObj->characters( $data, $epdata, $state )
Consumes characters within start_element.
Object Methods
clone
$clone = $dataobj->clone
Clone the current data object, by creating a new data object of the same type and metadata but a new ID.
create_subdataobj
$subdataobj = $dataobj->create_subdataobj( $fieldname, $epdata )
Creates and returns a new data object that is a sub-object of this object in field $fieldname with initial data $epdata.
Clears the sub-object cache for this $fieldname which is equivalent to:
$dataobj->set_value( $fieldname, undef );
local_path
$local_path = $dataobj->local_path
Return local_path string for the history of the data object.
Should be subclassed.
update_triggers
$dataobj->update_triggers
Update all the stuff that needs to be updated before the data object is written to the database.
delete
$success = $dataobj->delete
Delete this data object from the database and any sub-objects or related files.
Alias for:
$dataobj->remove
Return true if successful.
empty
$dataobj->empty
Remove all of this object's values that may be imported.
update
$dataobj->update( $epdata [, %opts ] )
Update this object's values from $epdata. Ignores any values that do not exist in the dataset or do not have the 'import' property set.
include_subdataobjs - replace sub-dataobjs if given # replaces all documents in $dataobj $dataobj->update( { title => "Wombats on Fire", documents => [{ main => "wombat.pdf", ... }], }, include_subdataobjs => 1 );
set_under_construction
$dataobj->set_under_construction( $boolean )
Set a flag to indicate this object is being constructed and any house keeping will be handled by the method constructing it so don't do it elsewhere.
under_construction
$boolean = $dataobj->under_construction
Returns c<true> if this object is part way through being constructed.
clear_changed
$dataobj->clear_changed
Clear any changed fields, which will result in them not being committed unless force is used.
This method is used by the EPrints::Database to avoid unnecessary commits.
clear_citationcaches
$dataobj->clear_citationcaches
Clear any EPrints::DataObj::CitationCache objects associated with the data object.
commit
$success = $dataobj->commit( [ $force ] )
Write this object to the database and reset the changed fields.
If $force isn't true then it only actually modifies the database if one or more fields have been changed.
Commit may also queue indexer jobs or log changes, depending on the object.
value
$value = $dataobj->value( $fieldname )
Get a the value of a metadata field with $fieldname. If the field is not set then it returns undef unless the field has the property multiple set, in which case it returns [] (a reference to an empty a rray).
Alias for:
$dataobj->get_value( $fieldname )
set_value
$dataobj->set_value( $fieldname, $value )
Set the $value of the named metadata field $fieldname for this data object.
set_value_raw
$dataobj->set_value_raw( $fieldname, $value )
Set the $value of the named metadata field $fieldname for this data object by directly modifying its data hash reference. Use with care!
get_values
@values = $dataobj->get_values( $fieldnames )
Returns a list of all the values in this record of all the $fields specified by $fieldnames. These should be in the format used by browse views, using / to seperate individual field names with an optional .id suffix to indicate the ID part rather than the main part.
E.g. author.id/editor.id would return a list of all author and editor IDs from this record.
repository
$session = $dataobj->repository
Returns the EPrints::Repository object to which this record belongs.
Alias for:
$dataobj->get_session
get_data
$data = $dataobj->get_data
Returns a reference to the hash of all the metadata for this record keyed by fieldname.
get_dataset
$dataset = $dataobj->get_dataset
Returns the EPrints::DataSet object to which this record belongs.
is_set
$boolean = $dataobj->is_set( $fieldname )
Returns true if the field with $fieldname is set in this record, otherwise false.
Warns if the field with $fieldname does not exist.
exists_and_set
$boolean = $dataobj->exists_and_set( $fieldname )
Returns true if the field with $fieldname is set in this record, otherwise false.
If the field does not exist, just return false.
This method is useful for plugins which may operate on multiple repositories, when field not existing is not an issue for a particular repository.
id
$id = $dataobj->id
Returns the value of the primary key of this record.
Alias for:
$dataobj->get_id
get_gid
$gid = $dataobj->get_gid
DEPRECATED (see uri)
Returns the globally referential fully-qualified identifier for this data object or undef if this object can not be externally referenced.
get_datestamp
$datestamp = $dataobj->get_datestamp
Returns the datestamp of this object in "YYYY-MM-DD hh:mm:ss" format.
render_value
$xhtml = $dataobj->render_value( $fieldname, [ $showall ] )
Returns the rendered version of the value of the given $fieldname as appropriate for the current session. If $showall is true then all values are rendered - this is usually used for staff viewing data.
render_citation
$xhtml = $dataobj->render_citation( [ $style, %params ] )
Renders the record as a citation. If $style is set then it uses that citation style from the citations config file. Otherwise $style defaults to the type of this record. If $params{url} is set then the citation will link to the specified URL.
If $style is unset then use default.
render_citation_link
$xhtml = $dataobj->render_citation_link( [ $style, %params ] )
Renders a citation as like render_citation but as a link to the URL for this item. E.g. the abstract page of an eprint.
$params{url} is set to data object's URL if not set.
render_citation_link
$xhtml = $dataobj->render_citation_link( [ $style, %params ] )
Renders a citation as like render_citation but as a link to the control URL for this item. E.g. for items that are not yet in the live archive.
render_description
$xhtml = $dataobj->render_description
Returns a short description of this object using the brief citation style for this dataset or the default citation style of the former does not exist.
render
( $xhtml, $title ) = $dataobj->render
Return a chunk of XHTML DOM describing this object in the normal way. This is the public view of the record, not the staff view.
render_full
$xhtml = $dataobj->render_full
Return an XHTML table in DOM describing this record. All values of all fields are listed. This is the staff view.
render_export_links
$xhtml_ul_list = $dataobj->render_export_links( [ $staff ] )
Return a <ul> list containing links to all the formats this eprint is available in.
If $staff is true then show all formats available to staff and link to the staff export URL.
render_export_bar
$xhtml = $dataobj->render_export_bar( [ $staff ] )
Returns a rendered drop-down list of exports.
If $staff is true then include both public and staff visible export options.
uri
$url = $dataobj->uri
Returns a unique URI for this object. Not certain to resolve as a URL.
If $c-{dataobj_uri}->{eprint}> is a function, call that to work it out.
internal_uri
$uri = $dataobj->internal_uri
Return an internal URI for this object (independent of repository hostname).
To retrieve an object by internal URI use EPrints::DataSet::get_object_from_uri().
path
$path = $dataobj->path
Returns the relative path to this object from the repository's base URL, if the object has a URL.
Does not include any leading slash.
url
$url = $dataobj->url
Returns the URL for this record, e.g.the URL of the abstract page of an eprint.
Alias for:
$dataobj->get_url
get_control_url
$url = $dataobj->get_control_url
Returns the URL for the control page for this object.
get_type
$type = $dataobj->get_type
ABSTRACT.
Returns the type of this data object. This not the dataset it belongs to but the specific type within the dataset (e.g. c<user> could be editor, admin, etc.).
to_xml
$xmlfragment = $dataobj->to_xml( %opts )
Convert this object into an XML fragment using options %opts.
Options:
no_xmlns - Do not include a xmlns attribute in the outer element. (This assumes this chunk appears in a larger tree where the xmlns is already set correctly. showempty - Fields with no value are shown. embed - Include the data of a file, not just it's URL.
to_sax
$dataobj->to_sax( %opts )
Stream this object to a SAX handler using the options in $opts.
Options:
Handler - the SAX handler to build the output. revision_generation - Generate XML for revision files rather than export.
This does not output any document-level events.
export
$plugin_output = $dataobj->export( $plugin_id, %params )
Apply an export plugin with $plugin_id to this data object, using the parameters provided by %params and supplying them to the output_dataobj method of the EPrints::Plugin:Export plugin.
Return the output of the export plugin.
queue_changes
$dataobj->queue_changes
Add all the changed fields into the indexers todo queue.
queue_all
$dataobj->queue_all
Add all the fields into the indexers todo queue.
queue_fulltext
$dataobj->queue_fulltext
Add a fulltext index into the indexers todo queue.
queue_removed
$dataobj->queue_removed
Add an index removed event to the indexer's queue.
has_owner
$boolean = $dataobj->has_owner( $user )
Return true if $user owns this record. Normally this means they created it, but a group of users could count as owners of the same record if you wanted.
It's false on most data objects, except those which override this method.
permit
$rc = $dataobj->permit( $priv, [ $user ] ) # current user can edit via editorial role if( $dataobj->permit( "xxx/edit", $user ) & 8 ) { ... } # anyone can view this object if( $dataobj->permit( "xxx/view" ) ) { }
Returns true if the specified $user (or 'anybody') can perform this action.
Returns a bit mask where:
0 - not permitted 1 - anybody 2 - logged in user 4 - user as owner 8 - user as editor
See also EPrints::Repository/allow_anybody and EPrints::DataObj::User/allow.
in_editorial_scope_of
$boolean = $dataobj->in_editorial_scope_of( $user )
As for has_owner, but if the $user is identified as someone with an editorial scope which includes this record.
Defaults to true. Which doesn't mean that they have the right to edit it, just that their scope matches. You also need editor rights to use this. It's currently used just to filter eprint editors so that only ones with appropriate scope and privilege can edit.
validate
$problems = $dataobj->validate( $for_archive )
Validate this data object. Not used on all sub-classed. $for_archive being true indicates that the item is beting validated to go live.
Returns a reference to an array of XHTML DOM objects describing validation problems with the entire data object for the supplied $for_archive archive ID.
A reference to an empty array indicates no problems.
get_warnings
$warnings = $dataobj->get_warnings
Returns a reference to an array of XHTML DOM objects describing problems with the entire data object.
A reference to an empty array indicates no problems.
validate_field
@problems = $dataobj->validate_field( $fieldname )
Check if a field named $fieldname is valid.
Returns a reference to an array of XHTML problems.
A reference to an empty array indicates no problems.
tidy
$dataobj->tidy
Cleans up any multiple fields with gaps.
add_stored_file
$file = $dataobj->add_stored_file( $filename, $filehandle, $filesize )
Convenience method to add (or replace) the file record for $filename to this object. Reads $filesize bytes from $filehandle.
Returns the file object or undef if the storage failed.
stored_file
$file = $dataobj->stored_file( $filename )
Get the file object for $filename.
Returns the file object or undef if the file doesn't exist.
Has alias:
$dataobj->get_stored_file( $filename )
add_dataobj_relations
$dataobj->add_dataobj_relations( $target, %relations )
Add a relation from this data object to the $target data object using predicates defined in the keys of the %relations hash. If values are defined in the hash reciprocal relationships from the $target data object to this data object are also.
You must commit $target data object after calling this method.
Has alias:
$dataobj->add_object_relations( $target, %relations )
has_dataobj_relations
$boolean = $dataobj->has_dataobj_relations( $target, @required )
Returns true if this object is related to $target by all @required.
If @required is empty will return true if any relationships exist.
Has alias:
$dataobj->has_object_relations( $target, @required )
$boolean = $dataobj->has_related_dataobjs( @required )
Returns true if related_dataobjs would return some objects but without actually retrieving the related objects from the database.
Has alias:
$dataobj->has_related_objects( @required )
@dataobjs = $dataobj->related_dataobjs( @required )
Returns a list of objects related to this data object by a relation in @required.
Has alias:
$dataobj->get_related_objects( @required )
remove_dataobj_relations
$dataobj->remove_dataobj_relations( $target, %relations )
Remove relations between this data object and the $target data object. If %relations is not empty only remove those relationships which are keys in this hash.
You must commit this object and $target to write the changes.
Has alias:
$dataobj->remove_object_relations( $target, %relations )
SEE ALSO
COPYRIGHT
© Copyright 2000-2024 University of Southampton.
EPrints 3.4 is supplied by EPrints Services.
http://www.eprints.org/eprints-3.4/
LICENSE
This file is part of EPrints 3.4 http://www.eprints.org/.
EPrints 3.4 and this file are released under the terms of the GNU Lesser General Public License version 3 as published by the Free Software Foundation unless otherwise stated.
EPrints 3.4 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with EPrints 3.4. If not, see http://www.gnu.org/licenses/.