Where is declared this variable $quote_table?
I copied this section to another module (invoices) but I get error quote_table variable not declared. I am trying to have a modal popup inside the invoice that will show all open quotes related to client of the invoice. Similar to Clients->View Clients->Click on Client to view it->click on tab Quotes (but in my case to open this list of related quotes in modal window inside of Invoices by clicking on one image or button)
In:
./application/modules/clients/views/view.php:
<?php echo $quote_table; ?>
In:./application/modules/clients/controllers/Clients.php:
…
./application/modules/clients/controllers/Clients.php:
array(
array(
‘invoice_table’,
‘invoices/partial_invoice_table’
),
array(
‘quote_table’,
‘quotes/partial_quote_table’
),
array(
‘payment_table’,
‘payments/partial_payment_table’
),
array(
‘partial_notes’,
‘clients/partial_notes’
),
array(
‘content’,
‘clients/view’
)
)
);
…