public function handleShortcode($atts)
 {
     $atts['useDT'] = true;
     require_once 'CFDBShortcodeTable.php';
     $sc = new CFDBShortcodeTable();
     return $sc->handleShortcode($atts);
 }
 public function handleShortcode($atts, $content = null)
 {
     $atts['content'] = $content;
     $atts['useDT'] = true;
     require_once 'CFDBShortcodeTable.php';
     $sc = new CFDBShortcodeTable();
     return $sc->handleShortcode($atts, $content);
 }