Feature 5388: Print Invoices (documents) list gets too long. Fixed by default 180...
[fa-stable.git] / admin / forms_setup.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_FORMSETUP';
13 $path_to_root="..";
14
15 include_once($path_to_root . "/includes/session.inc");
16 include_once('../includes/ui/class.reflines_crud.inc');
17
18 include_once($path_to_root . "/includes/ui.inc");
19
20 page(_($help_context = "Transaction References"));
21
22 start_form();
23
24 $companies = new fa_reflines();
25
26 $companies->show();
27
28 end_form();
29
30 end_page();