app = $app; if ($intern) return; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("list", "smarty_templates_list"); $this->app->ActionHandler("create", "smarty_templates_edit"); // This automatically adds a "New" button $this->app->ActionHandler("edit", "smarty_templates_edit"); $this->app->ActionHandler("delete", "smarty_templates_delete"); $this->app->DefaultActionHandler("list"); $this->app->ActionHandlerListen($app); } public function Install() { /* Fill out manually later */ } static function TableSearch(&$app, $name, $erlaubtevars) { switch ($name) { case "smarty_templates_list": $allowed['smarty_templates_list'] = array('list'); $heading = array('','','Name', 'Menü'); $width = array('1%','1%','80%','1%'); // Fill out manually later // columns that are aligned right (numbers etc) // $alignright = array(4,5,6,7,8); $findcols = array('s.id','s.id','s.name'); // use 'null' for non-searchable columns $searchsql = array('s.name', 's.template'); $defaultorder = 1; $defaultorderdesc = 0; $aligncenter = array(); $alignright = array(); $numbercols = array(); $sumcol = array(); $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; // $moreinfo = true; // Allow drop down details // $moreinfoaction = "lieferschein"; // specify suffix for minidetail-URL to allow different minidetails // $menucol = 11; // Set id col for moredata/menu $menu = "
" . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\"> " . "Conf->WFconf['defaulttheme']}/images/delete.svg\" border=\"0\">" . "
"; $sql = "SELECT SQL_CALC_FOUND_ROWS s.id, $dropnbox, s.name, s.id FROM smarty_templates s"; $where = "1"; $count = "SELECT count(DISTINCT id) FROM smarty_templates WHERE $where"; // $groupby = ""; // echo($sql." WHERE ".$where." ".$groupby); break; } $erg = false; foreach ($erlaubtevars as $k => $v) { if (isset($$v)) { $erg[$v] = $$v; } } return $erg; } function smarty_templates_list() { $this->app->erp->MenuEintrag("index.php?module=smarty_templates&action=list", "Übersicht"); $this->app->erp->MenuEintrag("index.php?module=smarty_templates&action=create", "Neu anlegen"); $this->app->erp->MenuEintrag("index.php?module=einstellungen&action=list", "Zurück zur Übersicht"); $this->app->YUI->TableSearch('TAB1', 'smarty_templates_list', "show", "", "", basename(__FILE__), __CLASS__); $this->app->Tpl->Parse('PAGE', "smarty_templates_list.tpl"); } public function smarty_templates_delete() { $id = (int) $this->app->Secure->GetGET('id'); $this->app->DB->Delete("DELETE FROM `smarty_templates` WHERE `id` = '{$id}'"); $this->app->Tpl->addMessage('error', 'Der Eintrag wurde gelöscht'); $this->smarty_templates_list(); } /* * Edit smarty_templates item * If id is empty, create a new one */ function smarty_templates_edit() { $id = $this->app->Secure->GetGET('id'); /* // Check if other users are editing this id if($this->app->erp->DisableModul('smarty_templates',$id)) { return; } */ $this->app->Tpl->Set('ID', $id); $this->app->erp->MenuEintrag("index.php?module=smarty_templates&action=edit&id=$id", "Details"); $this->app->erp->MenuEintrag("index.php?module=smarty_templates&action=list", "Zurück zur Übersicht"); $id = $this->app->Secure->GetGET('id'); $input = $this->GetInput(); // Convert here // $input['prio'] = !empty($this->app->Secure->GetPOST('prio'))?"1":"0"; $submit = $this->app->Secure->GetPOST('submit'); if (empty($id)) { // New item $id = 'NULL'; } if ($submit != '') { // Write to database // Add checks here $input['template'] = html_entity_decode($input['template']); // $input['projekt'] = $this->app->erp->ReplaceProjekt(true,$input['projekt'],true); // Parameters: Target db?, value, from form? $columns = "id, "; $values = "$id, "; $update = ""; $fix = ""; foreach ($input as $key => $value) { $columns = $columns.$fix.$key; $values = $values.$fix."'".$value."'"; $update = $update.$fix.$key." = '$value'"; $fix = ", "; } // echo($columns."
"); // echo($values."
"); // echo($update."
"); $sql = "INSERT INTO smarty_templates (".$columns.") VALUES (".$values.") ON DUPLICATE KEY UPDATE ".$update; // echo($sql); $this->app->DB->Update($sql); if ($id == 'NULL') { $msg = $this->app->erp->base64_url_encode("
Das Element wurde erfolgreich angelegt.
"); header("Location: index.php?module=smarty_templates&action=list&msg=$msg"); } else { $this->app->Tpl->addMessage('success', 'Die Einstellungen wurden erfolgreich übernommen.'); } } // Load values again from database if ($id != 'NULL') { $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; $result = $this->app->DB->SelectArr("SELECT SQL_CALC_FOUND_ROWS s.id, $dropnbox, s.name, s.template, s.id FROM smarty_templates s"." WHERE id=$id"); $result[0]['template'] = htmlentities($result[0]['template']); foreach ($result[0] as $key => $value) { $this->app->Tpl->Set(strtoupper($key), $value); } if (!empty($result)) { $smarty_templates_from_db = $result[0]; } else { return; } } /* * Add displayed items later * $this->app->Tpl->Add('KURZUEBERSCHRIFT2', $email); $this->app->Tpl->Add('EMAIL', $email); $this->app->Tpl->Add('ANGEZEIGTERNAME', $angezeigtername); $this->app->YUI->AutoComplete("artikel", "artikelnummer"); $this->app->Tpl->Set('PROJEKT',$this->app->erp->ReplaceProjekt(false,$smarty_templates_from_db['projekt'],false)); $this->app->Tpl->Set('PRIO', $smarty_templates_from_db['prio']==1?"checked":""); */ $this->app->Tpl->Parse('PAGE', "smarty_templates_edit.tpl"); } /** * Get all paramters from html form and save into $input */ public function GetInput(): array { $input = array(); //$input['EMAIL'] = $this->app->Secure->GetPOST('email'); $input['name'] = $this->app->Secure->GetPOST('name'); $input['template'] = $this->app->Secure->GetPOST('template'); return $input; } }