コード例 #1
0
ファイル: NoteRef.php プロジェクト: hybr/jpm
 /**
  *
  */
 public static function parse(\PhpGedcom\Parser $parser)
 {
     $record = $parser->getCurrentLineRecord();
     $depth = (int) $record[0];
     $note = new \PhpGedcom\Record\NoteRef();
     if (preg_match('/^@(.*)@$/', trim($record[2]))) {
         $note->setIsReference(true);
         $note->setNote($parser->normalizeIdentifier($record[2]));
     } else {
         $before = $parser->getCurrentLine();
         $note->setIsReference(false);
         $note->setNote($parser->parseMultiLineRecord());
     }
     $parser->forward();
     while (!$parser->eof()) {
         $record = $parser->getCurrentLineRecord();
         $recordType = strtoupper(trim($record[1]));
         $currentDepth = (int) $record[0];
         if ($currentDepth <= $depth) {
             $parser->back();
             break;
         }
         switch ($recordType) {
             case 'SOUR':
                 $sour = \PhpGedcom\Parser\SourRef::parse($parser);
                 $note->addSour($sour);
                 break;
             default:
                 $parser->logUnhandledRecord(get_class() . ' @ ' . __LINE__);
         }
         $parser->forward();
     }
     return $note;
 }
コード例 #2
0
ファイル: SourRef.php プロジェクト: mrkrstphr/php-gedcom
 /**
  *
  *
  */
 public static function parse(\PhpGedcom\Parser $parser)
 {
     $record = $parser->getCurrentLineRecord();
     $depth = (int) $record[0];
     $sour = new \PhpGedcom\Record\SourRef();
     $sour->setSour($record[2]);
     $parser->forward();
     while (!$parser->eof()) {
         $record = $parser->getCurrentLineRecord();
         $recordType = strtoupper(trim($record[1]));
         $currentDepth = (int) $record[0];
         if ($currentDepth <= $depth) {
             $parser->back();
             break;
         }
         switch ($recordType) {
             case 'CONT':
                 $sour->setSour($sour->getSour() . "\n");
                 if (isset($record[2])) {
                     $sour->setSour($sour->getSour() . $record[2]);
                 }
                 break;
             case 'CONC':
                 if (isset($record[2])) {
                     $sour->setSour($sour->getSour() . $record[2]);
                 }
                 break;
             case 'TEXT':
                 $sour->setText($parser->parseMultiLineRecord());
                 break;
             case 'NOTE':
                 $note = \PhpGedcom\Parser\NoteRef::parse($parser);
                 if ($note) {
                     $sour->addNote($note);
                 }
                 break;
             case 'DATA':
                 $sour->setData(\PhpGedcom\Parser\Sour\Data::parse($parser));
                 break;
             case 'QUAY':
                 $sour->setQuay(trim($record[2]));
                 break;
             case 'PAGE':
                 $sour->setPage(trim($record[2]));
                 break;
             case 'EVEN':
                 $even = \PhpGedcom\Parser\SourRef\Even::parse($parser);
                 $sour->setEven($even);
                 break;
             default:
                 $parser->logUnhandledRecord(get_class() . ' @ ' . __LINE__);
         }
         $parser->forward();
     }
     return $sour;
 }