|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Products, Quotations & Invoices modules. |
|
4
|
|
|
* Extensions to SugarCRM |
|
5
|
|
|
* @package Advanced OpenSales for SugarCRM |
|
6
|
|
|
* @subpackage Products |
|
7
|
|
|
* @copyright SalesAgility Ltd http://www.salesagility.com |
|
8
|
|
|
* |
|
9
|
|
|
* This program is free software; you can redistribute it and/or modify |
|
10
|
|
|
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by |
|
11
|
|
|
* the Free Software Foundation; either version 3 of the License, or |
|
12
|
|
|
* (at your option) any later version. |
|
13
|
|
|
* |
|
14
|
|
|
* This program is distributed in the hope that it will be useful, |
|
15
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
17
|
|
|
* GNU General Public License for more details. |
|
18
|
|
|
* |
|
19
|
|
|
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE |
|
20
|
|
|
* along with this program; if not, see http://www.gnu.org/licenses |
|
21
|
|
|
* or write to the Free Software Foundation,Inc., 51 Franklin Street, |
|
22
|
|
|
* Fifth Floor, Boston, MA 02110-1301 USA |
|
23
|
|
|
* |
|
24
|
|
|
* @author Salesagility Ltd <[email protected]> |
|
25
|
|
|
*/ |
|
26
|
|
|
|
|
27
|
|
|
/* |
|
28
|
|
|
* Created on August 2 2007 |
|
29
|
|
|
* |
|
30
|
|
|
* To change the template for this generated file go to |
|
31
|
|
|
* Window - Preferences - PHPeclipse - PHP - Code Templates |
|
32
|
|
|
*/ |
|
33
|
|
|
$module_name = 'AOS_Invoices'; |
|
34
|
|
|
$metafiles[$module_name] = array( |
|
35
|
|
|
'detailviewdefs' => 'modules/'.$module_name.'/metadata/detailviewdefs.php', |
|
|
|
|
|
|
36
|
|
|
'editviewdefs' => 'modules/'. $module_name. '/metadata/editviewdefs.php', |
|
37
|
|
|
'listviewdefs' => 'modules/'. $module_name. '/metadata/listviewdefs.php', |
|
38
|
|
|
'searchdefs' => 'modules/'. $module_name. '/metadata/searchdefs.php', |
|
39
|
|
|
'popupdefs' => 'modules/'. $module_name. '/metadata/popupdefs.php', |
|
40
|
|
|
'searchfields' => 'modules/'. $module_name. '/metadata/SearchFields.php', |
|
41
|
|
|
); |
|
42
|
|
|
?> |
|
43
|
|
|
|