$_SERVER['SERVER_NAME'],'path'=>$this->request->param('id'))); if (! $ro->loaded()) { $ro = ORM::factory('redir',array('servername'=>$_SERVER['SERVER_NAME'],'path'=>NULL)); if (! $ro->loaded()) $ro = ORM::factory('redir',0); } $ro->count++; $ro->date_last_refer = time(); $ro->save(); if (! is_null($ro->redirect) AND trim($ro->redirect)) $this->request->redirect($ro->redirect); else $this->response->body(file_get_contents(Kohana::config('config.defaultfile'))); } public function action_path() { return $this->action_index(); } } ?>