for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* php-gedcom.
*
* php-gedcom is a library for parsing, manipulating, importing and exporting
* GEDCOM 5.5 files in PHP 5.3+.
* @author Kristopher Wilson <[email protected]>
* @copyright Copyright (c) 2010-2013, Kristopher Wilson
* @license MIT
* @link http://github.com/mrkrstphr/php-gedcom
*/
namespace PhpGedcom\Parser\Indi\Even;
class Plac extends \PhpGedcom\Parser\Component
{
public static function parse(\PhpGedcom\Parser $parser)
$record = $parser->getCurrentLineRecord();
$depth = (int) $record[0];
$plac = new \PhpGedcom\Record\Indi\Even\Plac();
if (isset($record[2])) {
$plac->setPlac(trim($record[2]));
}
$parser->forward();
while (!$parser->eof()) {
$recordType = strtoupper(trim($record[1]));
$currentDepth = (int) $record[0];
if ($currentDepth <= $depth) {
$parser->back();
break;
switch ($recordType) {
case 'FORM':
$plac->setForm(trim($record[2]));
case 'NOTE':
$note = \PhpGedcom\Parser\NoteRef::parse($parser);
if ($note) {
$plac->addNote($note);
case 'SOUR':
$sour = \PhpGedcom\Parser\SourRef::parse($parser);
$plac->addSour($sour);
default:
$parser->logUnhandledRecord(get_class().' @ '.__LINE__);
return $plac;