umstellung auf shared codeigniter und postgres php8.2

This commit is contained in:
Markus
2022-09-18 14:07:38 +02:00
parent 22437db1c3
commit 8d16903e40
11628 changed files with 169929 additions and 1139112 deletions

View File

@@ -20,14 +20,10 @@ class Home extends BaseController
$this->accounts = model('App\Models\mAccounts');
}
public function index()
public function overview()
{
return view('table');
}
public function Table()
{
return view('table');
}
private function checkDDPList(&$arr, $ele){
@@ -190,7 +186,7 @@ class Home extends BaseController
$scheduled = model('App\Models\mScheduled');
$scheduled->saveBill($this->request->getPost());
}
$this->response->redirect(site_url('/Home/Table'));
$this->response->redirect(site_url('/'));
}
}
@@ -272,7 +268,7 @@ class Home extends BaseController
$data['start'] = session('datum_start') ?? date("d.m.Y", strtotime( "- 2 weeks", strtotime( "now" ) ));
$data['ende'] = session('datum_ende') ?? date("d.m.Y", strtotime( "now" ) );
$data['source'] = session('source') ?? 0;
$data['sourcelist'] = $this->accounts->getDropDownList( 'Acc', TRUE );
$data['sourcelist'] = $this->accounts->getDropDownList( 'all', TRUE );
return view('activities', $data);
}