UI_PAGE_TABLE —
Interchange 5.9.0:
Source: dist/lib/UI/ContentEditor.pm
Line 197 (context shows lines 187-201 in get_pdb():193)
my $tab = $opt->{template_table};
$tab ||= $::Variable->{UI_TEMPLATE_TABLE};
$tab ||= 'template';
$opt->{template_db} = ::database_exists_ref($tab) || '';
}
sub get_pdb {
my $opt = shift;
return $opt->{page_db} if defined $opt->{page_db};
my $tab = $opt->{page_table};
$tab ||= $::Variable->{UI_PAGE_TABLE};
$tab ||= 'page';
$opt->{page_db} = ::database_exists_ref($tab) || '';
}