function getAllNames() { // Uniquely, the NOTE objects have data in their level 0 record. // Hence the REGEX passed in the second parameter return parent::getAllNames('NOTE', "0 @" . PGV_REGEX_XREF . "@"); }
function getAllNames() { return parent::getAllNames('NAME'); }
function getAllNames() { if (strpos($this->gedrec, "\n1 TITL ")) { // Earlier gedcom versions had level 1 titles return parent::getAllNames('TITL', 1); } else { // Later gedcom versions had level 2 titles return parent::getAllNames('TITL', 2); } }
function getAllNames() { return parent::getAllNames('TITL'); }