Searched refs:TYPE_CHECK_REGEX (Results 1 – 11 of 11) sorted by relevance
/webtrees/app/Factories/ |
H A D | HeaderFactory.php | 36 private const TYPE_CHECK_REGEX = '/^0 ' . Header::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\HeaderFactory 47 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|
H A D | IndividualFactory.php | 36 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Individual::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\IndividualFactory 53 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|
H A D | NoteFactory.php | 36 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Note::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\NoteFactory 47 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|
H A D | SubmitterFactory.php | 36 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Submitter::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\SubmitterFactory 47 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|
H A D | SharedNoteFactory.php | 36 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . SharedNote::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\SharedNoteFactory 47 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|
H A D | SubmissionFactory.php | 36 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Submission::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\SubmissionFactory 47 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|
H A D | MediaFactory.php | 36 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Media::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\MediaFactory 47 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|
H A D | SourceFactory.php | 36 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Source::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\SourceFactory 47 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|
H A D | LocationFactory.php | 36 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Location::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\LocationFactory 47 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|
H A D | RepositoryFactory.php | 37 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Repository::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\RepositoryFactory 48 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|
H A D | FamilyFactory.php | 37 private const TYPE_CHECK_REGEX = '/^0 @[^@]+@ ' . Family::RECORD_TYPE . '/'; define in Fisharebest\\Webtrees\\Factories\\FamilyFactory 54 … if ($gedcom === null && ($pending === null || !preg_match(self::TYPE_CHECK_REGEX, $pending))) {
|