| @@ 571-581 (lines=11) @@ | ||
| 568 | break; |
|
| 569 | ||
| 570 | // 080 - Universal Decimal Classification Number (R) |
|
| 571 | case 80: |
|
| 572 | $this->addClassification( |
|
| 573 | $node, |
|
| 574 | $classifications, |
|
| 575 | array( |
|
| 576 | 'a' => array('number', '^.*?([0-9.\/:()]+).*$', '\1'), |
|
| 577 | '2' => 'edition', |
|
| 578 | ), |
|
| 579 | $system = 'udc' |
|
| 580 | ); |
|
| 581 | break; |
|
| 582 | ||
| 583 | // 082 - Dewey Decimal Classification Number (R) |
|
| 584 | case 82: |
|
| @@ 584-595 (lines=12) @@ | ||
| 581 | break; |
|
| 582 | ||
| 583 | // 082 - Dewey Decimal Classification Number (R) |
|
| 584 | case 82: |
|
| 585 | $this->addClassification( |
|
| 586 | $node, |
|
| 587 | $classifications, |
|
| 588 | array( |
|
| 589 | 'a' => array('number', '^.*?([0-9.]+)\/?([0-9.]*).*$', '\1\2'), |
|
| 590 | '2' => 'edition', |
|
| 591 | 'q' => 'assigner', |
|
| 592 | ), |
|
| 593 | $system = 'ddc' |
|
| 594 | ); |
|
| 595 | break; |
|
| 596 | ||
| 597 | // 084 - Other Classification Number (R) |
|
| 598 | case 84: |
|