public function Record::_warn in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/marcParse/php-marc.php \Record::_warn()
- 6 marcParse/php-marc.php \Record::_warn()
- 7.2 modules/marcParse/php-marc.php \Record::_warn()
Fuction to issue warnings.
Warnings will not be displayed unless explicitly accessed, but all warnings issued during parse will be stored.
Parameters
string Warning:
Return value
string Last added warning
File
- modules/
marcParse/ php-marc.php, line 449 - @package PHP-MARC
Class
- Record
- Record Class Create a MARC Record class.
Code
public function _warn($msg) {
$this->warn[] = $msg;
return $msg;
}