function Field::data in Bibliography Module 7.2
Same name and namespace in other branches
- 6.2 modules/marcParse/php-marc.php \Field::data()
- 6 marcParse/php-marc.php \Field::data()
- 7 modules/marcParse/php-marc.php \Field::data()
Set/Get Data of Control field
Sets the Data if argument given, otherwise Data returned
Parameters
string Data to be set:
Return value
string Data of Control field if argument not given
File
- modules/
marcParse/ php-marc.php, line 830
Class
- Field
- Field Class Create a MARC Field object
Code
function data($data = "") {
if (!$this->is_control) {
$this
->_croak("data() is only allowed for tags bigger or equal to 10");
}
if ($data) {
$this->data = $data;
}
else {
return $this->data;
}
}