Skip to content

Instantly share code, notes, and snippets.

@walesmd
Created February 6, 2010 17:28
Show Gist options
  • Select an option

  • Save walesmd/296829 to your computer and use it in GitHub Desktop.

Select an option

Save walesmd/296829 to your computer and use it in GitHub Desktop.
<?php if (!defined('BASEPATH')) exit('No direct script access allowed.');
class Transactions extends Controller {
function Transactions() {
parent::Controller();
$this->erkana_auth->required();
}
// index()
// List all a user's transactions
function index() {
$this->load->view('transactions');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment