Skip to content

Instantly share code, notes, and snippets.

@Javlopez
Created November 11, 2011 23:14
Show Gist options
  • Save Javlopez/1359630 to your computer and use it in GitHub Desktop.
Save Javlopez/1359630 to your computer and use it in GitHub Desktop.
Backend_controller access: localhost/kohana1/ load by default
<?php defined('SYSPATH') or die('No direct script access.');
class Controller_Example extends Controller {
public function action_index()
{
$view = View::factory("index")
->set("loginurl",Route::url('default',array('controller' => 'backend', 'action' => FALSE)));
$this->response->body($view);
}
} // End Welcome
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment