Table Torch is a custom scaffolding system that can be used for common administration tasks of tables in your CodeIgniter Application. Table Torch is different from the traditional scaffold you are used to in the fact that its customizable, and is quite extensible. When scaffolding became deprecated in CI, I found that I needed scaffolding occasionally, so I built this spark. I hope you find it useful.

From terminal, you must have sparks installed prior, see sparks page for instructions.
[bash]
cd /path_to_your_CI_reactor_build
php tools/spark install table_torch
In sparks/table-torch/config/table_torch.php you will find the preferences for running your scaffold. The config file is well commented.
function torch(){
// you can do this in any method you like
// !! you would obviously need to do your authorization prior to letting the world see your Table Torch
$this->load->spark( 'table-torch/[version #]');
$this->table_torch->route();
}
You have the ability to override any action of Table Torch. To do so just add the action to the controller from which you used Table Torch and it will use your method instead, while still passing you all the data that Table Torch fetched for the page. The example below overrides edit page of the "users" table.
If you wish to load your own view for the page, specify FALSE in the third param. Or you can use the Table torch view. Either way, you will be using the template file specified in the sparks/table-torch/[ version # ]/config/table_torch.php file
// your custom view loaded
function users_edit( $data ){
// print_r( $data );
$this->table_torch->load_view( 'user/edit', $data, FALSE );
}
// the normal Table Torch view loaded
function users_edit( $data ){
// print_r( $data );
$this->table_torch->load_view( 'form', $data, TRUE );
}
You can preform additional functions before or after the Table Torch form submissions. Available callbacks are
function before_delete( $table, $primary_key ){
/*
do what you need to before deleting the row here,
you are given the table and primary key being deleted ( normally id, but whatever you set as primary key )
*/
}
function before_insert( $table, $data ){
/*
do what you need to do before inserting
You must return the data that will be inserted
*/
return $data;
}
function before_update( $table, $data ){
/*
do what you need to before updating a row
you must return the data from this method!
*/
return $data;
}
function after_insert( $table, $data ){
/*
do what you need to do after inserting
the primary key is returned in your data using insert_id();
*/
}
function after_update( $table, $data ){
/* do what you need to after updating a row */
}
Spark Page
Log Issues or Suggestions