138 lines
3.9 KiB
PHP
138 lines
3.9 KiB
PHP
<?php
|
|
|
|
class FiberPlanCablePipeController extends mfBaseController
|
|
{
|
|
|
|
protected function init()
|
|
{
|
|
$this->needlogin = true;
|
|
$me = new User();
|
|
$me->loadMe();
|
|
$this->me = $me;
|
|
$this->layout()->set("me", $me);
|
|
|
|
if (!$me->is(["Admin"])) {
|
|
$this->redirect("Dashboard");
|
|
}
|
|
}
|
|
|
|
protected function indexAction()
|
|
{
|
|
|
|
$this->layout()->setTemplate("FiberPlanCablePipe/Index");
|
|
$fiberplancablepipes = FiberPlanCablePipeModel::getAll();
|
|
$this->layout()->set("fiberplancablepipes", $fiberplancablepipes);
|
|
|
|
}
|
|
|
|
protected function addAction()
|
|
{
|
|
$fiberPlanCables=FiberPlanCableModel::getAll();
|
|
$this->layout()->set("fiberPlanCables", $fiberPlanCables);
|
|
$fiberPlanPipes=FiberPlanPipeModel::getAll();
|
|
$this->layout()->set("fiberPlanPipes", $fiberPlanPipes);
|
|
|
|
$this->layout()->setTemplate("FiberPlanCablePipe/Form");
|
|
|
|
}
|
|
|
|
protected function editAction()
|
|
{
|
|
$id = $this->request->id;
|
|
|
|
if (!is_numeric($id) || !$id) {
|
|
$this->layout()->setFlash("Faserplanpipe nicht gefunden", "error");
|
|
$this->redirect("FiberPlanCablePipe");
|
|
}
|
|
|
|
$fiberplancablepipes = new FiberPlanCablePipe($id);
|
|
if ($fiberplancablepipes->id != $id) {
|
|
$this->layout()->setFlash("Faserplanpipe nicht gefunden", "error");
|
|
$this->redirect("FiberPlanCablePipe");
|
|
}
|
|
|
|
$this->layout()->set("fiberplancablepipes", $fiberplancablepipes);
|
|
return $this->addAction();
|
|
}
|
|
|
|
protected function saveAction()
|
|
{
|
|
$r = $this->request;
|
|
$id = $r->id;
|
|
//var_dump($r->get());exit;
|
|
if (is_numeric($id) && $id > 0) {
|
|
$mode = "edit";
|
|
$fiberplancablepipes = new FiberPlanCablePipe($id);
|
|
if (!$fiberplancablepipes->id) {
|
|
$this->layout()->setFlash("Faserplanpipes nicht gefunden", "error");
|
|
$this->redirect("FiberPlanCablePipe");
|
|
}
|
|
} else {
|
|
$mode = "add";
|
|
}
|
|
|
|
$data = [];
|
|
$data['fiberPlanCable_id'] = trim($r->fiberPlanCable_id);
|
|
$data['fiberPlanPipe_id'] = trim($r->fiberPlanPipe_id);
|
|
$data['fiberPlanPipe_sub'] = trim($r->fiberPlanPipe_sub);
|
|
$data['sort'] = trim($r->sort);
|
|
|
|
|
|
if (!$data['fiberPlanCable_id']) {
|
|
$data['fiberPlanCable_id']=NULL;
|
|
}
|
|
if (!$data['fiberPlanPipe_id']) {
|
|
$data['fiberPlanPipe_id']=NULL;
|
|
}
|
|
if (!$data['fiberPlanPipe_sub']) {
|
|
$data['fiberPlanPipe_sub']=NULL;
|
|
}
|
|
if (!$data['sort']) {
|
|
$data['sort']=NULL;
|
|
}
|
|
|
|
|
|
// var_dump($_FILES);
|
|
// var_dump($upload);
|
|
// exit;
|
|
|
|
|
|
if ($mode == "edit") {
|
|
$fiberplancablepipes->update($data);
|
|
|
|
} else {
|
|
$fiberplancablepipes = FiberPlanCablePipeModel::create($data);
|
|
}
|
|
// var_dump($filestore);
|
|
// exit;
|
|
$id = $fiberplancablepipes->save();
|
|
|
|
if (!$id) {
|
|
$this->layout()->setFlash("Faserplanpipe konnte nicht angelegt werden", "error");
|
|
$this->redirect("FiberPlanCablePipe");
|
|
}
|
|
|
|
if ($mode == "edit") {
|
|
$this->layout()->setFlash("Faserplanpipe erfolgreich geändert", "success");
|
|
} else if ($mode = "add") {
|
|
$this->layout()->setFlash("Faserplanpipe erfolgreich angelegt", "success");
|
|
}
|
|
$this->redirect("FiberPlanCablePipe");
|
|
}
|
|
|
|
|
|
protected function deleteAction()
|
|
{
|
|
$id = $this->request->id;
|
|
$fiberplancablepipes = new FiberPlanCablePipe($id);
|
|
if (!$fiberplancablepipes->id || $fiberplancablepipes->id != $id) {
|
|
$this->layout()->setFlash("Faserplanpipe nicht gefunden.", "error");
|
|
$this->redirect("FiberPlanCablePipe");
|
|
}
|
|
|
|
$fiberplancablepipes->delete();
|
|
$this->redirect("FiberPlanCablePipe");
|
|
}
|
|
|
|
}
|