FuelPHP Bin
Sign in
Url:
Fork
<?php /** * Fuel is a fast, lightweight, community driven PHP5 framework. * * @package Fuel * @version 1.7 * @author Fuel Development Team * @license MIT License * @copyright 2010 - 2013 Fuel Development Team * @link http://fuelphp.com */ class Controller_Game_Backend extends Controller_Game { public $template = 'tpl_backend'; public function before() { parent::before(); // Template Settings for all actions $this->template->messages = View::forge('partials/messages'); $this->template->navheader = View::forge('partials/nav_header'); $this->template->sidebar = View::forge('partials/nav_side_backend'); $this->template->navfooter = View::forge('partials/nav_footer'); View::set_global('username', $this->username, false); //Set Profile data for actual user $this->profile['username']['label'] = 'Benutzername'; $this->profile['username']['key'] = 'username'; $this->profile['username']['value'] = $this->username; $this->profile['email']['label'] = 'E-Mail'; $this->profile['email']['key'] = 'email'; $this->profile['email']['value'] = Auth::get_email(); $this->profile['email']['type'] = 'input'; $this->profile['created_at']['label'] = 'Angemeldet seit'; $this->profile['created_at']['key'] = 'created_at'; $this->profile['created_at']['value'] = Functions::localeDate(Auth::get('created_at')); $this->profile['points']['label'] = 'Punkte'; $this->profile['points']['key'] = 'points'; $this->profile['points']['value'] = Auth::get_profile_fields('points', ''); $this->profile['gender']['label'] = 'Geschlecht'; $this->profile['gender']['key'] = 'gender'; $this->profile['gender']['value'] = Functions::showGender(Auth::get_profile_fields('gender', ' ')); $this->profile['gender']['selection'] = array('none' => 'Bitte wählen','m' => 'männlich','w' => 'weiblich'); $this->profile['gender']['selected'] = Auth::get_profile_fields('gender', ' '); $this->profile['gender']['type'] = 'gender'; $this->profile['year']['label'] = 'Jahrgang'; $this->profile['year']['key'] = 'year'; $this->profile['year']['value'] = Auth::get_profile_fields('year', ' '); $this->profile['year']['type'] = 'input'; $this->profile['country']['label'] = 'Land'; $this->profile['country']['key'] = 'country'; $this->profile['country']['value'] = Auth::get_profile_fields('country', ' '); $this->profile['country']['type'] = 'input'; $this->profile['region']['label'] = 'Ort/Region'; $this->profile['region']['key'] = 'region'; $this->profile['region']['value'] = Auth::get_profile_fields('region', ' '); $this->profile['region']['type'] = 'input'; $this->profile['overme']['label'] = 'Über mich'; $this->profile['overme']['key'] = 'overme'; $this->profile['overme']['value'] = Auth::get_profile_fields('overme', ' '); $this->profile['overme']['type'] = 'text'; $this->profile['gilde']['label'] = 'Gilde'; $this->profile['gilde']['key'] = 'gilde'; $this->profile['gilde']['value'] = Auth::get_profile_fields('gilde', ' '); } public function action_index() { $data['profile'] = $this->profile; $this->template->title = 'Tigers vs. Dragons'; $this->template->content = View::forge('game/backend/profile', $data); } public function action_editprofile() { if (Input::method() == 'POST') { $updated = Auth::update_user( array( 'email' => Input::post('email'), 'gender' => Input::post('gender'), 'year' => Input::post('year'), 'country' => Input::post('country'), 'region' => Input::post('region'), 'overme' => Input::post('overme'), ) ); if ($updated) { Session::set_flash('success', 'Profil erfolgreich geändert'); Response::redirect('/game/backend'); } else { Log::warning('Registration success: user '.Input::post('username').' has registered', 'home/register 1'); Session::set_flash('error', 'Profiländerung NICHT erfolgreich'); Response::redirect('/game/backend'); } } $data['profile'] = Arr::filter_keys($this->profile, array('username', 'created_at', 'points', 'gilde'), true); $this->template->title = 'Tigers vs. Dragons'; $this->template->content = View::forge('game/backend/editprofile', $data); } public function action_changepassword() { $val = Validation::forge(); $val->add_field('new_password', 'Neues Passwort', 'match_field[new_password]|new_password_match'); if ($val->run()) { $changepass = Auth::change_password(Input::post('old_password'),Input::post('new_password')); if ($changepass) { Session::set_flash('success', 'Passwort erfolgreich geändert'); Response::redirect('/game/backend'); } else { Session::set_flash('error', 'Passwortänderung NICHT erfolgreich'); Response::redirect('/game/backend'); } } else { if (Input::method() == 'POST') { Session::set_flash('error', $val->error()); } } $this->template->title = 'Tigers vs. Dragons'; $this->template->content = View::forge('game/backend/changepassword'); } public function action_possession() { $data['resources'] = $this->resourcecounts; $data['possessions'] = Model_Possession::showUserBuildings($this->userid); $this->template->title = 'Tigers vs. Dragons'; $this->template->content = View::forge('game/backend/possession', $data); } public function action_exception() { $data['exception'] = $this->exceptions; \Debug::dump($data['exception'] , 'hint'); #die; $this->template->title = 'Tigers vs. Dragons'; $this->template->content = View::forge('game/backend/exception', $data); } public function action_logout() { Auth::logout(); Response::redirect('/'); } }