X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=import.php;h=938fdb3dd2746b0e30695f1ea8b853e0848b9b10;hb=d18d90a3f3050def6c646eef7d5420c2d2091393;hp=d10ee00681a09dfbd90eca2df79e93bd8bd18d73;hpb=a7ba11adfecf6cb906749efe5abce688363aef07;p=timetracker.git diff --git a/import.php b/import.php index d10ee006..938fdb3d 100644 --- a/import.php +++ b/import.php @@ -27,29 +27,27 @@ // +----------------------------------------------------------------------+ require_once('initialize.php'); -import('ttImportHelper'); +import('ttOrgImportHelper'); import('form.Form'); // Access check. -if (!ttAccessCheck(right_administer_site)) { +if (!ttAccessAllowed('administer_site')) { header('Location: access_denied.php'); exit(); } $form = new Form('importForm'); -$form->addInput(array('type'=>'upload','name'=>'xmlfile','value'=>'browse','maxsize'=>16777216)); // 16 MB file upload limit. -// Note: for the above limit to work make sure to set upload_max_filesize and post_max_size in php.ini to at least 16M. -$form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.import'))); +$form->addInput(array('type'=>'upload','name'=>'xmlfile','value'=>'browse','maxsize'=>67108864)); // 64 MB file upload limit. +// Note: for the above limit to work make sure to set upload_max_filesize and post_max_size in php.ini to at least 64M. +$form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.import'))); if ($request->isPost()) { - - $import = new ttImportHelper($errors); - $import->importXml(); - if ($errors->no()) - $messages->add($i18n->getKey('form.import.success')); -} // POST + $importHelper = new ttOrgImportHelper($err); + $importHelper->importXml(); + if ($err->no()) $msg->add($i18n->get('form.import.success')); +} // isPost $smarty->assign('forms', array($form->getName()=>$form->toArray()) ); -$smarty->assign('title', $i18n->getKey('title.import')); +$smarty->assign('title', $i18n->get('title.import')); $smarty->assign('content_page_name', 'import.tpl'); $smarty->display('index.tpl');