Code
function pnSomeModule_pntables()
{
// Initialise table array
$pntable = array();
// Get the name for the Example item table. This is not necessary
// but helps in the following statements and keeps them readable
$pnSM = pnConfigGetVar('prefix') . '_pnSM';
// Set the table name
$pntable['pnSomeModule'] = $pnSM;
// Set the column names. Note that the array has been formatted
// on-screen to be very easy to read by a user.
$pntable['pnSomeMoudle_SomeTable_column'] = array('first_name' => 'Column1',
'middle_name' => 'Column2',
'last_name' => 'Column3');
{
// Initialise table array
$pntable = array();
// Get the name for the Example item table. This is not necessary
// but helps in the following statements and keeps them readable
$pnSM = pnConfigGetVar('prefix') . '_pnSM';
// Set the table name
$pntable['pnSomeModule'] = $pnSM;
// Set the column names. Note that the array has been formatted
// on-screen to be very easy to read by a user.
$pntable['pnSomeMoudle_SomeTable_column'] = array('first_name' => 'Column1',
'middle_name' => 'Column2',
'last_name' => 'Column3');
