/**
  * Overloaded function that is resopnsible for the creation of the Special Page
  */
 public function execute($par)
 {
     global $wgOut, $wgUser;
     if (!$wgUser->isAllowed('delete')) {
         $wgOut->permissionRequired('delete');
         return;
     }
     $wgOut->setPageTitle(wfMsg('smw_ti_termimport'));
     $cl = new CL();
     $cl->execute();
 }