Db::tableExists()
\nn\t3::Db()->tableExists($table = '');
Does a specific DB table exist?
$exists = \nn\t3::Db()->tableExists('table');
Copied!
| @return boolean
Source Code
public function tableExists ( $table = '' )
{
return isset($GLOBALS['TCA'][$table]);
}
Copied!