class My_Main_Stuff {
public function get_table( $table_arguments ) {
require_once 'includes/table.class.php';
$table = new My_Table_Stuff( $table_arguments );
return $table;
}
}
The random technical musings of Justin Sternberg
class My_Main_Stuff {
public function get_table( $table_arguments ) {
require_once 'includes/table.class.php';
$table = new My_Table_Stuff( $table_arguments );
return $table;
}
}