FuelPHP Bin
Sign in
Url:
Fork
<?php class Controller_Admin_Buildings_Levelplans extends Controller_Admin{ public function action_index($id = null) { $data['levelplans'] = Model_Levelplan::find('all', array('where' => array('building_id' => $id))); $data['building'] = Model_Building::find($id); $data['levels'] = Model_Level::find('all'); $this->template->title = "Levelplan: ".$data['building']->title; $this->template->content = View::forge('admin/levelplans/index', $data); } public function action_edit($building_id = null, $level_id = null) { $building = Model_Building::find($building_id); $level = Model_Level::find($level_id); \Debug::dump($level->title, 'hint'); #die; if (Input::method() == 'POST') { \Debug::dump($level_id, 'hint'); #die; $post = Input::post(); unset($post['submit']); \Debug::dump($post, 'hint'); #die; foreach($post as $key=>$value) { $building->$key = $value; }; if ($building->save()) { Session::set_flash('success', e('Bearbeitung erfolgreich')); Response::redirect('admin/buildings'); } else { Session::set_flash('error', e('Bearbeitung NICHT erfolgreich')); } } $data['building'] = $building; $data['levels'] = Model_Level::find('all'); $data['resources'] = Model_Resource::find('all'); $this->template->title = "Level ".$level->level." | ".$data['building']->title; $this->template->content = View::forge('admin/levelplans/edit', $data); } }