@@ -27,15 +27,15 @@ discard block |
||
27 | 27 | function salaries_prepare_head($object) |
28 | 28 | { |
29 | 29 | |
30 | - global $db, $langs, $conf; |
|
30 | + global $db, $langs, $conf; |
|
31 | 31 | |
32 | - $h = 0; |
|
33 | - $head = array(); |
|
32 | + $h = 0; |
|
33 | + $head = array(); |
|
34 | 34 | |
35 | - $head[$h][0] = DOL_URL_ROOT.'/compta/salaries/card.php?id='.$object->id; |
|
36 | - $head[$h][1] = $langs->trans("Card"); |
|
37 | - $head[$h][2] = 'card'; |
|
38 | - $h++; |
|
35 | + $head[$h][0] = DOL_URL_ROOT.'/compta/salaries/card.php?id='.$object->id; |
|
36 | + $head[$h][1] = $langs->trans("Card"); |
|
37 | + $head[$h][2] = 'card'; |
|
38 | + $h++; |
|
39 | 39 | |
40 | 40 | // Show more tabs from modules |
41 | 41 | // Entries must be declared in modules descriptor with line |
@@ -43,23 +43,23 @@ discard block |
||
43 | 43 | // $this->tabs = array('entity:-tabname); to remove a tab |
44 | 44 | complete_head_from_modules($conf,$langs,$object,$head,$h,'salaries'); |
45 | 45 | |
46 | - require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
|
46 | + require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
|
47 | 47 | require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php'; |
48 | - $upload_dir = $conf->salaries->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
49 | - $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
48 | + $upload_dir = $conf->salaries->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
49 | + $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
50 | 50 | $nbLinks=Link::count($db, $object->element, $object->id); |
51 | - $head[$h][0] = DOL_URL_ROOT.'/compta/salaries/document.php?id='.$object->id; |
|
52 | - $head[$h][1] = $langs->trans('Documents'); |
|
53 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
54 | - $head[$h][2] = 'documents'; |
|
55 | - $h++; |
|
51 | + $head[$h][0] = DOL_URL_ROOT.'/compta/salaries/document.php?id='.$object->id; |
|
52 | + $head[$h][1] = $langs->trans('Documents'); |
|
53 | + if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
54 | + $head[$h][2] = 'documents'; |
|
55 | + $h++; |
|
56 | 56 | |
57 | - $head[$h][0] = DOL_URL_ROOT.'/compta/salaries/info.php?id='.$object->id; |
|
58 | - $head[$h][1] = $langs->trans("Info"); |
|
59 | - $head[$h][2] = 'info'; |
|
60 | - $h++; |
|
57 | + $head[$h][0] = DOL_URL_ROOT.'/compta/salaries/info.php?id='.$object->id; |
|
58 | + $head[$h][1] = $langs->trans("Info"); |
|
59 | + $head[$h][2] = 'info'; |
|
60 | + $h++; |
|
61 | 61 | |
62 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'salaries', 'remove'); |
|
62 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'salaries', 'remove'); |
|
63 | 63 | |
64 | - return $head; |
|
64 | + return $head; |
|
65 | 65 | } |
@@ -41,16 +41,16 @@ discard block |
||
41 | 41 | // Entries must be declared in modules descriptor with line |
42 | 42 | // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
43 | 43 | // $this->tabs = array('entity:-tabname); to remove a tab |
44 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'salaries'); |
|
44 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'salaries'); |
|
45 | 45 | |
46 | 46 | require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
47 | 47 | require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php'; |
48 | - $upload_dir = $conf->salaries->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
49 | - $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
50 | - $nbLinks=Link::count($db, $object->element, $object->id); |
|
48 | + $upload_dir = $conf->salaries->dir_output."/".dol_sanitizeFileName($object->ref); |
|
49 | + $nbFiles = count(dol_dir_list($upload_dir, 'files', 0, '', '(\.meta|_preview.*\.png)$')); |
|
50 | + $nbLinks = Link::count($db, $object->element, $object->id); |
|
51 | 51 | $head[$h][0] = DOL_URL_ROOT.'/compta/salaries/document.php?id='.$object->id; |
52 | 52 | $head[$h][1] = $langs->trans('Documents'); |
53 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
53 | + if (($nbFiles + $nbLinks) > 0) $head[$h][1] .= ' <span class="badge">'.($nbFiles + $nbLinks).'</span>'; |
|
54 | 54 | $head[$h][2] = 'documents'; |
55 | 55 | $h++; |
56 | 56 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $head[$h][2] = 'info'; |
60 | 60 | $h++; |
61 | 61 | |
62 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'salaries', 'remove'); |
|
62 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'salaries', 'remove'); |
|
63 | 63 | |
64 | 64 | return $head; |
65 | 65 | } |
@@ -50,7 +50,9 @@ |
||
50 | 50 | $nbLinks=Link::count($db, $object->element, $object->id); |
51 | 51 | $head[$h][0] = DOL_URL_ROOT.'/compta/salaries/document.php?id='.$object->id; |
52 | 52 | $head[$h][1] = $langs->trans('Documents'); |
53 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
53 | + if (($nbFiles+$nbLinks) > 0) { |
|
54 | + $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
55 | + } |
|
54 | 56 | $head[$h][2] = 'documents'; |
55 | 57 | $h++; |
56 | 58 |
@@ -26,18 +26,18 @@ discard block |
||
26 | 26 | */ |
27 | 27 | function showOnlineSignatureUrl($type,$ref) |
28 | 28 | { |
29 | - global $conf, $langs; |
|
29 | + global $conf, $langs; |
|
30 | 30 | |
31 | - // Load translation files required by the page |
|
31 | + // Load translation files required by the page |
|
32 | 32 | $langs->loadLangs(array("payment","paybox")); |
33 | 33 | |
34 | - $servicename='Online'; |
|
34 | + $servicename='Online'; |
|
35 | 35 | |
36 | - $out = img_picto('','object_globe.png').' '.$langs->trans("ToOfferALinkForOnlineSignature",$servicename).'<br>'; |
|
37 | - $url = getOnlineSignatureUrl(0, $type, $ref); |
|
38 | - $out.= '<input type="text" id="onlinesignatureurl" class="quatrevingtpercent" value="'.$url.'">'; |
|
39 | - $out.= ajax_autoselect("onlinesignatureurl", 0); |
|
40 | - return $out; |
|
36 | + $out = img_picto('','object_globe.png').' '.$langs->trans("ToOfferALinkForOnlineSignature",$servicename).'<br>'; |
|
37 | + $url = getOnlineSignatureUrl(0, $type, $ref); |
|
38 | + $out.= '<input type="text" id="onlinesignatureurl" class="quatrevingtpercent" value="'.$url.'">'; |
|
39 | + $out.= ajax_autoselect("onlinesignatureurl", 0); |
|
40 | + return $out; |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | |
@@ -51,45 +51,45 @@ discard block |
||
51 | 51 | */ |
52 | 52 | function getOnlineSignatureUrl($mode, $type, $ref='') |
53 | 53 | { |
54 | - global $conf, $db, $langs; |
|
54 | + global $conf, $db, $langs; |
|
55 | 55 | |
56 | - $ref=str_replace(' ','',$ref); |
|
57 | - $out=''; |
|
56 | + $ref=str_replace(' ','',$ref); |
|
57 | + $out=''; |
|
58 | 58 | |
59 | - if ($type == 'proposal') |
|
60 | - { |
|
61 | - $out=DOL_MAIN_URL_ROOT.'/public/onlinesign/newonlinesign.php?source=proposal&ref='.($mode?'<font color="#666666">':''); |
|
62 | - if ($mode == 1) $out.='proposal_ref'; |
|
63 | - if ($mode == 0) $out.=urlencode($ref); |
|
64 | - $out.=($mode?'</font>':''); |
|
65 | - if ($mode == 1) $out.='&hashp=<font color="#666666">hash_of_file</font>'; |
|
66 | - else |
|
67 | - { |
|
68 | - include_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php'; |
|
69 | - $propaltmp=new Propal($db); |
|
70 | - $res = $propaltmp->fetch(0, $ref); |
|
71 | - if ($res <= 0) return 'FailedToGetProposal'; |
|
59 | + if ($type == 'proposal') |
|
60 | + { |
|
61 | + $out=DOL_MAIN_URL_ROOT.'/public/onlinesign/newonlinesign.php?source=proposal&ref='.($mode?'<font color="#666666">':''); |
|
62 | + if ($mode == 1) $out.='proposal_ref'; |
|
63 | + if ($mode == 0) $out.=urlencode($ref); |
|
64 | + $out.=($mode?'</font>':''); |
|
65 | + if ($mode == 1) $out.='&hashp=<font color="#666666">hash_of_file</font>'; |
|
66 | + else |
|
67 | + { |
|
68 | + include_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php'; |
|
69 | + $propaltmp=new Propal($db); |
|
70 | + $res = $propaltmp->fetch(0, $ref); |
|
71 | + if ($res <= 0) return 'FailedToGetProposal'; |
|
72 | 72 | |
73 | - include_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmfiles.class.php'; |
|
74 | - $ecmfile=new EcmFiles($db); |
|
73 | + include_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmfiles.class.php'; |
|
74 | + $ecmfile=new EcmFiles($db); |
|
75 | 75 | |
76 | - $ecmfile->fetch(0, '', $propaltmp->last_main_doc); |
|
76 | + $ecmfile->fetch(0, '', $propaltmp->last_main_doc); |
|
77 | 77 | |
78 | - $hashp=$ecmfile->share; |
|
79 | - if (empty($hashp)) |
|
80 | - { |
|
81 | - $out = $langs->trans("FeatureOnlineSignDisabled"); |
|
82 | - return $out; |
|
83 | - } |
|
84 | - else |
|
85 | - { |
|
86 | - $out.='&hashp='.$hashp; |
|
87 | - } |
|
88 | - } |
|
89 | - } |
|
78 | + $hashp=$ecmfile->share; |
|
79 | + if (empty($hashp)) |
|
80 | + { |
|
81 | + $out = $langs->trans("FeatureOnlineSignDisabled"); |
|
82 | + return $out; |
|
83 | + } |
|
84 | + else |
|
85 | + { |
|
86 | + $out.='&hashp='.$hashp; |
|
87 | + } |
|
88 | + } |
|
89 | + } |
|
90 | 90 | |
91 | - // For multicompany |
|
92 | - if (! empty($out)) $out.="&entity=".$conf->entity; // Check the entity because He may be the same reference in several entities |
|
91 | + // For multicompany |
|
92 | + if (! empty($out)) $out.="&entity=".$conf->entity; // Check the entity because He may be the same reference in several entities |
|
93 | 93 | |
94 | - return $out; |
|
94 | + return $out; |
|
95 | 95 | } |
@@ -24,19 +24,19 @@ discard block |
||
24 | 24 | * @param string $ref Ref of object |
25 | 25 | * @return string Url string |
26 | 26 | */ |
27 | -function showOnlineSignatureUrl($type,$ref) |
|
27 | +function showOnlineSignatureUrl($type, $ref) |
|
28 | 28 | { |
29 | 29 | global $conf, $langs; |
30 | 30 | |
31 | 31 | // Load translation files required by the page |
32 | - $langs->loadLangs(array("payment","paybox")); |
|
32 | + $langs->loadLangs(array("payment", "paybox")); |
|
33 | 33 | |
34 | - $servicename='Online'; |
|
34 | + $servicename = 'Online'; |
|
35 | 35 | |
36 | - $out = img_picto('','object_globe.png').' '.$langs->trans("ToOfferALinkForOnlineSignature",$servicename).'<br>'; |
|
36 | + $out = img_picto('', 'object_globe.png').' '.$langs->trans("ToOfferALinkForOnlineSignature", $servicename).'<br>'; |
|
37 | 37 | $url = getOnlineSignatureUrl(0, $type, $ref); |
38 | - $out.= '<input type="text" id="onlinesignatureurl" class="quatrevingtpercent" value="'.$url.'">'; |
|
39 | - $out.= ajax_autoselect("onlinesignatureurl", 0); |
|
38 | + $out .= '<input type="text" id="onlinesignatureurl" class="quatrevingtpercent" value="'.$url.'">'; |
|
39 | + $out .= ajax_autoselect("onlinesignatureurl", 0); |
|
40 | 40 | return $out; |
41 | 41 | } |
42 | 42 | |
@@ -49,33 +49,33 @@ discard block |
||
49 | 49 | * @param string $ref Ref of object |
50 | 50 | * @return string Url string |
51 | 51 | */ |
52 | -function getOnlineSignatureUrl($mode, $type, $ref='') |
|
52 | +function getOnlineSignatureUrl($mode, $type, $ref = '') |
|
53 | 53 | { |
54 | 54 | global $conf, $db, $langs; |
55 | 55 | |
56 | - $ref=str_replace(' ','',$ref); |
|
57 | - $out=''; |
|
56 | + $ref = str_replace(' ', '', $ref); |
|
57 | + $out = ''; |
|
58 | 58 | |
59 | 59 | if ($type == 'proposal') |
60 | 60 | { |
61 | - $out=DOL_MAIN_URL_ROOT.'/public/onlinesign/newonlinesign.php?source=proposal&ref='.($mode?'<font color="#666666">':''); |
|
62 | - if ($mode == 1) $out.='proposal_ref'; |
|
63 | - if ($mode == 0) $out.=urlencode($ref); |
|
64 | - $out.=($mode?'</font>':''); |
|
65 | - if ($mode == 1) $out.='&hashp=<font color="#666666">hash_of_file</font>'; |
|
61 | + $out = DOL_MAIN_URL_ROOT.'/public/onlinesign/newonlinesign.php?source=proposal&ref='.($mode ? '<font color="#666666">' : ''); |
|
62 | + if ($mode == 1) $out .= 'proposal_ref'; |
|
63 | + if ($mode == 0) $out .= urlencode($ref); |
|
64 | + $out .= ($mode ? '</font>' : ''); |
|
65 | + if ($mode == 1) $out .= '&hashp=<font color="#666666">hash_of_file</font>'; |
|
66 | 66 | else |
67 | 67 | { |
68 | 68 | include_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php'; |
69 | - $propaltmp=new Propal($db); |
|
69 | + $propaltmp = new Propal($db); |
|
70 | 70 | $res = $propaltmp->fetch(0, $ref); |
71 | 71 | if ($res <= 0) return 'FailedToGetProposal'; |
72 | 72 | |
73 | 73 | include_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmfiles.class.php'; |
74 | - $ecmfile=new EcmFiles($db); |
|
74 | + $ecmfile = new EcmFiles($db); |
|
75 | 75 | |
76 | 76 | $ecmfile->fetch(0, '', $propaltmp->last_main_doc); |
77 | 77 | |
78 | - $hashp=$ecmfile->share; |
|
78 | + $hashp = $ecmfile->share; |
|
79 | 79 | if (empty($hashp)) |
80 | 80 | { |
81 | 81 | $out = $langs->trans("FeatureOnlineSignDisabled"); |
@@ -83,13 +83,13 @@ discard block |
||
83 | 83 | } |
84 | 84 | else |
85 | 85 | { |
86 | - $out.='&hashp='.$hashp; |
|
86 | + $out .= '&hashp='.$hashp; |
|
87 | 87 | } |
88 | 88 | } |
89 | 89 | } |
90 | 90 | |
91 | 91 | // For multicompany |
92 | - if (! empty($out)) $out.="&entity=".$conf->entity; // Check the entity because He may be the same reference in several entities |
|
92 | + if (!empty($out)) $out .= "&entity=".$conf->entity; // Check the entity because He may be the same reference in several entities |
|
93 | 93 | |
94 | 94 | return $out; |
95 | 95 | } |
@@ -59,16 +59,23 @@ discard block |
||
59 | 59 | if ($type == 'proposal') |
60 | 60 | { |
61 | 61 | $out=DOL_MAIN_URL_ROOT.'/public/onlinesign/newonlinesign.php?source=proposal&ref='.($mode?'<font color="#666666">':''); |
62 | - if ($mode == 1) $out.='proposal_ref'; |
|
63 | - if ($mode == 0) $out.=urlencode($ref); |
|
62 | + if ($mode == 1) { |
|
63 | + $out.='proposal_ref'; |
|
64 | + } |
|
65 | + if ($mode == 0) { |
|
66 | + $out.=urlencode($ref); |
|
67 | + } |
|
64 | 68 | $out.=($mode?'</font>':''); |
65 | - if ($mode == 1) $out.='&hashp=<font color="#666666">hash_of_file</font>'; |
|
66 | - else |
|
69 | + if ($mode == 1) { |
|
70 | + $out.='&hashp=<font color="#666666">hash_of_file</font>'; |
|
71 | + } else |
|
67 | 72 | { |
68 | 73 | include_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php'; |
69 | 74 | $propaltmp=new Propal($db); |
70 | 75 | $res = $propaltmp->fetch(0, $ref); |
71 | - if ($res <= 0) return 'FailedToGetProposal'; |
|
76 | + if ($res <= 0) { |
|
77 | + return 'FailedToGetProposal'; |
|
78 | + } |
|
72 | 79 | |
73 | 80 | include_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmfiles.class.php'; |
74 | 81 | $ecmfile=new EcmFiles($db); |
@@ -80,8 +87,7 @@ discard block |
||
80 | 87 | { |
81 | 88 | $out = $langs->trans("FeatureOnlineSignDisabled"); |
82 | 89 | return $out; |
83 | - } |
|
84 | - else |
|
90 | + } else |
|
85 | 91 | { |
86 | 92 | $out.='&hashp='.$hashp; |
87 | 93 | } |
@@ -89,7 +95,10 @@ discard block |
||
89 | 95 | } |
90 | 96 | |
91 | 97 | // For multicompany |
92 | - if (! empty($out)) $out.="&entity=".$conf->entity; // Check the entity because He may be the same reference in several entities |
|
98 | + if (! empty($out)) { |
|
99 | + $out.="&entity=".$conf->entity; |
|
100 | + } |
|
101 | + // Check the entity because He may be the same reference in several entities |
|
93 | 102 | |
94 | 103 | return $out; |
95 | 104 | } |
@@ -67,27 +67,27 @@ discard block |
||
67 | 67 | |
68 | 68 | if ($object->courant != Account::TYPE_CASH) |
69 | 69 | { |
70 | - $nbReceipts=0; |
|
71 | - |
|
72 | - // List of all standing receipts |
|
73 | - $sql = "SELECT COUNT(DISTINCT(b.num_releve)) as nb"; |
|
74 | - $sql.= " FROM ".MAIN_DB_PREFIX."bank as b"; |
|
75 | - $sql.= " WHERE b.fk_account = ".$object->id; |
|
76 | - |
|
77 | - $resql = $db->query($sql); |
|
78 | - if ($resql) |
|
79 | - { |
|
80 | - $obj = $db->fetch_object($resql); |
|
81 | - if ($obj) $nbReceipts = $obj->nb; |
|
82 | - $db->free($resql); |
|
83 | - } |
|
84 | - |
|
85 | - $head[$h][0] = DOL_URL_ROOT."/compta/bank/releve.php?account=".$object->id; |
|
86 | - $head[$h][1] = $langs->trans("AccountStatements"); |
|
87 | - if (($nbReceipts) > 0) $head[$h][1].= ' <span class="badge">'.($nbReceipts).'</span>'; |
|
88 | - $head[$h][2] = 'statement'; |
|
89 | - $h++; |
|
90 | - } |
|
70 | + $nbReceipts=0; |
|
71 | + |
|
72 | + // List of all standing receipts |
|
73 | + $sql = "SELECT COUNT(DISTINCT(b.num_releve)) as nb"; |
|
74 | + $sql.= " FROM ".MAIN_DB_PREFIX."bank as b"; |
|
75 | + $sql.= " WHERE b.fk_account = ".$object->id; |
|
76 | + |
|
77 | + $resql = $db->query($sql); |
|
78 | + if ($resql) |
|
79 | + { |
|
80 | + $obj = $db->fetch_object($resql); |
|
81 | + if ($obj) $nbReceipts = $obj->nb; |
|
82 | + $db->free($resql); |
|
83 | + } |
|
84 | + |
|
85 | + $head[$h][0] = DOL_URL_ROOT."/compta/bank/releve.php?account=".$object->id; |
|
86 | + $head[$h][1] = $langs->trans("AccountStatements"); |
|
87 | + if (($nbReceipts) > 0) $head[$h][1].= ' <span class="badge">'.($nbReceipts).'</span>'; |
|
88 | + $head[$h][2] = 'statement'; |
|
89 | + $h++; |
|
90 | + } |
|
91 | 91 | |
92 | 92 | // Attached files |
93 | 93 | require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | $head[$h][2] = 'document'; |
102 | 102 | $h++; |
103 | 103 | |
104 | - // Show more tabs from modules |
|
104 | + // Show more tabs from modules |
|
105 | 105 | // Entries must be declared in modules descriptor with line |
106 | 106 | // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
107 | 107 | // $this->tabs = array('entity:-tabname); to remove a tab |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $head[$h][2] = 'info'; |
113 | 113 | $h++;*/ |
114 | 114 | |
115 | - complete_head_from_modules($conf, $langs, $object, $head, $h, 'bank', 'remove'); |
|
115 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'bank', 'remove'); |
|
116 | 116 | |
117 | 117 | return $head; |
118 | 118 | } |
@@ -124,14 +124,14 @@ discard block |
||
124 | 124 | */ |
125 | 125 | function bank_admin_prepare_head($object) |
126 | 126 | { |
127 | - global $langs, $conf, $user; |
|
128 | - $h = 0; |
|
129 | - $head = array(); |
|
127 | + global $langs, $conf, $user; |
|
128 | + $h = 0; |
|
129 | + $head = array(); |
|
130 | 130 | |
131 | - $head[$h][0] = DOL_URL_ROOT . '/admin/bank.php'; |
|
132 | - $head[$h][1] = $langs->trans("Miscellaneous"); |
|
133 | - $head[$h][2] = 'general'; |
|
134 | - $h++; |
|
131 | + $head[$h][0] = DOL_URL_ROOT . '/admin/bank.php'; |
|
132 | + $head[$h][1] = $langs->trans("Miscellaneous"); |
|
133 | + $head[$h][2] = 'general'; |
|
134 | + $h++; |
|
135 | 135 | |
136 | 136 | $head[$h][0] = DOL_URL_ROOT . '/admin/chequereceipts.php'; |
137 | 137 | $head[$h][1] = $langs->trans("CheckReceiptShort"); |
@@ -139,20 +139,20 @@ discard block |
||
139 | 139 | $h++; |
140 | 140 | |
141 | 141 | |
142 | - // Show more tabs from modules |
|
143 | - // Entries must be declared in modules descriptor with line |
|
144 | - // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
|
145 | - // $this->tabs = array('entity:-tabname); to remove a tab |
|
146 | - complete_head_from_modules($conf, $langs, $object, $head, $h, 'bank_admin'); |
|
142 | + // Show more tabs from modules |
|
143 | + // Entries must be declared in modules descriptor with line |
|
144 | + // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
|
145 | + // $this->tabs = array('entity:-tabname); to remove a tab |
|
146 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'bank_admin'); |
|
147 | 147 | |
148 | - $head[$h][0] = DOL_URL_ROOT.'/admin/bank_extrafields.php'; |
|
149 | - $head[$h][1] = $langs->trans("ExtraFields"); |
|
150 | - $head[$h][2] = 'attributes'; |
|
151 | - $h++; |
|
148 | + $head[$h][0] = DOL_URL_ROOT.'/admin/bank_extrafields.php'; |
|
149 | + $head[$h][1] = $langs->trans("ExtraFields"); |
|
150 | + $head[$h][2] = 'attributes'; |
|
151 | + $h++; |
|
152 | 152 | |
153 | - complete_head_from_modules($conf, $langs, $object, $head, $h, 'bank_admin', 'remove'); |
|
153 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'bank_admin', 'remove'); |
|
154 | 154 | |
155 | - return $head; |
|
155 | + return $head; |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | /** |
@@ -164,15 +164,15 @@ discard block |
||
164 | 164 | function various_payment_prepare_head($object) |
165 | 165 | { |
166 | 166 | |
167 | - global $db, $langs, $conf; |
|
167 | + global $db, $langs, $conf; |
|
168 | 168 | |
169 | - $h = 0; |
|
170 | - $head = array(); |
|
169 | + $h = 0; |
|
170 | + $head = array(); |
|
171 | 171 | |
172 | - $head[$h][0] = DOL_URL_ROOT.'/compta/bank/various_payment/card.php?id='.$object->id; |
|
173 | - $head[$h][1] = $langs->trans("Card"); |
|
174 | - $head[$h][2] = 'card'; |
|
175 | - $h++; |
|
172 | + $head[$h][0] = DOL_URL_ROOT.'/compta/bank/various_payment/card.php?id='.$object->id; |
|
173 | + $head[$h][1] = $langs->trans("Card"); |
|
174 | + $head[$h][2] = 'card'; |
|
175 | + $h++; |
|
176 | 176 | |
177 | 177 | // Show more tabs from modules |
178 | 178 | // Entries must be declared in modules descriptor with line |
@@ -180,25 +180,25 @@ discard block |
||
180 | 180 | // $this->tabs = array('entity:-tabname); to remove a tab |
181 | 181 | complete_head_from_modules($conf,$langs,$object,$head,$h,'various_payment'); |
182 | 182 | |
183 | - require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
|
183 | + require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
|
184 | 184 | require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php'; |
185 | - $upload_dir = $conf->banque->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
186 | - $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
185 | + $upload_dir = $conf->banque->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
186 | + $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
187 | 187 | $nbLinks=Link::count($db, $object->element, $object->id); |
188 | - $head[$h][0] = DOL_URL_ROOT.'/compta/bank/various_payment/document.php?id='.$object->id; |
|
189 | - $head[$h][1] = $langs->trans('Documents'); |
|
190 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
191 | - $head[$h][2] = 'documents'; |
|
192 | - $h++; |
|
188 | + $head[$h][0] = DOL_URL_ROOT.'/compta/bank/various_payment/document.php?id='.$object->id; |
|
189 | + $head[$h][1] = $langs->trans('Documents'); |
|
190 | + if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
191 | + $head[$h][2] = 'documents'; |
|
192 | + $h++; |
|
193 | 193 | |
194 | - $head[$h][0] = DOL_URL_ROOT.'/compta/bank/various_payment/info.php?id='.$object->id; |
|
195 | - $head[$h][1] = $langs->trans("Info"); |
|
196 | - $head[$h][2] = 'info'; |
|
197 | - $h++; |
|
194 | + $head[$h][0] = DOL_URL_ROOT.'/compta/bank/various_payment/info.php?id='.$object->id; |
|
195 | + $head[$h][1] = $langs->trans("Info"); |
|
196 | + $head[$h][2] = 'info'; |
|
197 | + $h++; |
|
198 | 198 | |
199 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'various_payment', 'remove'); |
|
199 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'various_payment', 'remove'); |
|
200 | 200 | |
201 | - return $head; |
|
201 | + return $head; |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -37,42 +37,42 @@ discard block |
||
37 | 37 | $h = 0; |
38 | 38 | $head = array(); |
39 | 39 | |
40 | - $head[$h][0] = DOL_URL_ROOT . '/compta/bank/card.php?id=' . $object->id; |
|
40 | + $head[$h][0] = DOL_URL_ROOT.'/compta/bank/card.php?id='.$object->id; |
|
41 | 41 | $head[$h][1] = $langs->trans("Card"); |
42 | 42 | $head[$h][2] = 'bankname'; |
43 | 43 | $h++; |
44 | 44 | |
45 | - $head[$h][0] = DOL_URL_ROOT . "/compta/bank/bankentries_list.php?id=" . $object->id; |
|
45 | + $head[$h][0] = DOL_URL_ROOT."/compta/bank/bankentries_list.php?id=".$object->id; |
|
46 | 46 | $head[$h][1] = $langs->trans("BankTransactions"); |
47 | 47 | $head[$h][2] = 'journal'; |
48 | 48 | $h++; |
49 | 49 | |
50 | 50 | // if ($conf->global->MAIN_FEATURES_LEVEL >= 1) |
51 | 51 | // { |
52 | - $head[$h][0] = DOL_URL_ROOT . "/compta/bank/treso.php?account=" . $object->id; |
|
52 | + $head[$h][0] = DOL_URL_ROOT."/compta/bank/treso.php?account=".$object->id; |
|
53 | 53 | $head[$h][1] = $langs->trans("PlannedTransactions"); |
54 | 54 | $head[$h][2] = 'cash'; |
55 | 55 | $h++; |
56 | 56 | // } |
57 | 57 | |
58 | - $head[$h][0] = DOL_URL_ROOT . "/compta/bank/annuel.php?account=" . $object->id; |
|
58 | + $head[$h][0] = DOL_URL_ROOT."/compta/bank/annuel.php?account=".$object->id; |
|
59 | 59 | $head[$h][1] = $langs->trans("IOMonthlyReporting"); |
60 | 60 | $head[$h][2] = 'annual'; |
61 | 61 | $h++; |
62 | 62 | |
63 | - $head[$h][0] = DOL_URL_ROOT . "/compta/bank/graph.php?account=" . $object->id; |
|
63 | + $head[$h][0] = DOL_URL_ROOT."/compta/bank/graph.php?account=".$object->id; |
|
64 | 64 | $head[$h][1] = $langs->trans("Graph"); |
65 | 65 | $head[$h][2] = 'graph'; |
66 | 66 | $h++; |
67 | 67 | |
68 | 68 | if ($object->courant != Account::TYPE_CASH) |
69 | 69 | { |
70 | - $nbReceipts=0; |
|
70 | + $nbReceipts = 0; |
|
71 | 71 | |
72 | 72 | // List of all standing receipts |
73 | 73 | $sql = "SELECT COUNT(DISTINCT(b.num_releve)) as nb"; |
74 | - $sql.= " FROM ".MAIN_DB_PREFIX."bank as b"; |
|
75 | - $sql.= " WHERE b.fk_account = ".$object->id; |
|
74 | + $sql .= " FROM ".MAIN_DB_PREFIX."bank as b"; |
|
75 | + $sql .= " WHERE b.fk_account = ".$object->id; |
|
76 | 76 | |
77 | 77 | $resql = $db->query($sql); |
78 | 78 | if ($resql) |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | $head[$h][0] = DOL_URL_ROOT."/compta/bank/releve.php?account=".$object->id; |
86 | 86 | $head[$h][1] = $langs->trans("AccountStatements"); |
87 | - if (($nbReceipts) > 0) $head[$h][1].= ' <span class="badge">'.($nbReceipts).'</span>'; |
|
87 | + if (($nbReceipts) > 0) $head[$h][1] .= ' <span class="badge">'.($nbReceipts).'</span>'; |
|
88 | 88 | $head[$h][2] = 'statement'; |
89 | 89 | $h++; |
90 | 90 | } |
@@ -92,12 +92,12 @@ discard block |
||
92 | 92 | // Attached files |
93 | 93 | require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
94 | 94 | require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php'; |
95 | - $upload_dir = $conf->bank->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
96 | - $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
97 | - $nbLinks=Link::count($db, $object->element, $object->id); |
|
98 | - $head[$h][0] = DOL_URL_ROOT . "/compta/bank/document.php?account=" . $object->id; |
|
95 | + $upload_dir = $conf->bank->dir_output."/".dol_sanitizeFileName($object->ref); |
|
96 | + $nbFiles = count(dol_dir_list($upload_dir, 'files', 0, '', '(\.meta|_preview.*\.png)$')); |
|
97 | + $nbLinks = Link::count($db, $object->element, $object->id); |
|
98 | + $head[$h][0] = DOL_URL_ROOT."/compta/bank/document.php?account=".$object->id; |
|
99 | 99 | $head[$h][1] = $langs->trans("Documents"); |
100 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
100 | + if (($nbFiles + $nbLinks) > 0) $head[$h][1] .= ' <span class="badge">'.($nbFiles + $nbLinks).'</span>'; |
|
101 | 101 | $head[$h][2] = 'document'; |
102 | 102 | $h++; |
103 | 103 | |
@@ -128,12 +128,12 @@ discard block |
||
128 | 128 | $h = 0; |
129 | 129 | $head = array(); |
130 | 130 | |
131 | - $head[$h][0] = DOL_URL_ROOT . '/admin/bank.php'; |
|
131 | + $head[$h][0] = DOL_URL_ROOT.'/admin/bank.php'; |
|
132 | 132 | $head[$h][1] = $langs->trans("Miscellaneous"); |
133 | 133 | $head[$h][2] = 'general'; |
134 | 134 | $h++; |
135 | 135 | |
136 | - $head[$h][0] = DOL_URL_ROOT . '/admin/chequereceipts.php'; |
|
136 | + $head[$h][0] = DOL_URL_ROOT.'/admin/chequereceipts.php'; |
|
137 | 137 | $head[$h][1] = $langs->trans("CheckReceiptShort"); |
138 | 138 | $head[$h][2] = 'checkreceipts'; |
139 | 139 | $h++; |
@@ -178,16 +178,16 @@ discard block |
||
178 | 178 | // Entries must be declared in modules descriptor with line |
179 | 179 | // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
180 | 180 | // $this->tabs = array('entity:-tabname); to remove a tab |
181 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'various_payment'); |
|
181 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'various_payment'); |
|
182 | 182 | |
183 | 183 | require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
184 | 184 | require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php'; |
185 | - $upload_dir = $conf->banque->dir_output . "/" . dol_sanitizeFileName($object->ref); |
|
186 | - $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
187 | - $nbLinks=Link::count($db, $object->element, $object->id); |
|
185 | + $upload_dir = $conf->banque->dir_output."/".dol_sanitizeFileName($object->ref); |
|
186 | + $nbFiles = count(dol_dir_list($upload_dir, 'files', 0, '', '(\.meta|_preview.*\.png)$')); |
|
187 | + $nbLinks = Link::count($db, $object->element, $object->id); |
|
188 | 188 | $head[$h][0] = DOL_URL_ROOT.'/compta/bank/various_payment/document.php?id='.$object->id; |
189 | 189 | $head[$h][1] = $langs->trans('Documents'); |
190 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
190 | + if (($nbFiles + $nbLinks) > 0) $head[$h][1] .= ' <span class="badge">'.($nbFiles + $nbLinks).'</span>'; |
|
191 | 191 | $head[$h][2] = 'documents'; |
192 | 192 | $h++; |
193 | 193 | |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | $head[$h][2] = 'info'; |
197 | 197 | $h++; |
198 | 198 | |
199 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'various_payment', 'remove'); |
|
199 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'various_payment', 'remove'); |
|
200 | 200 | |
201 | 201 | return $head; |
202 | 202 | } |
@@ -252,12 +252,12 @@ discard block |
||
252 | 252 | if (empty($account->cle)) |
253 | 253 | $account->cle = $account->cle_rib; |
254 | 254 | |
255 | - dol_syslog("bank.lib::checkBanForAccount account->code_banque=" . $account->code_banque . " account->code_guichet=" . $account->code_guichet . " account->number=" . $account->number . " account->cle=" . $account->cle . " account->iban=" . $account->iban . " country_code=" . $country_code, LOG_DEBUG); |
|
255 | + dol_syslog("bank.lib::checkBanForAccount account->code_banque=".$account->code_banque." account->code_guichet=".$account->code_guichet." account->number=".$account->number." account->cle=".$account->cle." account->iban=".$account->iban." country_code=".$country_code, LOG_DEBUG); |
|
256 | 256 | |
257 | 257 | if ($country_code == 'FR') { // France rules |
258 | 258 | $coef = array(62, 34, 3); |
259 | 259 | // Concatenation des differents codes. |
260 | - $rib = strtolower(trim($account->code_banque) . trim($account->code_guichet) . trim($account->number) . trim($account->cle)); |
|
260 | + $rib = strtolower(trim($account->code_banque).trim($account->code_guichet).trim($account->number).trim($account->cle)); |
|
261 | 261 | // On remplace les eventuelles lettres par des chiffres. |
262 | 262 | //$rib = strtr($rib, "abcdefghijklmnopqrstuvwxyz","12345678912345678912345678"); //Ne marche pas |
263 | 263 | $rib = strtr($rib, "abcdefghijklmnopqrstuvwxyz", "12345678912345678923456789"); |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | |
283 | 283 | if ($country_code == 'ES') { // Spanish rules |
284 | 284 | $CCC = strtolower(trim($account->number)); |
285 | - $rib = strtolower(trim($account->code_banque) . trim($account->code_guichet)); |
|
285 | + $rib = strtolower(trim($account->code_banque).trim($account->code_guichet)); |
|
286 | 286 | $cle_rib = strtolower(checkES($rib, $CCC)); |
287 | 287 | if ($cle_rib == strtolower($account->cle)) { |
288 | 288 | return true; |
@@ -324,7 +324,7 @@ discard block |
||
324 | 324 | return $keycontrol; |
325 | 325 | } |
326 | 326 | |
327 | - $ccc = $IentOfi . $InumCta; |
|
327 | + $ccc = $IentOfi.$InumCta; |
|
328 | 328 | $numbers = "1234567890"; |
329 | 329 | |
330 | 330 | $i = 0; |
@@ -356,7 +356,7 @@ discard block |
||
356 | 356 | $sum = 0; |
357 | 357 | |
358 | 358 | for ($i = 0; $i < 11; $i++) { |
359 | - $sum += $values[$i] * (int) substr($InumCta, $i, 1);//int to cast result of substr to a number |
|
359 | + $sum += $values[$i] * (int) substr($InumCta, $i, 1); //int to cast result of substr to a number |
|
360 | 360 | } |
361 | 361 | |
362 | 362 | $key = 11 - $sum % 11; |
@@ -78,13 +78,17 @@ discard block |
||
78 | 78 | if ($resql) |
79 | 79 | { |
80 | 80 | $obj = $db->fetch_object($resql); |
81 | - if ($obj) $nbReceipts = $obj->nb; |
|
81 | + if ($obj) { |
|
82 | + $nbReceipts = $obj->nb; |
|
83 | + } |
|
82 | 84 | $db->free($resql); |
83 | 85 | } |
84 | 86 | |
85 | 87 | $head[$h][0] = DOL_URL_ROOT."/compta/bank/releve.php?account=".$object->id; |
86 | 88 | $head[$h][1] = $langs->trans("AccountStatements"); |
87 | - if (($nbReceipts) > 0) $head[$h][1].= ' <span class="badge">'.($nbReceipts).'</span>'; |
|
89 | + if (($nbReceipts) > 0) { |
|
90 | + $head[$h][1].= ' <span class="badge">'.($nbReceipts).'</span>'; |
|
91 | + } |
|
88 | 92 | $head[$h][2] = 'statement'; |
89 | 93 | $h++; |
90 | 94 | } |
@@ -97,7 +101,9 @@ discard block |
||
97 | 101 | $nbLinks=Link::count($db, $object->element, $object->id); |
98 | 102 | $head[$h][0] = DOL_URL_ROOT . "/compta/bank/document.php?account=" . $object->id; |
99 | 103 | $head[$h][1] = $langs->trans("Documents"); |
100 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
104 | + if (($nbFiles+$nbLinks) > 0) { |
|
105 | + $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
106 | + } |
|
101 | 107 | $head[$h][2] = 'document'; |
102 | 108 | $h++; |
103 | 109 | |
@@ -187,7 +193,9 @@ discard block |
||
187 | 193 | $nbLinks=Link::count($db, $object->element, $object->id); |
188 | 194 | $head[$h][0] = DOL_URL_ROOT.'/compta/bank/various_payment/document.php?id='.$object->id; |
189 | 195 | $head[$h][1] = $langs->trans('Documents'); |
190 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
196 | + if (($nbFiles+$nbLinks) > 0) { |
|
197 | + $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
198 | + } |
|
191 | 199 | $head[$h][2] = 'documents'; |
192 | 200 | $h++; |
193 | 201 | |
@@ -230,9 +238,12 @@ discard block |
||
230 | 238 | $iban = new IBAN($account->iban); |
231 | 239 | $check = $iban->Verify(); |
232 | 240 | |
233 | - if ($check) return true; |
|
234 | - else return false; |
|
235 | -} |
|
241 | + if ($check) { |
|
242 | + return true; |
|
243 | + } else { |
|
244 | + return false; |
|
245 | + } |
|
246 | + } |
|
236 | 247 | |
237 | 248 | /** |
238 | 249 | * Check account number informations for a bank account |
@@ -247,10 +258,12 @@ discard block |
||
247 | 258 | // For compatibility between |
248 | 259 | // account of type CompanyBankAccount class (we use number, cle_rib) |
249 | 260 | // account of type Account class (we use num_compte, cle) |
250 | - if (empty($account->number)) |
|
251 | - $account->number = $account->num_compte; |
|
252 | - if (empty($account->cle)) |
|
253 | - $account->cle = $account->cle_rib; |
|
261 | + if (empty($account->number)) { |
|
262 | + $account->number = $account->num_compte; |
|
263 | + } |
|
264 | + if (empty($account->cle)) { |
|
265 | + $account->cle = $account->cle_rib; |
|
266 | + } |
|
254 | 267 | |
255 | 268 | dol_syslog("bank.lib::checkBanForAccount account->code_banque=" . $account->code_banque . " account->code_guichet=" . $account->code_guichet . " account->number=" . $account->number . " account->cle=" . $account->cle . " account->iban=" . $account->iban . " country_code=" . $country_code, LOG_DEBUG); |
256 | 269 | |
@@ -290,12 +303,17 @@ discard block |
||
290 | 303 | return false; |
291 | 304 | } |
292 | 305 | if ($country_code == 'AU') { // Australian |
293 | - if (strlen($account->code_banque) > 7) |
|
294 | - return false; // Sould be 6 but can be 123-456 |
|
295 | - else if (strlen($account->code_banque) < 6) |
|
296 | - return false; // Sould be 6 |
|
297 | - else |
|
298 | - return true; |
|
306 | + if (strlen($account->code_banque) > 7) { |
|
307 | + return false; |
|
308 | + } |
|
309 | + // Sould be 6 but can be 123-456 |
|
310 | + else if (strlen($account->code_banque) < 6) { |
|
311 | + return false; |
|
312 | + } |
|
313 | + // Sould be 6 |
|
314 | + else { |
|
315 | + return true; |
|
316 | + } |
|
299 | 317 | } |
300 | 318 | |
301 | 319 | // No particular rule |
@@ -346,10 +364,12 @@ discard block |
||
346 | 364 | |
347 | 365 | $key = 11 - $sum % 11; |
348 | 366 | |
349 | - if ($key == 10) |
|
350 | - $key = 1; |
|
351 | - if ($key == 11) |
|
352 | - $key = 0; |
|
367 | + if ($key == 10) { |
|
368 | + $key = 1; |
|
369 | + } |
|
370 | + if ($key == 11) { |
|
371 | + $key = 0; |
|
372 | + } |
|
353 | 373 | |
354 | 374 | $keycontrol = $key; |
355 | 375 | |
@@ -361,10 +381,12 @@ discard block |
||
361 | 381 | |
362 | 382 | $key = 11 - $sum % 11; |
363 | 383 | |
364 | - if ($key == 10) |
|
365 | - $key = 1; |
|
366 | - if ($key == 11) |
|
367 | - $key = 0; |
|
384 | + if ($key == 10) { |
|
385 | + $key = 1; |
|
386 | + } |
|
387 | + if ($key == 11) { |
|
388 | + $key = 0; |
|
389 | + } |
|
368 | 390 | |
369 | 391 | $keycontrol .= $key; |
370 | 392 | return $keycontrol; |
@@ -29,28 +29,28 @@ |
||
29 | 29 | */ |
30 | 30 | function fiscalyear_prepare_head(Fiscalyear $object) |
31 | 31 | { |
32 | - global $langs, $conf; |
|
32 | + global $langs, $conf; |
|
33 | 33 | |
34 | - $h = 0; |
|
35 | - $head = array(); |
|
34 | + $h = 0; |
|
35 | + $head = array(); |
|
36 | 36 | |
37 | - $head[$h][0] = DOL_URL_ROOT . '/accountancy/admin/fiscalyear_card.php?id=' . $object->id; |
|
38 | - $head[$h][1] = $langs->trans("Card"); |
|
39 | - $head[$h][2] = 'card'; |
|
40 | - $h++; |
|
37 | + $head[$h][0] = DOL_URL_ROOT . '/accountancy/admin/fiscalyear_card.php?id=' . $object->id; |
|
38 | + $head[$h][1] = $langs->trans("Card"); |
|
39 | + $head[$h][2] = 'card'; |
|
40 | + $h++; |
|
41 | 41 | |
42 | - // Show more tabs from modules |
|
43 | - // Entries must be declared in modules descriptor with line |
|
42 | + // Show more tabs from modules |
|
43 | + // Entries must be declared in modules descriptor with line |
|
44 | 44 | // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
45 | 45 | // $this->tabs = array('entity:-tabname); to remove a tab |
46 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'fiscalyear'); |
|
46 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'fiscalyear'); |
|
47 | 47 | |
48 | - $head[$h][0] = DOL_URL_ROOT . '/accountancy/admin/fiscalyear_info.php?id=' . $object->id; |
|
49 | - $head[$h][1] = $langs->trans("Info"); |
|
50 | - $head[$h][2] = 'info'; |
|
51 | - $h++; |
|
48 | + $head[$h][0] = DOL_URL_ROOT . '/accountancy/admin/fiscalyear_info.php?id=' . $object->id; |
|
49 | + $head[$h][1] = $langs->trans("Info"); |
|
50 | + $head[$h][2] = 'info'; |
|
51 | + $h++; |
|
52 | 52 | |
53 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'fiscalyear','remove'); |
|
53 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'fiscalyear','remove'); |
|
54 | 54 | |
55 | - return $head; |
|
55 | + return $head; |
|
56 | 56 | } |
57 | 57 | \ No newline at end of file |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $h = 0; |
35 | 35 | $head = array(); |
36 | 36 | |
37 | - $head[$h][0] = DOL_URL_ROOT . '/accountancy/admin/fiscalyear_card.php?id=' . $object->id; |
|
37 | + $head[$h][0] = DOL_URL_ROOT.'/accountancy/admin/fiscalyear_card.php?id='.$object->id; |
|
38 | 38 | $head[$h][1] = $langs->trans("Card"); |
39 | 39 | $head[$h][2] = 'card'; |
40 | 40 | $h++; |
@@ -43,14 +43,14 @@ discard block |
||
43 | 43 | // Entries must be declared in modules descriptor with line |
44 | 44 | // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
45 | 45 | // $this->tabs = array('entity:-tabname); to remove a tab |
46 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'fiscalyear'); |
|
46 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'fiscalyear'); |
|
47 | 47 | |
48 | - $head[$h][0] = DOL_URL_ROOT . '/accountancy/admin/fiscalyear_info.php?id=' . $object->id; |
|
48 | + $head[$h][0] = DOL_URL_ROOT.'/accountancy/admin/fiscalyear_info.php?id='.$object->id; |
|
49 | 49 | $head[$h][1] = $langs->trans("Info"); |
50 | 50 | $head[$h][2] = 'info'; |
51 | 51 | $h++; |
52 | 52 | |
53 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'fiscalyear','remove'); |
|
53 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'fiscalyear', 'remove'); |
|
54 | 54 | |
55 | 55 | return $head; |
56 | 56 | } |
57 | 57 | \ No newline at end of file |
@@ -31,140 +31,140 @@ |
||
31 | 31 | */ |
32 | 32 | function dol_ch_controle_bvrb($bvrb) |
33 | 33 | { |
34 | - // Init array for control |
|
35 | - $tableau[0][0]=0; |
|
36 | - $tableau[0][1]=9; |
|
37 | - $tableau[0][2]=4; |
|
38 | - $tableau[0][3]=6; |
|
39 | - $tableau[0][4]=8; |
|
40 | - $tableau[0][5]=2; |
|
41 | - $tableau[0][6]=7; |
|
42 | - $tableau[0][7]=1; |
|
43 | - $tableau[0][8]=3; |
|
44 | - $tableau[0][9]=5; |
|
45 | - $tableau[0][10]=0; |
|
46 | - |
|
47 | - $tableau[1][0]=9; |
|
48 | - $tableau[1][1]=4; |
|
49 | - $tableau[1][2]=6; |
|
50 | - $tableau[1][3]=8; |
|
51 | - $tableau[1][4]=2; |
|
52 | - $tableau[1][5]=7; |
|
53 | - $tableau[1][6]=1; |
|
54 | - $tableau[1][7]=3; |
|
55 | - $tableau[1][8]=5; |
|
56 | - $tableau[1][9]=0; |
|
57 | - $tableau[1][10]=9; |
|
58 | - |
|
59 | - $tableau[2][0]=4; |
|
60 | - $tableau[2][1]=6; |
|
61 | - $tableau[2][2]=8; |
|
62 | - $tableau[2][3]=2; |
|
63 | - $tableau[2][4]=7; |
|
64 | - $tableau[2][5]=1; |
|
65 | - $tableau[2][6]=3; |
|
66 | - $tableau[2][7]=5; |
|
67 | - $tableau[2][8]=0; |
|
68 | - $tableau[2][9]=9; |
|
69 | - $tableau[2][10]=8; |
|
70 | - |
|
71 | - $tableau[3][0]=6; |
|
72 | - $tableau[3][1]=8; |
|
73 | - $tableau[3][2]=2; |
|
74 | - $tableau[3][3]=7; |
|
75 | - $tableau[3][4]=1; |
|
76 | - $tableau[3][5]=3; |
|
77 | - $tableau[3][6]=5; |
|
78 | - $tableau[3][7]=0; |
|
79 | - $tableau[3][8]=9; |
|
80 | - $tableau[3][9]=4; |
|
81 | - $tableau[3][10]=7; |
|
82 | - |
|
83 | - $tableau[4][0]=8; |
|
84 | - $tableau[4][1]=2; |
|
85 | - $tableau[4][2]=7; |
|
86 | - $tableau[4][3]=1; |
|
87 | - $tableau[4][4]=3; |
|
88 | - $tableau[4][5]=5; |
|
89 | - $tableau[4][6]=0; |
|
90 | - $tableau[4][7]=9; |
|
91 | - $tableau[4][8]=4; |
|
92 | - $tableau[4][9]=6; |
|
93 | - $tableau[4][10]=6; |
|
94 | - |
|
95 | - $tableau[5][0]=2; |
|
96 | - $tableau[5][1]=7; |
|
97 | - $tableau[5][2]=1; |
|
98 | - $tableau[5][3]=3; |
|
99 | - $tableau[5][4]=5; |
|
100 | - $tableau[5][5]=0; |
|
101 | - $tableau[5][6]=9; |
|
102 | - $tableau[5][7]=4; |
|
103 | - $tableau[5][8]=6; |
|
104 | - $tableau[5][9]=8; |
|
105 | - $tableau[5][10]=5; |
|
106 | - |
|
107 | - $tableau[6][0]=7; |
|
108 | - $tableau[6][1]=1; |
|
109 | - $tableau[6][2]=3; |
|
110 | - $tableau[6][3]=5; |
|
111 | - $tableau[6][4]=0; |
|
112 | - $tableau[6][5]=9; |
|
113 | - $tableau[6][6]=4; |
|
114 | - $tableau[6][7]=6; |
|
115 | - $tableau[6][8]=8; |
|
116 | - $tableau[6][9]=2; |
|
117 | - $tableau[6][10]=4; |
|
118 | - |
|
119 | - $tableau[7][0]=1; |
|
120 | - $tableau[7][1]=3; |
|
121 | - $tableau[7][2]=5; |
|
122 | - $tableau[7][3]=0; |
|
123 | - $tableau[7][4]=9; |
|
124 | - $tableau[7][5]=4; |
|
125 | - $tableau[7][6]=6; |
|
126 | - $tableau[7][7]=8; |
|
127 | - $tableau[7][8]=2; |
|
128 | - $tableau[7][9]=7; |
|
129 | - $tableau[7][10]=3; |
|
130 | - |
|
131 | - $tableau[8][0]=3; |
|
132 | - $tableau[8][1]=5; |
|
133 | - $tableau[8][2]=0; |
|
134 | - $tableau[8][3]=9; |
|
135 | - $tableau[8][4]=4; |
|
136 | - $tableau[8][5]=6; |
|
137 | - $tableau[8][6]=8; |
|
138 | - $tableau[8][7]=2; |
|
139 | - $tableau[8][8]=7; |
|
140 | - $tableau[8][9]=1; |
|
141 | - $tableau[8][10]=2; |
|
142 | - |
|
143 | - $tableau[9][0]=5; |
|
144 | - $tableau[9][1]=0; |
|
145 | - $tableau[9][2]=9; |
|
146 | - $tableau[9][3]=4; |
|
147 | - $tableau[9][4]=6; |
|
148 | - $tableau[9][5]=8; |
|
149 | - $tableau[9][6]=2; |
|
150 | - $tableau[9][7]=7; |
|
151 | - $tableau[9][8]=1; |
|
152 | - $tableau[9][9]=3; |
|
153 | - $tableau[9][10]=1; |
|
154 | - |
|
155 | - |
|
156 | - // Clean data |
|
157 | - $bv=str_replace(' ','',$bvrb); |
|
158 | - |
|
159 | - // Make control |
|
160 | - $report=0; |
|
161 | - while (dol_strlen($bv)>1) |
|
162 | - { |
|
163 | - $match=substr($bv,0,1); |
|
164 | - $report=$tableau[$report][$match]; |
|
165 | - $bv=substr($bv,1); |
|
166 | - } |
|
167 | - $controle=$tableau[$report][10]; |
|
168 | - |
|
169 | - return ($controle==$bv); |
|
34 | + // Init array for control |
|
35 | + $tableau[0][0]=0; |
|
36 | + $tableau[0][1]=9; |
|
37 | + $tableau[0][2]=4; |
|
38 | + $tableau[0][3]=6; |
|
39 | + $tableau[0][4]=8; |
|
40 | + $tableau[0][5]=2; |
|
41 | + $tableau[0][6]=7; |
|
42 | + $tableau[0][7]=1; |
|
43 | + $tableau[0][8]=3; |
|
44 | + $tableau[0][9]=5; |
|
45 | + $tableau[0][10]=0; |
|
46 | + |
|
47 | + $tableau[1][0]=9; |
|
48 | + $tableau[1][1]=4; |
|
49 | + $tableau[1][2]=6; |
|
50 | + $tableau[1][3]=8; |
|
51 | + $tableau[1][4]=2; |
|
52 | + $tableau[1][5]=7; |
|
53 | + $tableau[1][6]=1; |
|
54 | + $tableau[1][7]=3; |
|
55 | + $tableau[1][8]=5; |
|
56 | + $tableau[1][9]=0; |
|
57 | + $tableau[1][10]=9; |
|
58 | + |
|
59 | + $tableau[2][0]=4; |
|
60 | + $tableau[2][1]=6; |
|
61 | + $tableau[2][2]=8; |
|
62 | + $tableau[2][3]=2; |
|
63 | + $tableau[2][4]=7; |
|
64 | + $tableau[2][5]=1; |
|
65 | + $tableau[2][6]=3; |
|
66 | + $tableau[2][7]=5; |
|
67 | + $tableau[2][8]=0; |
|
68 | + $tableau[2][9]=9; |
|
69 | + $tableau[2][10]=8; |
|
70 | + |
|
71 | + $tableau[3][0]=6; |
|
72 | + $tableau[3][1]=8; |
|
73 | + $tableau[3][2]=2; |
|
74 | + $tableau[3][3]=7; |
|
75 | + $tableau[3][4]=1; |
|
76 | + $tableau[3][5]=3; |
|
77 | + $tableau[3][6]=5; |
|
78 | + $tableau[3][7]=0; |
|
79 | + $tableau[3][8]=9; |
|
80 | + $tableau[3][9]=4; |
|
81 | + $tableau[3][10]=7; |
|
82 | + |
|
83 | + $tableau[4][0]=8; |
|
84 | + $tableau[4][1]=2; |
|
85 | + $tableau[4][2]=7; |
|
86 | + $tableau[4][3]=1; |
|
87 | + $tableau[4][4]=3; |
|
88 | + $tableau[4][5]=5; |
|
89 | + $tableau[4][6]=0; |
|
90 | + $tableau[4][7]=9; |
|
91 | + $tableau[4][8]=4; |
|
92 | + $tableau[4][9]=6; |
|
93 | + $tableau[4][10]=6; |
|
94 | + |
|
95 | + $tableau[5][0]=2; |
|
96 | + $tableau[5][1]=7; |
|
97 | + $tableau[5][2]=1; |
|
98 | + $tableau[5][3]=3; |
|
99 | + $tableau[5][4]=5; |
|
100 | + $tableau[5][5]=0; |
|
101 | + $tableau[5][6]=9; |
|
102 | + $tableau[5][7]=4; |
|
103 | + $tableau[5][8]=6; |
|
104 | + $tableau[5][9]=8; |
|
105 | + $tableau[5][10]=5; |
|
106 | + |
|
107 | + $tableau[6][0]=7; |
|
108 | + $tableau[6][1]=1; |
|
109 | + $tableau[6][2]=3; |
|
110 | + $tableau[6][3]=5; |
|
111 | + $tableau[6][4]=0; |
|
112 | + $tableau[6][5]=9; |
|
113 | + $tableau[6][6]=4; |
|
114 | + $tableau[6][7]=6; |
|
115 | + $tableau[6][8]=8; |
|
116 | + $tableau[6][9]=2; |
|
117 | + $tableau[6][10]=4; |
|
118 | + |
|
119 | + $tableau[7][0]=1; |
|
120 | + $tableau[7][1]=3; |
|
121 | + $tableau[7][2]=5; |
|
122 | + $tableau[7][3]=0; |
|
123 | + $tableau[7][4]=9; |
|
124 | + $tableau[7][5]=4; |
|
125 | + $tableau[7][6]=6; |
|
126 | + $tableau[7][7]=8; |
|
127 | + $tableau[7][8]=2; |
|
128 | + $tableau[7][9]=7; |
|
129 | + $tableau[7][10]=3; |
|
130 | + |
|
131 | + $tableau[8][0]=3; |
|
132 | + $tableau[8][1]=5; |
|
133 | + $tableau[8][2]=0; |
|
134 | + $tableau[8][3]=9; |
|
135 | + $tableau[8][4]=4; |
|
136 | + $tableau[8][5]=6; |
|
137 | + $tableau[8][6]=8; |
|
138 | + $tableau[8][7]=2; |
|
139 | + $tableau[8][8]=7; |
|
140 | + $tableau[8][9]=1; |
|
141 | + $tableau[8][10]=2; |
|
142 | + |
|
143 | + $tableau[9][0]=5; |
|
144 | + $tableau[9][1]=0; |
|
145 | + $tableau[9][2]=9; |
|
146 | + $tableau[9][3]=4; |
|
147 | + $tableau[9][4]=6; |
|
148 | + $tableau[9][5]=8; |
|
149 | + $tableau[9][6]=2; |
|
150 | + $tableau[9][7]=7; |
|
151 | + $tableau[9][8]=1; |
|
152 | + $tableau[9][9]=3; |
|
153 | + $tableau[9][10]=1; |
|
154 | + |
|
155 | + |
|
156 | + // Clean data |
|
157 | + $bv=str_replace(' ','',$bvrb); |
|
158 | + |
|
159 | + // Make control |
|
160 | + $report=0; |
|
161 | + while (dol_strlen($bv)>1) |
|
162 | + { |
|
163 | + $match=substr($bv,0,1); |
|
164 | + $report=$tableau[$report][$match]; |
|
165 | + $bv=substr($bv,1); |
|
166 | + } |
|
167 | + $controle=$tableau[$report][10]; |
|
168 | + |
|
169 | + return ($controle==$bv); |
|
170 | 170 | } |
@@ -32,139 +32,139 @@ |
||
32 | 32 | function dol_ch_controle_bvrb($bvrb) |
33 | 33 | { |
34 | 34 | // Init array for control |
35 | - $tableau[0][0]=0; |
|
36 | - $tableau[0][1]=9; |
|
37 | - $tableau[0][2]=4; |
|
38 | - $tableau[0][3]=6; |
|
39 | - $tableau[0][4]=8; |
|
40 | - $tableau[0][5]=2; |
|
41 | - $tableau[0][6]=7; |
|
42 | - $tableau[0][7]=1; |
|
43 | - $tableau[0][8]=3; |
|
44 | - $tableau[0][9]=5; |
|
45 | - $tableau[0][10]=0; |
|
46 | - |
|
47 | - $tableau[1][0]=9; |
|
48 | - $tableau[1][1]=4; |
|
49 | - $tableau[1][2]=6; |
|
50 | - $tableau[1][3]=8; |
|
51 | - $tableau[1][4]=2; |
|
52 | - $tableau[1][5]=7; |
|
53 | - $tableau[1][6]=1; |
|
54 | - $tableau[1][7]=3; |
|
55 | - $tableau[1][8]=5; |
|
56 | - $tableau[1][9]=0; |
|
57 | - $tableau[1][10]=9; |
|
58 | - |
|
59 | - $tableau[2][0]=4; |
|
60 | - $tableau[2][1]=6; |
|
61 | - $tableau[2][2]=8; |
|
62 | - $tableau[2][3]=2; |
|
63 | - $tableau[2][4]=7; |
|
64 | - $tableau[2][5]=1; |
|
65 | - $tableau[2][6]=3; |
|
66 | - $tableau[2][7]=5; |
|
67 | - $tableau[2][8]=0; |
|
68 | - $tableau[2][9]=9; |
|
69 | - $tableau[2][10]=8; |
|
70 | - |
|
71 | - $tableau[3][0]=6; |
|
72 | - $tableau[3][1]=8; |
|
73 | - $tableau[3][2]=2; |
|
74 | - $tableau[3][3]=7; |
|
75 | - $tableau[3][4]=1; |
|
76 | - $tableau[3][5]=3; |
|
77 | - $tableau[3][6]=5; |
|
78 | - $tableau[3][7]=0; |
|
79 | - $tableau[3][8]=9; |
|
80 | - $tableau[3][9]=4; |
|
81 | - $tableau[3][10]=7; |
|
82 | - |
|
83 | - $tableau[4][0]=8; |
|
84 | - $tableau[4][1]=2; |
|
85 | - $tableau[4][2]=7; |
|
86 | - $tableau[4][3]=1; |
|
87 | - $tableau[4][4]=3; |
|
88 | - $tableau[4][5]=5; |
|
89 | - $tableau[4][6]=0; |
|
90 | - $tableau[4][7]=9; |
|
91 | - $tableau[4][8]=4; |
|
92 | - $tableau[4][9]=6; |
|
93 | - $tableau[4][10]=6; |
|
94 | - |
|
95 | - $tableau[5][0]=2; |
|
96 | - $tableau[5][1]=7; |
|
97 | - $tableau[5][2]=1; |
|
98 | - $tableau[5][3]=3; |
|
99 | - $tableau[5][4]=5; |
|
100 | - $tableau[5][5]=0; |
|
101 | - $tableau[5][6]=9; |
|
102 | - $tableau[5][7]=4; |
|
103 | - $tableau[5][8]=6; |
|
104 | - $tableau[5][9]=8; |
|
105 | - $tableau[5][10]=5; |
|
106 | - |
|
107 | - $tableau[6][0]=7; |
|
108 | - $tableau[6][1]=1; |
|
109 | - $tableau[6][2]=3; |
|
110 | - $tableau[6][3]=5; |
|
111 | - $tableau[6][4]=0; |
|
112 | - $tableau[6][5]=9; |
|
113 | - $tableau[6][6]=4; |
|
114 | - $tableau[6][7]=6; |
|
115 | - $tableau[6][8]=8; |
|
116 | - $tableau[6][9]=2; |
|
117 | - $tableau[6][10]=4; |
|
118 | - |
|
119 | - $tableau[7][0]=1; |
|
120 | - $tableau[7][1]=3; |
|
121 | - $tableau[7][2]=5; |
|
122 | - $tableau[7][3]=0; |
|
123 | - $tableau[7][4]=9; |
|
124 | - $tableau[7][5]=4; |
|
125 | - $tableau[7][6]=6; |
|
126 | - $tableau[7][7]=8; |
|
127 | - $tableau[7][8]=2; |
|
128 | - $tableau[7][9]=7; |
|
129 | - $tableau[7][10]=3; |
|
130 | - |
|
131 | - $tableau[8][0]=3; |
|
132 | - $tableau[8][1]=5; |
|
133 | - $tableau[8][2]=0; |
|
134 | - $tableau[8][3]=9; |
|
135 | - $tableau[8][4]=4; |
|
136 | - $tableau[8][5]=6; |
|
137 | - $tableau[8][6]=8; |
|
138 | - $tableau[8][7]=2; |
|
139 | - $tableau[8][8]=7; |
|
140 | - $tableau[8][9]=1; |
|
141 | - $tableau[8][10]=2; |
|
142 | - |
|
143 | - $tableau[9][0]=5; |
|
144 | - $tableau[9][1]=0; |
|
145 | - $tableau[9][2]=9; |
|
146 | - $tableau[9][3]=4; |
|
147 | - $tableau[9][4]=6; |
|
148 | - $tableau[9][5]=8; |
|
149 | - $tableau[9][6]=2; |
|
150 | - $tableau[9][7]=7; |
|
151 | - $tableau[9][8]=1; |
|
152 | - $tableau[9][9]=3; |
|
153 | - $tableau[9][10]=1; |
|
35 | + $tableau[0][0] = 0; |
|
36 | + $tableau[0][1] = 9; |
|
37 | + $tableau[0][2] = 4; |
|
38 | + $tableau[0][3] = 6; |
|
39 | + $tableau[0][4] = 8; |
|
40 | + $tableau[0][5] = 2; |
|
41 | + $tableau[0][6] = 7; |
|
42 | + $tableau[0][7] = 1; |
|
43 | + $tableau[0][8] = 3; |
|
44 | + $tableau[0][9] = 5; |
|
45 | + $tableau[0][10] = 0; |
|
46 | + |
|
47 | + $tableau[1][0] = 9; |
|
48 | + $tableau[1][1] = 4; |
|
49 | + $tableau[1][2] = 6; |
|
50 | + $tableau[1][3] = 8; |
|
51 | + $tableau[1][4] = 2; |
|
52 | + $tableau[1][5] = 7; |
|
53 | + $tableau[1][6] = 1; |
|
54 | + $tableau[1][7] = 3; |
|
55 | + $tableau[1][8] = 5; |
|
56 | + $tableau[1][9] = 0; |
|
57 | + $tableau[1][10] = 9; |
|
58 | + |
|
59 | + $tableau[2][0] = 4; |
|
60 | + $tableau[2][1] = 6; |
|
61 | + $tableau[2][2] = 8; |
|
62 | + $tableau[2][3] = 2; |
|
63 | + $tableau[2][4] = 7; |
|
64 | + $tableau[2][5] = 1; |
|
65 | + $tableau[2][6] = 3; |
|
66 | + $tableau[2][7] = 5; |
|
67 | + $tableau[2][8] = 0; |
|
68 | + $tableau[2][9] = 9; |
|
69 | + $tableau[2][10] = 8; |
|
70 | + |
|
71 | + $tableau[3][0] = 6; |
|
72 | + $tableau[3][1] = 8; |
|
73 | + $tableau[3][2] = 2; |
|
74 | + $tableau[3][3] = 7; |
|
75 | + $tableau[3][4] = 1; |
|
76 | + $tableau[3][5] = 3; |
|
77 | + $tableau[3][6] = 5; |
|
78 | + $tableau[3][7] = 0; |
|
79 | + $tableau[3][8] = 9; |
|
80 | + $tableau[3][9] = 4; |
|
81 | + $tableau[3][10] = 7; |
|
82 | + |
|
83 | + $tableau[4][0] = 8; |
|
84 | + $tableau[4][1] = 2; |
|
85 | + $tableau[4][2] = 7; |
|
86 | + $tableau[4][3] = 1; |
|
87 | + $tableau[4][4] = 3; |
|
88 | + $tableau[4][5] = 5; |
|
89 | + $tableau[4][6] = 0; |
|
90 | + $tableau[4][7] = 9; |
|
91 | + $tableau[4][8] = 4; |
|
92 | + $tableau[4][9] = 6; |
|
93 | + $tableau[4][10] = 6; |
|
94 | + |
|
95 | + $tableau[5][0] = 2; |
|
96 | + $tableau[5][1] = 7; |
|
97 | + $tableau[5][2] = 1; |
|
98 | + $tableau[5][3] = 3; |
|
99 | + $tableau[5][4] = 5; |
|
100 | + $tableau[5][5] = 0; |
|
101 | + $tableau[5][6] = 9; |
|
102 | + $tableau[5][7] = 4; |
|
103 | + $tableau[5][8] = 6; |
|
104 | + $tableau[5][9] = 8; |
|
105 | + $tableau[5][10] = 5; |
|
106 | + |
|
107 | + $tableau[6][0] = 7; |
|
108 | + $tableau[6][1] = 1; |
|
109 | + $tableau[6][2] = 3; |
|
110 | + $tableau[6][3] = 5; |
|
111 | + $tableau[6][4] = 0; |
|
112 | + $tableau[6][5] = 9; |
|
113 | + $tableau[6][6] = 4; |
|
114 | + $tableau[6][7] = 6; |
|
115 | + $tableau[6][8] = 8; |
|
116 | + $tableau[6][9] = 2; |
|
117 | + $tableau[6][10] = 4; |
|
118 | + |
|
119 | + $tableau[7][0] = 1; |
|
120 | + $tableau[7][1] = 3; |
|
121 | + $tableau[7][2] = 5; |
|
122 | + $tableau[7][3] = 0; |
|
123 | + $tableau[7][4] = 9; |
|
124 | + $tableau[7][5] = 4; |
|
125 | + $tableau[7][6] = 6; |
|
126 | + $tableau[7][7] = 8; |
|
127 | + $tableau[7][8] = 2; |
|
128 | + $tableau[7][9] = 7; |
|
129 | + $tableau[7][10] = 3; |
|
130 | + |
|
131 | + $tableau[8][0] = 3; |
|
132 | + $tableau[8][1] = 5; |
|
133 | + $tableau[8][2] = 0; |
|
134 | + $tableau[8][3] = 9; |
|
135 | + $tableau[8][4] = 4; |
|
136 | + $tableau[8][5] = 6; |
|
137 | + $tableau[8][6] = 8; |
|
138 | + $tableau[8][7] = 2; |
|
139 | + $tableau[8][8] = 7; |
|
140 | + $tableau[8][9] = 1; |
|
141 | + $tableau[8][10] = 2; |
|
142 | + |
|
143 | + $tableau[9][0] = 5; |
|
144 | + $tableau[9][1] = 0; |
|
145 | + $tableau[9][2] = 9; |
|
146 | + $tableau[9][3] = 4; |
|
147 | + $tableau[9][4] = 6; |
|
148 | + $tableau[9][5] = 8; |
|
149 | + $tableau[9][6] = 2; |
|
150 | + $tableau[9][7] = 7; |
|
151 | + $tableau[9][8] = 1; |
|
152 | + $tableau[9][9] = 3; |
|
153 | + $tableau[9][10] = 1; |
|
154 | 154 | |
155 | 155 | |
156 | 156 | // Clean data |
157 | - $bv=str_replace(' ','',$bvrb); |
|
157 | + $bv = str_replace(' ', '', $bvrb); |
|
158 | 158 | |
159 | 159 | // Make control |
160 | - $report=0; |
|
161 | - while (dol_strlen($bv)>1) |
|
160 | + $report = 0; |
|
161 | + while (dol_strlen($bv) > 1) |
|
162 | 162 | { |
163 | - $match=substr($bv,0,1); |
|
164 | - $report=$tableau[$report][$match]; |
|
165 | - $bv=substr($bv,1); |
|
163 | + $match = substr($bv, 0, 1); |
|
164 | + $report = $tableau[$report][$match]; |
|
165 | + $bv = substr($bv, 1); |
|
166 | 166 | } |
167 | - $controle=$tableau[$report][10]; |
|
167 | + $controle = $tableau[$report][10]; |
|
168 | 168 | |
169 | - return ($controle==$bv); |
|
169 | + return ($controle == $bv); |
|
170 | 170 | } |
@@ -29,8 +29,8 @@ discard block |
||
29 | 29 | ); |
30 | 30 | if ($conf->global->MAIN_FEATURES_LEVEL >= 2) |
31 | 31 | { |
32 | - $supportedoauth2array['OAUTH_STRIPE_TEST_NAME']='stripetest'; |
|
33 | - $supportedoauth2array['OAUTH_STRIPE_LIVE_NAME']='stripelive'; |
|
32 | + $supportedoauth2array['OAUTH_STRIPE_TEST_NAME']='stripetest'; |
|
33 | + $supportedoauth2array['OAUTH_STRIPE_LIVE_NAME']='stripelive'; |
|
34 | 34 | } |
35 | 35 | $supportedoauth2array['OAUTH_GITHUB_NAME']='github'; |
36 | 36 | |
@@ -220,17 +220,17 @@ discard block |
||
220 | 220 | 'OAUTH_STRAVA_ID', |
221 | 221 | 'OAUTH_STRAVA_SECRET', |
222 | 222 | ), |
223 | - array( |
|
224 | - 'OAUTH_STRIPE_TEST_NAME', |
|
225 | - 'OAUTH_STRIPE_TEST_ID', |
|
226 | - 'STRIPE_TEST_SECRET_KEY', |
|
227 | - ), |
|
228 | - array( |
|
229 | - 'OAUTH_STRIPE_LIVE_NAME', |
|
230 | - 'OAUTH_STRIPE_LIVE_ID', |
|
231 | - 'STRIPE_LIVE_SECRET_KEY', |
|
232 | - ), |
|
233 | - array( |
|
223 | + array( |
|
224 | + 'OAUTH_STRIPE_TEST_NAME', |
|
225 | + 'OAUTH_STRIPE_TEST_ID', |
|
226 | + 'STRIPE_TEST_SECRET_KEY', |
|
227 | + ), |
|
228 | + array( |
|
229 | + 'OAUTH_STRIPE_LIVE_NAME', |
|
230 | + 'OAUTH_STRIPE_LIVE_ID', |
|
231 | + 'STRIPE_LIVE_SECRET_KEY', |
|
232 | + ), |
|
233 | + array( |
|
234 | 234 | 'OAUTH_TUMBLR_NAME', |
235 | 235 | 'OAUTH_TUMBLR_ID', |
236 | 236 | 'OAUTH_TUMBLR_SECRET', |
@@ -24,20 +24,20 @@ |
||
24 | 24 | |
25 | 25 | |
26 | 26 | // Supported OAUTH (a provider is supported when a file xxx_oauthcallback.php is available into htdocs/core/modules/oauth) |
27 | -$supportedoauth2array=array( |
|
27 | +$supportedoauth2array = array( |
|
28 | 28 | 'OAUTH_GOOGLE_NAME'=>'google', |
29 | 29 | ); |
30 | 30 | if ($conf->global->MAIN_FEATURES_LEVEL >= 2) |
31 | 31 | { |
32 | - $supportedoauth2array['OAUTH_STRIPE_TEST_NAME']='stripetest'; |
|
33 | - $supportedoauth2array['OAUTH_STRIPE_LIVE_NAME']='stripelive'; |
|
32 | + $supportedoauth2array['OAUTH_STRIPE_TEST_NAME'] = 'stripetest'; |
|
33 | + $supportedoauth2array['OAUTH_STRIPE_LIVE_NAME'] = 'stripelive'; |
|
34 | 34 | } |
35 | -$supportedoauth2array['OAUTH_GITHUB_NAME']='github'; |
|
35 | +$supportedoauth2array['OAUTH_GITHUB_NAME'] = 'github'; |
|
36 | 36 | |
37 | 37 | |
38 | 38 | |
39 | 39 | // API access parameters OAUTH |
40 | -$list = array ( |
|
40 | +$list = array( |
|
41 | 41 | array( |
42 | 42 | 'OAUTH_AMAZON_NAME', |
43 | 43 | 'OAUTH_AMAZON_ID', |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | */ |
30 | 30 | function holiday_prepare_head($object) |
31 | 31 | { |
32 | - global $db, $langs, $conf, $user; |
|
32 | + global $db, $langs, $conf, $user; |
|
33 | 33 | |
34 | - $h = 0; |
|
35 | - $head = array(); |
|
34 | + $h = 0; |
|
35 | + $head = array(); |
|
36 | 36 | |
37 | 37 | $head[$h][0] = DOL_URL_ROOT.'/holiday/card.php?id='.$object->id; |
38 | 38 | $head[$h][1] = $langs->trans("Card"); |
@@ -57,23 +57,23 @@ discard block |
||
57 | 57 | // $this->tabs = array('entity:-tabname); to remove a tab |
58 | 58 | complete_head_from_modules($conf,$langs,$object,$head,$h,'holiday'); |
59 | 59 | |
60 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'holiday','remove'); |
|
60 | + complete_head_from_modules($conf,$langs,$object,$head,$h,'holiday','remove'); |
|
61 | 61 | |
62 | - return $head; |
|
62 | + return $head; |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | |
66 | 66 | /** |
67 | 67 | * Return array head with list of tabs to view object informations |
68 | 68 | * |
69 | - * @return array head |
|
69 | + * @return array head |
|
70 | 70 | */ |
71 | 71 | function holiday_admin_prepare_head() |
72 | 72 | { |
73 | - global $db, $langs, $conf, $user; |
|
73 | + global $db, $langs, $conf, $user; |
|
74 | 74 | |
75 | - $h = 0; |
|
76 | - $head = array(); |
|
75 | + $h = 0; |
|
76 | + $head = array(); |
|
77 | 77 | |
78 | 78 | $head[$h][0] = DOL_URL_ROOT.'/admin/holiday.php'; |
79 | 79 | $head[$h][1] = $langs->trans("Setup"); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | // $this->tabs = array('entity:-tabname); to remove a tab |
87 | 87 | complete_head_from_modules($conf,$langs,null,$head,$h,'holiday_admin'); |
88 | 88 | |
89 | - complete_head_from_modules($conf,$langs,null,$head,$h,'holiday_admin','remove'); |
|
89 | + complete_head_from_modules($conf,$langs,null,$head,$h,'holiday_admin','remove'); |
|
90 | 90 | |
91 | - return $head; |
|
91 | + return $head; |
|
92 | 92 | } |
@@ -43,11 +43,11 @@ discard block |
||
43 | 43 | require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
44 | 44 | require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php'; |
45 | 45 | $upload_dir = $conf->holiday->multidir_output[$object->entity].'/'.dol_sanitizeFileName($object->ref); |
46 | - $nbFiles = count(dol_dir_list($upload_dir,'files',0,'','(\.meta|_preview.*\.png)$')); |
|
47 | - $nbLinks=Link::count($db, $object->element, $object->id); |
|
46 | + $nbFiles = count(dol_dir_list($upload_dir, 'files', 0, '', '(\.meta|_preview.*\.png)$')); |
|
47 | + $nbLinks = Link::count($db, $object->element, $object->id); |
|
48 | 48 | $head[$h][0] = DOL_URL_ROOT.'/holiday/document.php?id='.$object->id; |
49 | 49 | $head[$h][1] = $langs->trans('Documents'); |
50 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
50 | + if (($nbFiles + $nbLinks) > 0) $head[$h][1] .= ' <span class="badge">'.($nbFiles + $nbLinks).'</span>'; |
|
51 | 51 | $head[$h][2] = 'documents'; |
52 | 52 | $h++; |
53 | 53 | |
@@ -55,9 +55,9 @@ discard block |
||
55 | 55 | // Entries must be declared in modules descriptor with line |
56 | 56 | // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
57 | 57 | // $this->tabs = array('entity:-tabname); to remove a tab |
58 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'holiday'); |
|
58 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'holiday'); |
|
59 | 59 | |
60 | - complete_head_from_modules($conf,$langs,$object,$head,$h,'holiday','remove'); |
|
60 | + complete_head_from_modules($conf, $langs, $object, $head, $h, 'holiday', 'remove'); |
|
61 | 61 | |
62 | 62 | return $head; |
63 | 63 | } |
@@ -84,9 +84,9 @@ discard block |
||
84 | 84 | // Entries must be declared in modules descriptor with line |
85 | 85 | // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab |
86 | 86 | // $this->tabs = array('entity:-tabname); to remove a tab |
87 | - complete_head_from_modules($conf,$langs,null,$head,$h,'holiday_admin'); |
|
87 | + complete_head_from_modules($conf, $langs, null, $head, $h, 'holiday_admin'); |
|
88 | 88 | |
89 | - complete_head_from_modules($conf,$langs,null,$head,$h,'holiday_admin','remove'); |
|
89 | + complete_head_from_modules($conf, $langs, null, $head, $h, 'holiday_admin', 'remove'); |
|
90 | 90 | |
91 | 91 | return $head; |
92 | 92 | } |
@@ -47,7 +47,9 @@ |
||
47 | 47 | $nbLinks=Link::count($db, $object->element, $object->id); |
48 | 48 | $head[$h][0] = DOL_URL_ROOT.'/holiday/document.php?id='.$object->id; |
49 | 49 | $head[$h][1] = $langs->trans('Documents'); |
50 | - if (($nbFiles+$nbLinks) > 0) $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
50 | + if (($nbFiles+$nbLinks) > 0) { |
|
51 | + $head[$h][1].= ' <span class="badge">'.($nbFiles+$nbLinks).'</span>'; |
|
52 | + } |
|
51 | 53 | $head[$h][2] = 'documents'; |
52 | 54 | $h++; |
53 | 55 |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $PROXY_USER=empty($conf->global->MAIN_PROXY_USER)?0:$conf->global->MAIN_PROXY_USER; |
42 | 42 | $PROXY_PASS=empty($conf->global->MAIN_PROXY_PASS)?0:$conf->global->MAIN_PROXY_PASS; |
43 | 43 | |
44 | - dol_syslog("getURLContent postorget=".$postorget." URL=".$url." param=".$param); |
|
44 | + dol_syslog("getURLContent postorget=".$postorget." URL=".$url." param=".$param); |
|
45 | 45 | |
46 | 46 | //setting the curl parameters. |
47 | 47 | $ch = curl_init(); |
@@ -52,17 +52,17 @@ discard block |
||
52 | 52 | exit;*/ |
53 | 53 | curl_setopt($ch, CURLOPT_URL, $url); |
54 | 54 | curl_setopt($ch, CURLOPT_VERBOSE, 1); |
55 | - curl_setopt($ch, CURLOPT_USERAGENT, 'Dolibarr geturl function'); |
|
55 | + curl_setopt($ch, CURLOPT_USERAGENT, 'Dolibarr geturl function'); |
|
56 | 56 | |
57 | - @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, ($followlocation?true:false)); // We use @ here because this may return warning if safe mode is on or open_basedir is on |
|
57 | + @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, ($followlocation?true:false)); // We use @ here because this may return warning if safe mode is on or open_basedir is on |
|
58 | 58 | |
59 | - if (count($addheaders)) curl_setopt($ch, CURLOPT_HTTPHEADER, $addheaders); |
|
60 | - curl_setopt($ch, CURLINFO_HEADER_OUT, true); // To be able to retrieve request header and log it |
|
59 | + if (count($addheaders)) curl_setopt($ch, CURLOPT_HTTPHEADER, $addheaders); |
|
60 | + curl_setopt($ch, CURLINFO_HEADER_OUT, true); // To be able to retrieve request header and log it |
|
61 | 61 | |
62 | - // By default use tls decied by PHP. |
|
63 | - // You can force, if supported a version like TLSv1 or TLSv1.2 |
|
64 | - if (! empty($conf->global->MAIN_CURL_SSLVERSION)) curl_setopt($ch, CURLOPT_SSLVERSION, $conf->global->MAIN_CURL_SSLVERSION); |
|
65 | - //curl_setopt($ch, CURLOPT_SSLVERSION, 6); for tls 1.2 |
|
62 | + // By default use tls decied by PHP. |
|
63 | + // You can force, if supported a version like TLSv1 or TLSv1.2 |
|
64 | + if (! empty($conf->global->MAIN_CURL_SSLVERSION)) curl_setopt($ch, CURLOPT_SSLVERSION, $conf->global->MAIN_CURL_SSLVERSION); |
|
65 | + //curl_setopt($ch, CURLOPT_SSLVERSION, 6); for tls 1.2 |
|
66 | 66 | |
67 | 67 | //turning off the server and peer verification(TrustManager Concept). |
68 | 68 | curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); |
@@ -75,37 +75,37 @@ discard block |
||
75 | 75 | curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // We want response |
76 | 76 | if ($postorget == 'POST') |
77 | 77 | { |
78 | - curl_setopt($ch, CURLOPT_POST, 1); // POST |
|
79 | - curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // Setting param x=a&y=z as POST fields |
|
78 | + curl_setopt($ch, CURLOPT_POST, 1); // POST |
|
79 | + curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // Setting param x=a&y=z as POST fields |
|
80 | 80 | } |
81 | 81 | else if ($postorget == 'PUT') |
82 | 82 | { |
83 | - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
|
84 | - if (! is_array($param)) parse_str($param, $array_param); |
|
85 | - else |
|
86 | - { |
|
87 | - dol_syslog("parameter param must be a string", LOG_WARNING); |
|
88 | - $array_param=$param; |
|
89 | - } |
|
90 | - curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($array_param)); // Setting param x=a&y=z as PUT fields |
|
83 | + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
|
84 | + if (! is_array($param)) parse_str($param, $array_param); |
|
85 | + else |
|
86 | + { |
|
87 | + dol_syslog("parameter param must be a string", LOG_WARNING); |
|
88 | + $array_param=$param; |
|
89 | + } |
|
90 | + curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($array_param)); // Setting param x=a&y=z as PUT fields |
|
91 | 91 | } |
92 | 92 | else if ($postorget == 'PUTALREADYFORMATED') |
93 | 93 | { |
94 | - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
|
95 | - curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // param = content of post, like a xml string |
|
94 | + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
|
95 | + curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // param = content of post, like a xml string |
|
96 | 96 | } |
97 | 97 | else if ($postorget == 'HEAD') |
98 | 98 | { |
99 | - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'HEAD'); // HTTP request is 'HEAD' |
|
100 | - curl_setopt($ch, CURLOPT_NOBODY, true); |
|
99 | + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'HEAD'); // HTTP request is 'HEAD' |
|
100 | + curl_setopt($ch, CURLOPT_NOBODY, true); |
|
101 | 101 | } |
102 | 102 | else if ($postorget == 'DELETE') |
103 | 103 | { |
104 | - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE'); // POST |
|
104 | + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE'); // POST |
|
105 | 105 | } |
106 | 106 | else |
107 | 107 | { |
108 | - curl_setopt($ch, CURLOPT_POST, 0); // GET |
|
108 | + curl_setopt($ch, CURLOPT_POST, 0); // GET |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | //if USE_PROXY constant set at begin of this method. |
@@ -133,27 +133,27 @@ discard block |
||
133 | 133 | $rep['content']=$response; |
134 | 134 | |
135 | 135 | // moving to display page to display curl errors |
136 | - $rep['curl_error_no']=curl_errno($ch); |
|
136 | + $rep['curl_error_no']=curl_errno($ch); |
|
137 | 137 | $rep['curl_error_msg']=curl_error($ch); |
138 | 138 | |
139 | - dol_syslog("getURLContent response array is ".join(',',$rep)); |
|
139 | + dol_syslog("getURLContent response array is ".join(',',$rep)); |
|
140 | 140 | } |
141 | 141 | else |
142 | 142 | { |
143 | - $info = curl_getinfo($ch); |
|
143 | + $info = curl_getinfo($ch); |
|
144 | 144 | |
145 | - // Ad keys to $rep |
|
146 | - $rep = $info; |
|
147 | - //$rep['header_size']=$info['header_size']; |
|
148 | - //$rep['http_code']=$info['http_code']; |
|
149 | - dol_syslog("getURLContent http_code=".$rep['http_code']); |
|
145 | + // Ad keys to $rep |
|
146 | + $rep = $info; |
|
147 | + //$rep['header_size']=$info['header_size']; |
|
148 | + //$rep['http_code']=$info['http_code']; |
|
149 | + dol_syslog("getURLContent http_code=".$rep['http_code']); |
|
150 | 150 | |
151 | 151 | // Add more keys to $rep |
152 | 152 | $rep['content']=$response; |
153 | - $rep['curl_error_no']=''; |
|
154 | - $rep['curl_error_msg']=''; |
|
153 | + $rep['curl_error_no']=''; |
|
154 | + $rep['curl_error_msg']=''; |
|
155 | 155 | |
156 | - //closing the curl |
|
156 | + //closing the curl |
|
157 | 157 | curl_close($ch); |
158 | 158 | } |
159 | 159 | |
@@ -170,12 +170,12 @@ discard block |
||
170 | 170 | */ |
171 | 171 | function getDomainFromURL($url) |
172 | 172 | { |
173 | - $tmpdomain = preg_replace('/^https?:\/\//i', '', $url); // Remove http(s):// |
|
174 | - $tmpdomain = preg_replace('/\/.*$/i', '', $tmpdomain); // Remove part after domain |
|
175 | - $tmpdomain = preg_replace('/\.[^\.]+$/', '', $tmpdomain); // Remove first level domain (.com, .net, ...) |
|
176 | - $tmpdomain = preg_replace('/^[^\.]+\./', '', $tmpdomain); // Remove part www. before domain name |
|
173 | + $tmpdomain = preg_replace('/^https?:\/\//i', '', $url); // Remove http(s):// |
|
174 | + $tmpdomain = preg_replace('/\/.*$/i', '', $tmpdomain); // Remove part after domain |
|
175 | + $tmpdomain = preg_replace('/\.[^\.]+$/', '', $tmpdomain); // Remove first level domain (.com, .net, ...) |
|
176 | + $tmpdomain = preg_replace('/^[^\.]+\./', '', $tmpdomain); // Remove part www. before domain name |
|
177 | 177 | |
178 | - return $tmpdomain; |
|
178 | + return $tmpdomain; |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
@@ -188,13 +188,13 @@ discard block |
||
188 | 188 | */ |
189 | 189 | function getRootURLFromURL($url) |
190 | 190 | { |
191 | - $prefix=''; |
|
192 | - $tmpurl = $url; |
|
193 | - if (preg_match('/^(https?:\/\/)/i', $tmpurl, $reg)) $prefix = $reg[1]; |
|
194 | - $tmpurl = preg_replace('/^https?:\/\//i', '', $tmpurl); // Remove http(s):// |
|
195 | - $tmpurl = preg_replace('/\/.*$/i', '', $tmpurl); // Remove part after domain |
|
191 | + $prefix=''; |
|
192 | + $tmpurl = $url; |
|
193 | + if (preg_match('/^(https?:\/\/)/i', $tmpurl, $reg)) $prefix = $reg[1]; |
|
194 | + $tmpurl = preg_replace('/^https?:\/\//i', '', $tmpurl); // Remove http(s):// |
|
195 | + $tmpurl = preg_replace('/\/.*$/i', '', $tmpurl); // Remove part after domain |
|
196 | 196 | |
197 | - return $prefix.$tmpurl; |
|
197 | + return $prefix.$tmpurl; |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | /** |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | */ |
206 | 206 | function removeHtmlComment($content) |
207 | 207 | { |
208 | - $content = preg_replace('/<!--[^\-]+-->/', '', $content); |
|
209 | - return $content; |
|
208 | + $content = preg_replace('/<!--[^\-]+-->/', '', $content); |
|
209 | + return $content; |
|
210 | 210 | } |
211 | 211 |
@@ -31,15 +31,15 @@ discard block |
||
31 | 31 | * @param string[] $addheaders Array of string to add into header. Example: ('Accept: application/xrds+xml', ....) |
32 | 32 | * @return array Returns an associative array containing the response from the server array('content'=>response,'curl_error_no'=>errno,'curl_error_msg'=>errmsg...) |
33 | 33 | */ |
34 | -function getURLContent($url,$postorget='GET',$param='',$followlocation=1,$addheaders=array()) |
|
34 | +function getURLContent($url, $postorget = 'GET', $param = '', $followlocation = 1, $addheaders = array()) |
|
35 | 35 | { |
36 | 36 | //declaring of global variables |
37 | 37 | global $conf, $langs; |
38 | - $USE_PROXY=empty($conf->global->MAIN_PROXY_USE)?0:$conf->global->MAIN_PROXY_USE; |
|
39 | - $PROXY_HOST=empty($conf->global->MAIN_PROXY_HOST)?0:$conf->global->MAIN_PROXY_HOST; |
|
40 | - $PROXY_PORT=empty($conf->global->MAIN_PROXY_PORT)?0:$conf->global->MAIN_PROXY_PORT; |
|
41 | - $PROXY_USER=empty($conf->global->MAIN_PROXY_USER)?0:$conf->global->MAIN_PROXY_USER; |
|
42 | - $PROXY_PASS=empty($conf->global->MAIN_PROXY_PASS)?0:$conf->global->MAIN_PROXY_PASS; |
|
38 | + $USE_PROXY = empty($conf->global->MAIN_PROXY_USE) ? 0 : $conf->global->MAIN_PROXY_USE; |
|
39 | + $PROXY_HOST = empty($conf->global->MAIN_PROXY_HOST) ? 0 : $conf->global->MAIN_PROXY_HOST; |
|
40 | + $PROXY_PORT = empty($conf->global->MAIN_PROXY_PORT) ? 0 : $conf->global->MAIN_PROXY_PORT; |
|
41 | + $PROXY_USER = empty($conf->global->MAIN_PROXY_USER) ? 0 : $conf->global->MAIN_PROXY_USER; |
|
42 | + $PROXY_PASS = empty($conf->global->MAIN_PROXY_PASS) ? 0 : $conf->global->MAIN_PROXY_PASS; |
|
43 | 43 | |
44 | 44 | dol_syslog("getURLContent postorget=".$postorget." URL=".$url." param=".$param); |
45 | 45 | |
@@ -54,45 +54,45 @@ discard block |
||
54 | 54 | curl_setopt($ch, CURLOPT_VERBOSE, 1); |
55 | 55 | curl_setopt($ch, CURLOPT_USERAGENT, 'Dolibarr geturl function'); |
56 | 56 | |
57 | - @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, ($followlocation?true:false)); // We use @ here because this may return warning if safe mode is on or open_basedir is on |
|
57 | + @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, ($followlocation ?true:false)); // We use @ here because this may return warning if safe mode is on or open_basedir is on |
|
58 | 58 | |
59 | 59 | if (count($addheaders)) curl_setopt($ch, CURLOPT_HTTPHEADER, $addheaders); |
60 | - curl_setopt($ch, CURLINFO_HEADER_OUT, true); // To be able to retrieve request header and log it |
|
60 | + curl_setopt($ch, CURLINFO_HEADER_OUT, true); // To be able to retrieve request header and log it |
|
61 | 61 | |
62 | 62 | // By default use tls decied by PHP. |
63 | 63 | // You can force, if supported a version like TLSv1 or TLSv1.2 |
64 | - if (! empty($conf->global->MAIN_CURL_SSLVERSION)) curl_setopt($ch, CURLOPT_SSLVERSION, $conf->global->MAIN_CURL_SSLVERSION); |
|
64 | + if (!empty($conf->global->MAIN_CURL_SSLVERSION)) curl_setopt($ch, CURLOPT_SSLVERSION, $conf->global->MAIN_CURL_SSLVERSION); |
|
65 | 65 | //curl_setopt($ch, CURLOPT_SSLVERSION, 6); for tls 1.2 |
66 | 66 | |
67 | 67 | //turning off the server and peer verification(TrustManager Concept). |
68 | 68 | curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); |
69 | 69 | curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); |
70 | 70 | |
71 | - curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, empty($conf->global->MAIN_USE_CONNECT_TIMEOUT)?5:$conf->global->MAIN_USE_CONNECT_TIMEOUT); |
|
72 | - curl_setopt($ch, CURLOPT_TIMEOUT, empty($conf->global->MAIN_USE_RESPONSE_TIMEOUT)?30:$conf->global->MAIN_USE_RESPONSE_TIMEOUT); |
|
71 | + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, empty($conf->global->MAIN_USE_CONNECT_TIMEOUT) ? 5 : $conf->global->MAIN_USE_CONNECT_TIMEOUT); |
|
72 | + curl_setopt($ch, CURLOPT_TIMEOUT, empty($conf->global->MAIN_USE_RESPONSE_TIMEOUT) ? 30 : $conf->global->MAIN_USE_RESPONSE_TIMEOUT); |
|
73 | 73 | |
74 | 74 | //curl_setopt($ch, CURLOPT_SAFE_UPLOAD, true); // PHP 5.5 |
75 | - curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // We want response |
|
75 | + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // We want response |
|
76 | 76 | if ($postorget == 'POST') |
77 | 77 | { |
78 | - curl_setopt($ch, CURLOPT_POST, 1); // POST |
|
79 | - curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // Setting param x=a&y=z as POST fields |
|
78 | + curl_setopt($ch, CURLOPT_POST, 1); // POST |
|
79 | + curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // Setting param x=a&y=z as POST fields |
|
80 | 80 | } |
81 | 81 | else if ($postorget == 'PUT') |
82 | 82 | { |
83 | 83 | curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
84 | - if (! is_array($param)) parse_str($param, $array_param); |
|
84 | + if (!is_array($param)) parse_str($param, $array_param); |
|
85 | 85 | else |
86 | 86 | { |
87 | 87 | dol_syslog("parameter param must be a string", LOG_WARNING); |
88 | - $array_param=$param; |
|
88 | + $array_param = $param; |
|
89 | 89 | } |
90 | - curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($array_param)); // Setting param x=a&y=z as PUT fields |
|
90 | + curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($array_param)); // Setting param x=a&y=z as PUT fields |
|
91 | 91 | } |
92 | 92 | else if ($postorget == 'PUTALREADYFORMATED') |
93 | 93 | { |
94 | 94 | curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
95 | - curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // param = content of post, like a xml string |
|
95 | + curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // param = content of post, like a xml string |
|
96 | 96 | } |
97 | 97 | else if ($postorget == 'HEAD') |
98 | 98 | { |
@@ -101,42 +101,42 @@ discard block |
||
101 | 101 | } |
102 | 102 | else if ($postorget == 'DELETE') |
103 | 103 | { |
104 | - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE'); // POST |
|
104 | + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE'); // POST |
|
105 | 105 | } |
106 | 106 | else |
107 | 107 | { |
108 | - curl_setopt($ch, CURLOPT_POST, 0); // GET |
|
108 | + curl_setopt($ch, CURLOPT_POST, 0); // GET |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | //if USE_PROXY constant set at begin of this method. |
112 | 112 | if ($USE_PROXY) |
113 | 113 | { |
114 | - dol_syslog("getURLContent set proxy to ".$PROXY_HOST. ":" . $PROXY_PORT." - ".$PROXY_USER. ":" . $PROXY_PASS); |
|
114 | + dol_syslog("getURLContent set proxy to ".$PROXY_HOST.":".$PROXY_PORT." - ".$PROXY_USER.":".$PROXY_PASS); |
|
115 | 115 | //curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); // Curl 7.10 |
116 | - curl_setopt($ch, CURLOPT_PROXY, $PROXY_HOST. ":" . $PROXY_PORT); |
|
117 | - if ($PROXY_USER) curl_setopt($ch, CURLOPT_PROXYUSERPWD, $PROXY_USER. ":" . $PROXY_PASS); |
|
116 | + curl_setopt($ch, CURLOPT_PROXY, $PROXY_HOST.":".$PROXY_PORT); |
|
117 | + if ($PROXY_USER) curl_setopt($ch, CURLOPT_PROXYUSERPWD, $PROXY_USER.":".$PROXY_PASS); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | //getting response from server |
121 | 121 | $response = curl_exec($ch); |
122 | 122 | |
123 | - $request = curl_getinfo($ch, CURLINFO_HEADER_OUT); // Reading of request must be done after sending request |
|
123 | + $request = curl_getinfo($ch, CURLINFO_HEADER_OUT); // Reading of request must be done after sending request |
|
124 | 124 | |
125 | 125 | dol_syslog("getURLContent request=".$request); |
126 | 126 | //dol_syslog("getURLContent response =".response); // This may contains binary data, so we dont output it |
127 | - dol_syslog("getURLContent response size=".strlen($response)); // This may contains binary data, so we dont output it |
|
127 | + dol_syslog("getURLContent response size=".strlen($response)); // This may contains binary data, so we dont output it |
|
128 | 128 | |
129 | - $rep=array(); |
|
129 | + $rep = array(); |
|
130 | 130 | if (curl_errno($ch)) |
131 | 131 | { |
132 | 132 | // Ad keys to $rep |
133 | - $rep['content']=$response; |
|
133 | + $rep['content'] = $response; |
|
134 | 134 | |
135 | 135 | // moving to display page to display curl errors |
136 | - $rep['curl_error_no']=curl_errno($ch); |
|
137 | - $rep['curl_error_msg']=curl_error($ch); |
|
136 | + $rep['curl_error_no'] = curl_errno($ch); |
|
137 | + $rep['curl_error_msg'] = curl_error($ch); |
|
138 | 138 | |
139 | - dol_syslog("getURLContent response array is ".join(',',$rep)); |
|
139 | + dol_syslog("getURLContent response array is ".join(',', $rep)); |
|
140 | 140 | } |
141 | 141 | else |
142 | 142 | { |
@@ -149,9 +149,9 @@ discard block |
||
149 | 149 | dol_syslog("getURLContent http_code=".$rep['http_code']); |
150 | 150 | |
151 | 151 | // Add more keys to $rep |
152 | - $rep['content']=$response; |
|
153 | - $rep['curl_error_no']=''; |
|
154 | - $rep['curl_error_msg']=''; |
|
152 | + $rep['content'] = $response; |
|
153 | + $rep['curl_error_no'] = ''; |
|
154 | + $rep['curl_error_msg'] = ''; |
|
155 | 155 | |
156 | 156 | //closing the curl |
157 | 157 | curl_close($ch); |
@@ -170,10 +170,10 @@ discard block |
||
170 | 170 | */ |
171 | 171 | function getDomainFromURL($url) |
172 | 172 | { |
173 | - $tmpdomain = preg_replace('/^https?:\/\//i', '', $url); // Remove http(s):// |
|
174 | - $tmpdomain = preg_replace('/\/.*$/i', '', $tmpdomain); // Remove part after domain |
|
175 | - $tmpdomain = preg_replace('/\.[^\.]+$/', '', $tmpdomain); // Remove first level domain (.com, .net, ...) |
|
176 | - $tmpdomain = preg_replace('/^[^\.]+\./', '', $tmpdomain); // Remove part www. before domain name |
|
173 | + $tmpdomain = preg_replace('/^https?:\/\//i', '', $url); // Remove http(s):// |
|
174 | + $tmpdomain = preg_replace('/\/.*$/i', '', $tmpdomain); // Remove part after domain |
|
175 | + $tmpdomain = preg_replace('/\.[^\.]+$/', '', $tmpdomain); // Remove first level domain (.com, .net, ...) |
|
176 | + $tmpdomain = preg_replace('/^[^\.]+\./', '', $tmpdomain); // Remove part www. before domain name |
|
177 | 177 | |
178 | 178 | return $tmpdomain; |
179 | 179 | } |
@@ -188,11 +188,11 @@ discard block |
||
188 | 188 | */ |
189 | 189 | function getRootURLFromURL($url) |
190 | 190 | { |
191 | - $prefix=''; |
|
191 | + $prefix = ''; |
|
192 | 192 | $tmpurl = $url; |
193 | 193 | if (preg_match('/^(https?:\/\/)/i', $tmpurl, $reg)) $prefix = $reg[1]; |
194 | - $tmpurl = preg_replace('/^https?:\/\//i', '', $tmpurl); // Remove http(s):// |
|
195 | - $tmpurl = preg_replace('/\/.*$/i', '', $tmpurl); // Remove part after domain |
|
194 | + $tmpurl = preg_replace('/^https?:\/\//i', '', $tmpurl); // Remove http(s):// |
|
195 | + $tmpurl = preg_replace('/\/.*$/i', '', $tmpurl); // Remove part after domain |
|
196 | 196 | |
197 | 197 | return $prefix.$tmpurl; |
198 | 198 | } |
@@ -56,12 +56,16 @@ discard block |
||
56 | 56 | |
57 | 57 | @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, ($followlocation?true:false)); // We use @ here because this may return warning if safe mode is on or open_basedir is on |
58 | 58 | |
59 | - if (count($addheaders)) curl_setopt($ch, CURLOPT_HTTPHEADER, $addheaders); |
|
59 | + if (count($addheaders)) { |
|
60 | + curl_setopt($ch, CURLOPT_HTTPHEADER, $addheaders); |
|
61 | + } |
|
60 | 62 | curl_setopt($ch, CURLINFO_HEADER_OUT, true); // To be able to retrieve request header and log it |
61 | 63 | |
62 | 64 | // By default use tls decied by PHP. |
63 | 65 | // You can force, if supported a version like TLSv1 or TLSv1.2 |
64 | - if (! empty($conf->global->MAIN_CURL_SSLVERSION)) curl_setopt($ch, CURLOPT_SSLVERSION, $conf->global->MAIN_CURL_SSLVERSION); |
|
66 | + if (! empty($conf->global->MAIN_CURL_SSLVERSION)) { |
|
67 | + curl_setopt($ch, CURLOPT_SSLVERSION, $conf->global->MAIN_CURL_SSLVERSION); |
|
68 | + } |
|
65 | 69 | //curl_setopt($ch, CURLOPT_SSLVERSION, 6); for tls 1.2 |
66 | 70 | |
67 | 71 | //turning off the server and peer verification(TrustManager Concept). |
@@ -77,33 +81,29 @@ discard block |
||
77 | 81 | { |
78 | 82 | curl_setopt($ch, CURLOPT_POST, 1); // POST |
79 | 83 | curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // Setting param x=a&y=z as POST fields |
80 | - } |
|
81 | - else if ($postorget == 'PUT') |
|
84 | + } else if ($postorget == 'PUT') |
|
82 | 85 | { |
83 | 86 | curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
84 | - if (! is_array($param)) parse_str($param, $array_param); |
|
85 | - else |
|
87 | + if (! is_array($param)) { |
|
88 | + parse_str($param, $array_param); |
|
89 | + } else |
|
86 | 90 | { |
87 | 91 | dol_syslog("parameter param must be a string", LOG_WARNING); |
88 | 92 | $array_param=$param; |
89 | 93 | } |
90 | 94 | curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($array_param)); // Setting param x=a&y=z as PUT fields |
91 | - } |
|
92 | - else if ($postorget == 'PUTALREADYFORMATED') |
|
95 | + } else if ($postorget == 'PUTALREADYFORMATED') |
|
93 | 96 | { |
94 | 97 | curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // HTTP request is 'PUT' |
95 | 98 | curl_setopt($ch, CURLOPT_POSTFIELDS, $param); // param = content of post, like a xml string |
96 | - } |
|
97 | - else if ($postorget == 'HEAD') |
|
99 | + } else if ($postorget == 'HEAD') |
|
98 | 100 | { |
99 | 101 | curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'HEAD'); // HTTP request is 'HEAD' |
100 | 102 | curl_setopt($ch, CURLOPT_NOBODY, true); |
101 | - } |
|
102 | - else if ($postorget == 'DELETE') |
|
103 | + } else if ($postorget == 'DELETE') |
|
103 | 104 | { |
104 | 105 | curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE'); // POST |
105 | - } |
|
106 | - else |
|
106 | + } else |
|
107 | 107 | { |
108 | 108 | curl_setopt($ch, CURLOPT_POST, 0); // GET |
109 | 109 | } |
@@ -114,7 +114,9 @@ discard block |
||
114 | 114 | dol_syslog("getURLContent set proxy to ".$PROXY_HOST. ":" . $PROXY_PORT." - ".$PROXY_USER. ":" . $PROXY_PASS); |
115 | 115 | //curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); // Curl 7.10 |
116 | 116 | curl_setopt($ch, CURLOPT_PROXY, $PROXY_HOST. ":" . $PROXY_PORT); |
117 | - if ($PROXY_USER) curl_setopt($ch, CURLOPT_PROXYUSERPWD, $PROXY_USER. ":" . $PROXY_PASS); |
|
117 | + if ($PROXY_USER) { |
|
118 | + curl_setopt($ch, CURLOPT_PROXYUSERPWD, $PROXY_USER. ":" . $PROXY_PASS); |
|
119 | + } |
|
118 | 120 | } |
119 | 121 | |
120 | 122 | //getting response from server |
@@ -137,8 +139,7 @@ discard block |
||
137 | 139 | $rep['curl_error_msg']=curl_error($ch); |
138 | 140 | |
139 | 141 | dol_syslog("getURLContent response array is ".join(',',$rep)); |
140 | - } |
|
141 | - else |
|
142 | + } else |
|
142 | 143 | { |
143 | 144 | $info = curl_getinfo($ch); |
144 | 145 | |
@@ -190,7 +191,9 @@ discard block |
||
190 | 191 | { |
191 | 192 | $prefix=''; |
192 | 193 | $tmpurl = $url; |
193 | - if (preg_match('/^(https?:\/\/)/i', $tmpurl, $reg)) $prefix = $reg[1]; |
|
194 | + if (preg_match('/^(https?:\/\/)/i', $tmpurl, $reg)) { |
|
195 | + $prefix = $reg[1]; |
|
196 | + } |
|
194 | 197 | $tmpurl = preg_replace('/^https?:\/\//i', '', $tmpurl); // Remove http(s):// |
195 | 198 | $tmpurl = preg_replace('/\/.*$/i', '', $tmpurl); // Remove part after domain |
196 | 199 |
@@ -46,37 +46,37 @@ discard block |
||
46 | 46 | |
47 | 47 | if (! empty($addfieldentry['arrayofkeyval']) && ! is_array($addfieldentry['arrayofkeyval'])) |
48 | 48 | { |
49 | - dol_print_error('', 'Bad parameter addfieldentry with a property arrayofkeyval defined but that is not an array.'); |
|
50 | - return -1; |
|
49 | + dol_print_error('', 'Bad parameter addfieldentry with a property arrayofkeyval defined but that is not an array.'); |
|
50 | + return -1; |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | // Check parameters |
54 | 54 | if (count($addfieldentry) > 0) |
55 | 55 | { |
56 | 56 | if (empty($addfieldentry['name'])) |
57 | - { |
|
58 | - setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Name")), null, 'errors'); |
|
59 | - return -2; |
|
60 | - } |
|
57 | + { |
|
58 | + setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Name")), null, 'errors'); |
|
59 | + return -2; |
|
60 | + } |
|
61 | 61 | if (empty($addfieldentry['label'])) |
62 | - { |
|
63 | - setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Label")), null, 'errors'); |
|
64 | - return -2; |
|
65 | - } |
|
62 | + { |
|
63 | + setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Label")), null, 'errors'); |
|
64 | + return -2; |
|
65 | + } |
|
66 | 66 | |
67 | - if (! preg_match('/^(price|boolean|sellist|integer|date|timestamp|varchar|double|text|html)/', $addfieldentry['type'])) |
|
67 | + if (! preg_match('/^(price|boolean|sellist|integer|date|timestamp|varchar|double|text|html)/', $addfieldentry['type'])) |
|
68 | 68 | |
69 | - { |
|
70 | - setEventMessages($langs->trans('BadFormatForType', $objectname), null, 'errors'); |
|
71 | - return -2; |
|
72 | - } |
|
69 | + { |
|
70 | + setEventMessages($langs->trans('BadFormatForType', $objectname), null, 'errors'); |
|
71 | + return -2; |
|
72 | + } |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | $pathoffiletoeditsrc=$readdir.'/class/'.strtolower($objectname).'.class.php'; |
76 | 76 | $pathoffiletoedittarget=$destdir.'/class/'.strtolower($objectname).'.class.php'.($readdir != $destdir ? '.new' : ''); |
77 | 77 | if (! dol_is_file($pathoffiletoeditsrc)) |
78 | 78 | { |
79 | - $langs->load("errors"); |
|
79 | + $langs->load("errors"); |
|
80 | 80 | setEventMessages($langs->trans("ErrorFileNotFound", $pathoffiletoeditsrc), null, 'errors'); |
81 | 81 | return -3; |
82 | 82 | } |
@@ -96,21 +96,21 @@ discard block |
||
96 | 96 | // Edit class files |
97 | 97 | $contentclass = file_get_contents(dol_osencode($pathoffiletoeditsrc), 'r'); |
98 | 98 | |
99 | - // Update ->fields (add or remove entries) |
|
99 | + // Update ->fields (add or remove entries) |
|
100 | 100 | if (count($object->fields)) |
101 | 101 | { |
102 | - if (is_array($addfieldentry) && count($addfieldentry)) |
|
103 | - { |
|
104 | - $name=$addfieldentry['name']; |
|
105 | - unset($addfieldentry['name']); |
|
106 | - |
|
107 | - $object->fields[$name]=$addfieldentry; |
|
108 | - } |
|
109 | - if (! empty($delfieldentry)) |
|
110 | - { |
|
111 | - $name=$delfieldentry; |
|
112 | - unset($object->fields[$name]); |
|
113 | - } |
|
102 | + if (is_array($addfieldentry) && count($addfieldentry)) |
|
103 | + { |
|
104 | + $name=$addfieldentry['name']; |
|
105 | + unset($addfieldentry['name']); |
|
106 | + |
|
107 | + $object->fields[$name]=$addfieldentry; |
|
108 | + } |
|
109 | + if (! empty($delfieldentry)) |
|
110 | + { |
|
111 | + $name=$delfieldentry; |
|
112 | + unset($object->fields[$name]); |
|
113 | + } |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | dol_sort_array($object->fields, 'position'); |
@@ -143,28 +143,28 @@ discard block |
||
143 | 143 | if ($val['showoncombobox']) $texttoinsert.= " 'showoncombobox'=>'".$val['showoncombobox']."',"; |
144 | 144 | if ($val['arrayofkeyval']) |
145 | 145 | { |
146 | - $texttoinsert.= " 'arrayofkeyval'=>array("; |
|
147 | - $i=0; |
|
148 | - foreach($val['arrayofkeyval'] as $key2 => $val2) |
|
149 | - { |
|
150 | - if ($i) $texttoinsert.=", "; |
|
151 | - $texttoinsert.="'".$key2."'=>'".$val2."'"; |
|
152 | - $i++; |
|
153 | - } |
|
154 | - $texttoinsert.= ")"; |
|
146 | + $texttoinsert.= " 'arrayofkeyval'=>array("; |
|
147 | + $i=0; |
|
148 | + foreach($val['arrayofkeyval'] as $key2 => $val2) |
|
149 | + { |
|
150 | + if ($i) $texttoinsert.=", "; |
|
151 | + $texttoinsert.="'".$key2."'=>'".$val2."'"; |
|
152 | + $i++; |
|
153 | + } |
|
154 | + $texttoinsert.= ")"; |
|
155 | 155 | } |
156 | 156 | $texttoinsert.= "),\n"; |
157 | 157 | } |
158 | 158 | } |
159 | 159 | |
160 | 160 | $texttoinsert.= "\t".');'."\n"; |
161 | - //print ($texttoinsert);exit; |
|
161 | + //print ($texttoinsert);exit; |
|
162 | 162 | |
163 | 163 | if (count($object->fields)) |
164 | 164 | { |
165 | - $typetotypephp=array('integer'=>'integer', 'varchar'=>'string'); |
|
165 | + $typetotypephp=array('integer'=>'integer', 'varchar'=>'string'); |
|
166 | 166 | |
167 | - foreach($object->fields as $key => $val) |
|
167 | + foreach($object->fields as $key => $val) |
|
168 | 168 | { |
169 | 169 | $i++; |
170 | 170 | //$typephp=$typetotypephp[$val['type']]; |
@@ -224,22 +224,22 @@ discard block |
||
224 | 224 | // Edit .sql file |
225 | 225 | $pathoffiletoeditsrc=$readdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.sql'; |
226 | 226 | $pathoffiletoedittarget=$destdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.sql'.($readdir != $destdir ? '.new' : ''); |
227 | - if (! dol_is_file($pathoffiletoeditsrc)) |
|
227 | + if (! dol_is_file($pathoffiletoeditsrc)) |
|
228 | 228 | { |
229 | - $langs->load("errors"); |
|
230 | - setEventMessages($langs->trans("ErrorFileNotFound", $pathoffiletoeditsrc), null, 'errors'); |
|
231 | - return -1; |
|
229 | + $langs->load("errors"); |
|
230 | + setEventMessages($langs->trans("ErrorFileNotFound", $pathoffiletoeditsrc), null, 'errors'); |
|
231 | + return -1; |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | // Load object from myobject.class.php |
235 | 235 | try |
236 | 236 | { |
237 | - if (! is_object($object)) |
|
238 | - { |
|
239 | - include_once $pathoffiletoclasssrc; |
|
240 | - if (class_exists($objectname)) $object=new $objectname($db); |
|
241 | - else return -1; |
|
242 | - } |
|
237 | + if (! is_object($object)) |
|
238 | + { |
|
239 | + include_once $pathoffiletoclasssrc; |
|
240 | + if (class_exists($objectname)) $object=new $objectname($db); |
|
241 | + else return -1; |
|
242 | + } |
|
243 | 243 | } |
244 | 244 | catch(Exception $e) |
245 | 245 | { |
@@ -270,12 +270,12 @@ discard block |
||
270 | 270 | if ($key == 'entity') $texttoinsert.= ' DEFAULT 1'; |
271 | 271 | else |
272 | 272 | { |
273 | - if ($val['default'] != '') |
|
274 | - { |
|
275 | - if (preg_match('/^null$/i', $val['default'])) $texttoinsert.= " DEFAULT NULL"; |
|
276 | - else if (preg_match('/varchar/', $type )) $texttoinsert.= " DEFAULT '".$db->escape($val['default'])."'"; |
|
277 | - else $texttoinsert.= (($val['default'] > 0)?' DEFAULT '.$val['default']:''); |
|
278 | - } |
|
273 | + if ($val['default'] != '') |
|
274 | + { |
|
275 | + if (preg_match('/^null$/i', $val['default'])) $texttoinsert.= " DEFAULT NULL"; |
|
276 | + else if (preg_match('/varchar/', $type )) $texttoinsert.= " DEFAULT '".$db->escape($val['default'])."'"; |
|
277 | + else $texttoinsert.= (($val['default'] > 0)?' DEFAULT '.$val['default']:''); |
|
278 | + } |
|
279 | 279 | } |
280 | 280 | $texttoinsert.= (($val['notnull'] > 0)?' NOT NULL':''); |
281 | 281 | if ($i < count($object->fields)) $texttoinsert.=", "; |
@@ -289,11 +289,11 @@ discard block |
||
289 | 289 | $result = file_put_contents($pathoffiletoedittarget, $contentsql); |
290 | 290 | if ($result) |
291 | 291 | { |
292 | - @chmod($pathoffiletoedittarget, octdec($newmask)); |
|
292 | + @chmod($pathoffiletoedittarget, octdec($newmask)); |
|
293 | 293 | } |
294 | 294 | else |
295 | 295 | { |
296 | - $error++; |
|
296 | + $error++; |
|
297 | 297 | } |
298 | 298 | |
299 | 299 | // Edit .key.sql file |
@@ -316,12 +316,12 @@ discard block |
||
316 | 316 | } |
317 | 317 | if (! empty($val['foreignkey'])) |
318 | 318 | { |
319 | - $tmp=explode('.',$val['foreignkey']); |
|
320 | - if (! empty($tmp[0]) && ! empty($tmp[1])) |
|
321 | - { |
|
322 | - $texttoinsert.= "ALTER TABLE llx_".strtolower($module).'_'.strtolower($objectname)." ADD CONSTRAINT llx_".strtolower($module).'_'.strtolower($objectname)."_".$key." FOREIGN KEY (".$key.") REFERENCES ".$tmp[0]."(".$tmp[1].");"; |
|
323 | - $texttoinsert.= "\n"; |
|
324 | - } |
|
319 | + $tmp=explode('.',$val['foreignkey']); |
|
320 | + if (! empty($tmp[0]) && ! empty($tmp[1])) |
|
321 | + { |
|
322 | + $texttoinsert.= "ALTER TABLE llx_".strtolower($module).'_'.strtolower($objectname)." ADD CONSTRAINT llx_".strtolower($module).'_'.strtolower($objectname)."_".$key." FOREIGN KEY (".$key.") REFERENCES ".$tmp[0]."(".$tmp[1].");"; |
|
323 | + $texttoinsert.= "\n"; |
|
324 | + } |
|
325 | 325 | } |
326 | 326 | } |
327 | 327 | } |
@@ -334,11 +334,11 @@ discard block |
||
334 | 334 | $result2 = file_put_contents($pathoffiletoedittarget, $contentsql); |
335 | 335 | if ($result) |
336 | 336 | { |
337 | - @chmod($pathoffiletoedittarget, octdec($newmask)); |
|
337 | + @chmod($pathoffiletoedittarget, octdec($newmask)); |
|
338 | 338 | } |
339 | 339 | else |
340 | 340 | { |
341 | - $error++; |
|
341 | + $error++; |
|
342 | 342 | } |
343 | 343 | |
344 | 344 | return $error ? -1 : 1; |
@@ -37,14 +37,14 @@ discard block |
||
37 | 37 | * @return int|object <=0 if KO, Object if OK |
38 | 38 | * @see rebuildObjectSql |
39 | 39 | */ |
40 | -function rebuildObjectClass($destdir, $module, $objectname, $newmask, $readdir='', $addfieldentry=array() ,$delfieldentry='') |
|
40 | +function rebuildObjectClass($destdir, $module, $objectname, $newmask, $readdir = '', $addfieldentry = array(), $delfieldentry = '') |
|
41 | 41 | { |
42 | 42 | global $db, $langs; |
43 | 43 | |
44 | 44 | if (empty($objectname)) return -1; |
45 | - if (empty($readdir)) $readdir=$destdir; |
|
45 | + if (empty($readdir)) $readdir = $destdir; |
|
46 | 46 | |
47 | - if (! empty($addfieldentry['arrayofkeyval']) && ! is_array($addfieldentry['arrayofkeyval'])) |
|
47 | + if (!empty($addfieldentry['arrayofkeyval']) && !is_array($addfieldentry['arrayofkeyval'])) |
|
48 | 48 | { |
49 | 49 | dol_print_error('', 'Bad parameter addfieldentry with a property arrayofkeyval defined but that is not an array.'); |
50 | 50 | return -1; |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | return -2; |
65 | 65 | } |
66 | 66 | |
67 | - if (! preg_match('/^(price|boolean|sellist|integer|date|timestamp|varchar|double|text|html)/', $addfieldentry['type'])) |
|
67 | + if (!preg_match('/^(price|boolean|sellist|integer|date|timestamp|varchar|double|text|html)/', $addfieldentry['type'])) |
|
68 | 68 | |
69 | 69 | { |
70 | 70 | setEventMessages($langs->trans('BadFormatForType', $objectname), null, 'errors'); |
@@ -72,9 +72,9 @@ discard block |
||
72 | 72 | } |
73 | 73 | } |
74 | 74 | |
75 | - $pathoffiletoeditsrc=$readdir.'/class/'.strtolower($objectname).'.class.php'; |
|
76 | - $pathoffiletoedittarget=$destdir.'/class/'.strtolower($objectname).'.class.php'.($readdir != $destdir ? '.new' : ''); |
|
77 | - if (! dol_is_file($pathoffiletoeditsrc)) |
|
75 | + $pathoffiletoeditsrc = $readdir.'/class/'.strtolower($objectname).'.class.php'; |
|
76 | + $pathoffiletoedittarget = $destdir.'/class/'.strtolower($objectname).'.class.php'.($readdir != $destdir ? '.new' : ''); |
|
77 | + if (!dol_is_file($pathoffiletoeditsrc)) |
|
78 | 78 | { |
79 | 79 | $langs->load("errors"); |
80 | 80 | setEventMessages($langs->trans("ErrorFileNotFound", $pathoffiletoeditsrc), null, 'errors'); |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | try |
88 | 88 | { |
89 | 89 | include_once $pathoffiletoeditsrc; |
90 | - if (class_exists($objectname)) $object=new $objectname($db); |
|
90 | + if (class_exists($objectname)) $object = new $objectname($db); |
|
91 | 91 | else return -4; |
92 | 92 | |
93 | 93 | // Backup old file |
@@ -101,83 +101,83 @@ discard block |
||
101 | 101 | { |
102 | 102 | if (is_array($addfieldentry) && count($addfieldentry)) |
103 | 103 | { |
104 | - $name=$addfieldentry['name']; |
|
104 | + $name = $addfieldentry['name']; |
|
105 | 105 | unset($addfieldentry['name']); |
106 | 106 | |
107 | - $object->fields[$name]=$addfieldentry; |
|
107 | + $object->fields[$name] = $addfieldentry; |
|
108 | 108 | } |
109 | - if (! empty($delfieldentry)) |
|
109 | + if (!empty($delfieldentry)) |
|
110 | 110 | { |
111 | - $name=$delfieldentry; |
|
111 | + $name = $delfieldentry; |
|
112 | 112 | unset($object->fields[$name]); |
113 | 113 | } |
114 | 114 | } |
115 | 115 | |
116 | 116 | dol_sort_array($object->fields, 'position'); |
117 | 117 | |
118 | - $i=0; |
|
118 | + $i = 0; |
|
119 | 119 | $texttoinsert = '// BEGIN MODULEBUILDER PROPERTIES'."\n"; |
120 | - $texttoinsert.= "\t".'/**'."\n"; |
|
121 | - $texttoinsert.= "\t".' * @var array Array with all fields and their property. Do not use it as a static var. It may be modified by constructor.'."\n"; |
|
122 | - $texttoinsert.= "\t".' */'."\n"; |
|
123 | - $texttoinsert.= "\t".'public $fields=array('."\n"; |
|
120 | + $texttoinsert .= "\t".'/**'."\n"; |
|
121 | + $texttoinsert .= "\t".' * @var array Array with all fields and their property. Do not use it as a static var. It may be modified by constructor.'."\n"; |
|
122 | + $texttoinsert .= "\t".' */'."\n"; |
|
123 | + $texttoinsert .= "\t".'public $fields=array('."\n"; |
|
124 | 124 | |
125 | 125 | if (count($object->fields)) |
126 | 126 | { |
127 | 127 | |
128 | - foreach($object->fields as $key => $val) |
|
128 | + foreach ($object->fields as $key => $val) |
|
129 | 129 | { |
130 | 130 | $i++; |
131 | - $texttoinsert.= "\t\t'".$key."' => array('type'=>'".$val['type']."', 'label'=>'".$val['label']."',"; |
|
132 | - $texttoinsert.= " 'enabled'=>".($val['enabled']!=''?$val['enabled']:1).","; |
|
133 | - $texttoinsert.= " 'visible'=>".($val['visible']!=''?$val['visible']:-1).","; |
|
134 | - $texttoinsert.= " 'position'=>".($val['position']!=''?$val['position']:50).","; |
|
135 | - $texttoinsert.= " 'notnull'=>".($val['notnull']!=''?$val['notnull']:-1).","; |
|
136 | - if ($val['default']) $texttoinsert.= " 'default'=>'".$val['default']."',"; |
|
137 | - if ($val['index']) $texttoinsert.= " 'index'=>".$val['index'].","; |
|
138 | - if ($val['searchall']) $texttoinsert.= " 'searchall'=>".$val['searchall'].","; |
|
139 | - if ($val['isameasure']) $texttoinsert.= " 'isameasure'=>'".$val['isameasure']."',"; |
|
140 | - if ($val['foreignkey']) $texttoinsert.= " 'foreignkey'=>'".$val['foreignkey']."',"; |
|
141 | - if ($val['help']) $texttoinsert.= " 'help'=>\"".preg_replace('/"/', '', $val['help'])."\","; |
|
142 | - if ($val['comment']) $texttoinsert.= " 'comment'=>\"".preg_replace('/"/', '', $val['comment'])."\","; |
|
143 | - if ($val['showoncombobox']) $texttoinsert.= " 'showoncombobox'=>'".$val['showoncombobox']."',"; |
|
131 | + $texttoinsert .= "\t\t'".$key."' => array('type'=>'".$val['type']."', 'label'=>'".$val['label']."',"; |
|
132 | + $texttoinsert .= " 'enabled'=>".($val['enabled'] != '' ? $val['enabled'] : 1).","; |
|
133 | + $texttoinsert .= " 'visible'=>".($val['visible'] != '' ? $val['visible'] : -1).","; |
|
134 | + $texttoinsert .= " 'position'=>".($val['position'] != '' ? $val['position'] : 50).","; |
|
135 | + $texttoinsert .= " 'notnull'=>".($val['notnull'] != '' ? $val['notnull'] : -1).","; |
|
136 | + if ($val['default']) $texttoinsert .= " 'default'=>'".$val['default']."',"; |
|
137 | + if ($val['index']) $texttoinsert .= " 'index'=>".$val['index'].","; |
|
138 | + if ($val['searchall']) $texttoinsert .= " 'searchall'=>".$val['searchall'].","; |
|
139 | + if ($val['isameasure']) $texttoinsert .= " 'isameasure'=>'".$val['isameasure']."',"; |
|
140 | + if ($val['foreignkey']) $texttoinsert .= " 'foreignkey'=>'".$val['foreignkey']."',"; |
|
141 | + if ($val['help']) $texttoinsert .= " 'help'=>\"".preg_replace('/"/', '', $val['help'])."\","; |
|
142 | + if ($val['comment']) $texttoinsert .= " 'comment'=>\"".preg_replace('/"/', '', $val['comment'])."\","; |
|
143 | + if ($val['showoncombobox']) $texttoinsert .= " 'showoncombobox'=>'".$val['showoncombobox']."',"; |
|
144 | 144 | if ($val['arrayofkeyval']) |
145 | 145 | { |
146 | - $texttoinsert.= " 'arrayofkeyval'=>array("; |
|
147 | - $i=0; |
|
148 | - foreach($val['arrayofkeyval'] as $key2 => $val2) |
|
146 | + $texttoinsert .= " 'arrayofkeyval'=>array("; |
|
147 | + $i = 0; |
|
148 | + foreach ($val['arrayofkeyval'] as $key2 => $val2) |
|
149 | 149 | { |
150 | - if ($i) $texttoinsert.=", "; |
|
151 | - $texttoinsert.="'".$key2."'=>'".$val2."'"; |
|
150 | + if ($i) $texttoinsert .= ", "; |
|
151 | + $texttoinsert .= "'".$key2."'=>'".$val2."'"; |
|
152 | 152 | $i++; |
153 | 153 | } |
154 | - $texttoinsert.= ")"; |
|
154 | + $texttoinsert .= ")"; |
|
155 | 155 | } |
156 | - $texttoinsert.= "),\n"; |
|
156 | + $texttoinsert .= "),\n"; |
|
157 | 157 | } |
158 | 158 | } |
159 | 159 | |
160 | - $texttoinsert.= "\t".');'."\n"; |
|
160 | + $texttoinsert .= "\t".');'."\n"; |
|
161 | 161 | //print ($texttoinsert);exit; |
162 | 162 | |
163 | 163 | if (count($object->fields)) |
164 | 164 | { |
165 | - $typetotypephp=array('integer'=>'integer', 'varchar'=>'string'); |
|
165 | + $typetotypephp = array('integer'=>'integer', 'varchar'=>'string'); |
|
166 | 166 | |
167 | - foreach($object->fields as $key => $val) |
|
167 | + foreach ($object->fields as $key => $val) |
|
168 | 168 | { |
169 | 169 | $i++; |
170 | 170 | //$typephp=$typetotypephp[$val['type']]; |
171 | - $texttoinsert.= "\t".'public $'.$key.";"; |
|
171 | + $texttoinsert .= "\t".'public $'.$key.";"; |
|
172 | 172 | //if ($key == 'rowid') $texttoinsert.= ' AUTO_INCREMENT PRIMARY KEY'; |
173 | 173 | //if ($key == 'entity') $texttoinsert.= ' DEFAULT 1'; |
174 | 174 | //$texttoinsert.= ($val['notnull']?' NOT NULL':''); |
175 | 175 | //if ($i < count($object->fields)) $texttoinsert.=";"; |
176 | - $texttoinsert.= "\n"; |
|
176 | + $texttoinsert .= "\n"; |
|
177 | 177 | } |
178 | 178 | } |
179 | 179 | |
180 | - $texttoinsert.= "\t".'// END MODULEBUILDER PROPERTIES'; |
|
180 | + $texttoinsert .= "\t".'// END MODULEBUILDER PROPERTIES'; |
|
181 | 181 | |
182 | 182 | //print($texttoinsert);exit; |
183 | 183 | |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | |
192 | 192 | return $object; |
193 | 193 | } |
194 | - catch(Exception $e) |
|
194 | + catch (Exception $e) |
|
195 | 195 | { |
196 | 196 | print $e->getMessage(); |
197 | 197 | return -5; |
@@ -210,21 +210,21 @@ discard block |
||
210 | 210 | * @return int <=0 if KO, >0 if OK |
211 | 211 | * @see rebuildObjectClass |
212 | 212 | */ |
213 | -function rebuildObjectSql($destdir, $module, $objectname, $newmask, $readdir='', $object=null) |
|
213 | +function rebuildObjectSql($destdir, $module, $objectname, $newmask, $readdir = '', $object = null) |
|
214 | 214 | { |
215 | 215 | global $db, $langs; |
216 | 216 | |
217 | 217 | $error = 0; |
218 | 218 | |
219 | 219 | if (empty($objectname)) return -1; |
220 | - if (empty($readdir)) $readdir=$destdir; |
|
220 | + if (empty($readdir)) $readdir = $destdir; |
|
221 | 221 | |
222 | - $pathoffiletoclasssrc=$readdir.'/class/'.strtolower($objectname).'.class.php'; |
|
222 | + $pathoffiletoclasssrc = $readdir.'/class/'.strtolower($objectname).'.class.php'; |
|
223 | 223 | |
224 | 224 | // Edit .sql file |
225 | - $pathoffiletoeditsrc=$readdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.sql'; |
|
226 | - $pathoffiletoedittarget=$destdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.sql'.($readdir != $destdir ? '.new' : ''); |
|
227 | - if (! dol_is_file($pathoffiletoeditsrc)) |
|
225 | + $pathoffiletoeditsrc = $readdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.sql'; |
|
226 | + $pathoffiletoedittarget = $destdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.sql'.($readdir != $destdir ? '.new' : ''); |
|
227 | + if (!dol_is_file($pathoffiletoeditsrc)) |
|
228 | 228 | { |
229 | 229 | $langs->load("errors"); |
230 | 230 | setEventMessages($langs->trans("ErrorFileNotFound", $pathoffiletoeditsrc), null, 'errors'); |
@@ -234,14 +234,14 @@ discard block |
||
234 | 234 | // Load object from myobject.class.php |
235 | 235 | try |
236 | 236 | { |
237 | - if (! is_object($object)) |
|
237 | + if (!is_object($object)) |
|
238 | 238 | { |
239 | 239 | include_once $pathoffiletoclasssrc; |
240 | - if (class_exists($objectname)) $object=new $objectname($db); |
|
240 | + if (class_exists($objectname)) $object = new $objectname($db); |
|
241 | 241 | else return -1; |
242 | 242 | } |
243 | 243 | } |
244 | - catch(Exception $e) |
|
244 | + catch (Exception $e) |
|
245 | 245 | { |
246 | 246 | print $e->getMessage(); |
247 | 247 | } |
@@ -251,38 +251,38 @@ discard block |
||
251 | 251 | |
252 | 252 | $contentsql = file_get_contents(dol_osencode($pathoffiletoeditsrc), 'r'); |
253 | 253 | |
254 | - $i=0; |
|
254 | + $i = 0; |
|
255 | 255 | $texttoinsert = '-- BEGIN MODULEBUILDER FIELDS'."\n"; |
256 | 256 | if (count($object->fields)) |
257 | 257 | { |
258 | - foreach($object->fields as $key => $val) |
|
258 | + foreach ($object->fields as $key => $val) |
|
259 | 259 | { |
260 | 260 | $i++; |
261 | 261 | |
262 | 262 | $type = $val['type']; |
263 | - $type = preg_replace('/:.*$/', '', $type); // For case type = 'integer:Societe:societe/class/societe.class.php' |
|
263 | + $type = preg_replace('/:.*$/', '', $type); // For case type = 'integer:Societe:societe/class/societe.class.php' |
|
264 | 264 | |
265 | - if ($type == 'html') $type = 'text'; // html modulebuilder type is a text type in database |
|
266 | - else if ($type == 'price') $type = 'double'; // html modulebuilder type is a text type in database |
|
265 | + if ($type == 'html') $type = 'text'; // html modulebuilder type is a text type in database |
|
266 | + else if ($type == 'price') $type = 'double'; // html modulebuilder type is a text type in database |
|
267 | 267 | else if ($type == 'link' || $type == 'sellist') $type = 'integer'; |
268 | - $texttoinsert.= "\t".$key." ".$type; |
|
269 | - if ($key == 'rowid') $texttoinsert.= ' AUTO_INCREMENT PRIMARY KEY'; |
|
270 | - if ($key == 'entity') $texttoinsert.= ' DEFAULT 1'; |
|
268 | + $texttoinsert .= "\t".$key." ".$type; |
|
269 | + if ($key == 'rowid') $texttoinsert .= ' AUTO_INCREMENT PRIMARY KEY'; |
|
270 | + if ($key == 'entity') $texttoinsert .= ' DEFAULT 1'; |
|
271 | 271 | else |
272 | 272 | { |
273 | 273 | if ($val['default'] != '') |
274 | 274 | { |
275 | - if (preg_match('/^null$/i', $val['default'])) $texttoinsert.= " DEFAULT NULL"; |
|
276 | - else if (preg_match('/varchar/', $type )) $texttoinsert.= " DEFAULT '".$db->escape($val['default'])."'"; |
|
277 | - else $texttoinsert.= (($val['default'] > 0)?' DEFAULT '.$val['default']:''); |
|
275 | + if (preg_match('/^null$/i', $val['default'])) $texttoinsert .= " DEFAULT NULL"; |
|
276 | + else if (preg_match('/varchar/', $type)) $texttoinsert .= " DEFAULT '".$db->escape($val['default'])."'"; |
|
277 | + else $texttoinsert .= (($val['default'] > 0) ? ' DEFAULT '.$val['default'] : ''); |
|
278 | 278 | } |
279 | 279 | } |
280 | - $texttoinsert.= (($val['notnull'] > 0)?' NOT NULL':''); |
|
281 | - if ($i < count($object->fields)) $texttoinsert.=", "; |
|
282 | - $texttoinsert.= "\n"; |
|
280 | + $texttoinsert .= (($val['notnull'] > 0) ? ' NOT NULL' : ''); |
|
281 | + if ($i < count($object->fields)) $texttoinsert .= ", "; |
|
282 | + $texttoinsert .= "\n"; |
|
283 | 283 | } |
284 | 284 | } |
285 | - $texttoinsert.= "\t".'-- END MODULEBUILDER FIELDS'; |
|
285 | + $texttoinsert .= "\t".'-- END MODULEBUILDER FIELDS'; |
|
286 | 286 | |
287 | 287 | $contentsql = preg_replace('/-- BEGIN MODULEBUILDER FIELDS.*END MODULEBUILDER FIELDS/ims', $texttoinsert, $contentsql); |
288 | 288 | |
@@ -297,35 +297,35 @@ discard block |
||
297 | 297 | } |
298 | 298 | |
299 | 299 | // Edit .key.sql file |
300 | - $pathoffiletoeditsrc=$destdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.key.sql'; |
|
301 | - $pathoffiletoedittarget=$destdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.key.sql'.($readdir != $destdir ? '.new' : ''); |
|
300 | + $pathoffiletoeditsrc = $destdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.key.sql'; |
|
301 | + $pathoffiletoedittarget = $destdir.'/sql/llx_'.strtolower($module).'_'.strtolower($objectname).'.key.sql'.($readdir != $destdir ? '.new' : ''); |
|
302 | 302 | |
303 | 303 | $contentsql = file_get_contents(dol_osencode($pathoffiletoeditsrc), 'r'); |
304 | 304 | |
305 | - $i=0; |
|
305 | + $i = 0; |
|
306 | 306 | $texttoinsert = '-- BEGIN MODULEBUILDER INDEXES'."\n"; |
307 | 307 | if (count($object->fields)) |
308 | 308 | { |
309 | - foreach($object->fields as $key => $val) |
|
309 | + foreach ($object->fields as $key => $val) |
|
310 | 310 | { |
311 | 311 | $i++; |
312 | - if (! empty($val['index'])) |
|
312 | + if (!empty($val['index'])) |
|
313 | 313 | { |
314 | - $texttoinsert.= "ALTER TABLE llx_".strtolower($module).'_'.strtolower($objectname)." ADD INDEX idx_".strtolower($module).'_'.strtolower($objectname)."_".$key." (".$key.");"; |
|
315 | - $texttoinsert.= "\n"; |
|
314 | + $texttoinsert .= "ALTER TABLE llx_".strtolower($module).'_'.strtolower($objectname)." ADD INDEX idx_".strtolower($module).'_'.strtolower($objectname)."_".$key." (".$key.");"; |
|
315 | + $texttoinsert .= "\n"; |
|
316 | 316 | } |
317 | - if (! empty($val['foreignkey'])) |
|
317 | + if (!empty($val['foreignkey'])) |
|
318 | 318 | { |
319 | - $tmp=explode('.',$val['foreignkey']); |
|
320 | - if (! empty($tmp[0]) && ! empty($tmp[1])) |
|
319 | + $tmp = explode('.', $val['foreignkey']); |
|
320 | + if (!empty($tmp[0]) && !empty($tmp[1])) |
|
321 | 321 | { |
322 | - $texttoinsert.= "ALTER TABLE llx_".strtolower($module).'_'.strtolower($objectname)." ADD CONSTRAINT llx_".strtolower($module).'_'.strtolower($objectname)."_".$key." FOREIGN KEY (".$key.") REFERENCES ".$tmp[0]."(".$tmp[1].");"; |
|
323 | - $texttoinsert.= "\n"; |
|
322 | + $texttoinsert .= "ALTER TABLE llx_".strtolower($module).'_'.strtolower($objectname)." ADD CONSTRAINT llx_".strtolower($module).'_'.strtolower($objectname)."_".$key." FOREIGN KEY (".$key.") REFERENCES ".$tmp[0]."(".$tmp[1].");"; |
|
323 | + $texttoinsert .= "\n"; |
|
324 | 324 | } |
325 | 325 | } |
326 | 326 | } |
327 | 327 | } |
328 | - $texttoinsert.= '-- END MODULEBUILDER INDEXES'; |
|
328 | + $texttoinsert .= '-- END MODULEBUILDER INDEXES'; |
|
329 | 329 | |
330 | 330 | $contentsql = preg_replace('/-- BEGIN MODULEBUILDER INDEXES.*END MODULEBUILDER INDEXES/ims', $texttoinsert, $contentsql); |
331 | 331 |
@@ -41,8 +41,12 @@ discard block |
||
41 | 41 | { |
42 | 42 | global $db, $langs; |
43 | 43 | |
44 | - if (empty($objectname)) return -1; |
|
45 | - if (empty($readdir)) $readdir=$destdir; |
|
44 | + if (empty($objectname)) { |
|
45 | + return -1; |
|
46 | + } |
|
47 | + if (empty($readdir)) { |
|
48 | + $readdir=$destdir; |
|
49 | + } |
|
46 | 50 | |
47 | 51 | if (! empty($addfieldentry['arrayofkeyval']) && ! is_array($addfieldentry['arrayofkeyval'])) |
48 | 52 | { |
@@ -87,8 +91,11 @@ discard block |
||
87 | 91 | try |
88 | 92 | { |
89 | 93 | include_once $pathoffiletoeditsrc; |
90 | - if (class_exists($objectname)) $object=new $objectname($db); |
|
91 | - else return -4; |
|
94 | + if (class_exists($objectname)) { |
|
95 | + $object=new $objectname($db); |
|
96 | + } else { |
|
97 | + return -4; |
|
98 | + } |
|
92 | 99 | |
93 | 100 | // Backup old file |
94 | 101 | dol_copy($pathoffiletoedittarget, $pathoffiletoedittarget.'.back', $newmask, 1); |
@@ -133,21 +140,39 @@ discard block |
||
133 | 140 | $texttoinsert.= " 'visible'=>".($val['visible']!=''?$val['visible']:-1).","; |
134 | 141 | $texttoinsert.= " 'position'=>".($val['position']!=''?$val['position']:50).","; |
135 | 142 | $texttoinsert.= " 'notnull'=>".($val['notnull']!=''?$val['notnull']:-1).","; |
136 | - if ($val['default']) $texttoinsert.= " 'default'=>'".$val['default']."',"; |
|
137 | - if ($val['index']) $texttoinsert.= " 'index'=>".$val['index'].","; |
|
138 | - if ($val['searchall']) $texttoinsert.= " 'searchall'=>".$val['searchall'].","; |
|
139 | - if ($val['isameasure']) $texttoinsert.= " 'isameasure'=>'".$val['isameasure']."',"; |
|
140 | - if ($val['foreignkey']) $texttoinsert.= " 'foreignkey'=>'".$val['foreignkey']."',"; |
|
141 | - if ($val['help']) $texttoinsert.= " 'help'=>\"".preg_replace('/"/', '', $val['help'])."\","; |
|
142 | - if ($val['comment']) $texttoinsert.= " 'comment'=>\"".preg_replace('/"/', '', $val['comment'])."\","; |
|
143 | - if ($val['showoncombobox']) $texttoinsert.= " 'showoncombobox'=>'".$val['showoncombobox']."',"; |
|
143 | + if ($val['default']) { |
|
144 | + $texttoinsert.= " 'default'=>'".$val['default']."',"; |
|
145 | + } |
|
146 | + if ($val['index']) { |
|
147 | + $texttoinsert.= " 'index'=>".$val['index'].","; |
|
148 | + } |
|
149 | + if ($val['searchall']) { |
|
150 | + $texttoinsert.= " 'searchall'=>".$val['searchall'].","; |
|
151 | + } |
|
152 | + if ($val['isameasure']) { |
|
153 | + $texttoinsert.= " 'isameasure'=>'".$val['isameasure']."',"; |
|
154 | + } |
|
155 | + if ($val['foreignkey']) { |
|
156 | + $texttoinsert.= " 'foreignkey'=>'".$val['foreignkey']."',"; |
|
157 | + } |
|
158 | + if ($val['help']) { |
|
159 | + $texttoinsert.= " 'help'=>\"".preg_replace('/"/', '', $val['help'])."\","; |
|
160 | + } |
|
161 | + if ($val['comment']) { |
|
162 | + $texttoinsert.= " 'comment'=>\"".preg_replace('/"/', '', $val['comment'])."\","; |
|
163 | + } |
|
164 | + if ($val['showoncombobox']) { |
|
165 | + $texttoinsert.= " 'showoncombobox'=>'".$val['showoncombobox']."',"; |
|
166 | + } |
|
144 | 167 | if ($val['arrayofkeyval']) |
145 | 168 | { |
146 | 169 | $texttoinsert.= " 'arrayofkeyval'=>array("; |
147 | 170 | $i=0; |
148 | 171 | foreach($val['arrayofkeyval'] as $key2 => $val2) |
149 | 172 | { |
150 | - if ($i) $texttoinsert.=", "; |
|
173 | + if ($i) { |
|
174 | + $texttoinsert.=", "; |
|
175 | + } |
|
151 | 176 | $texttoinsert.="'".$key2."'=>'".$val2."'"; |
152 | 177 | $i++; |
153 | 178 | } |
@@ -190,8 +215,7 @@ discard block |
||
190 | 215 | @chmod($pathoffiletoedittarget, octdec($newmask)); |
191 | 216 | |
192 | 217 | return $object; |
193 | - } |
|
194 | - catch(Exception $e) |
|
218 | + } catch(Exception $e) |
|
195 | 219 | { |
196 | 220 | print $e->getMessage(); |
197 | 221 | return -5; |
@@ -216,8 +240,12 @@ discard block |
||
216 | 240 | |
217 | 241 | $error = 0; |
218 | 242 | |
219 | - if (empty($objectname)) return -1; |
|
220 | - if (empty($readdir)) $readdir=$destdir; |
|
243 | + if (empty($objectname)) { |
|
244 | + return -1; |
|
245 | + } |
|
246 | + if (empty($readdir)) { |
|
247 | + $readdir=$destdir; |
|
248 | + } |
|
221 | 249 | |
222 | 250 | $pathoffiletoclasssrc=$readdir.'/class/'.strtolower($objectname).'.class.php'; |
223 | 251 | |
@@ -237,11 +265,13 @@ discard block |
||
237 | 265 | if (! is_object($object)) |
238 | 266 | { |
239 | 267 | include_once $pathoffiletoclasssrc; |
240 | - if (class_exists($objectname)) $object=new $objectname($db); |
|
241 | - else return -1; |
|
268 | + if (class_exists($objectname)) { |
|
269 | + $object=new $objectname($db); |
|
270 | + } else { |
|
271 | + return -1; |
|
272 | + } |
|
242 | 273 | } |
243 | - } |
|
244 | - catch(Exception $e) |
|
274 | + } catch(Exception $e) |
|
245 | 275 | { |
246 | 276 | print $e->getMessage(); |
247 | 277 | } |
@@ -262,23 +292,40 @@ discard block |
||
262 | 292 | $type = $val['type']; |
263 | 293 | $type = preg_replace('/:.*$/', '', $type); // For case type = 'integer:Societe:societe/class/societe.class.php' |
264 | 294 | |
265 | - if ($type == 'html') $type = 'text'; // html modulebuilder type is a text type in database |
|
266 | - else if ($type == 'price') $type = 'double'; // html modulebuilder type is a text type in database |
|
267 | - else if ($type == 'link' || $type == 'sellist') $type = 'integer'; |
|
295 | + if ($type == 'html') { |
|
296 | + $type = 'text'; |
|
297 | + } |
|
298 | + // html modulebuilder type is a text type in database |
|
299 | + else if ($type == 'price') { |
|
300 | + $type = 'double'; |
|
301 | + } |
|
302 | + // html modulebuilder type is a text type in database |
|
303 | + else if ($type == 'link' || $type == 'sellist') { |
|
304 | + $type = 'integer'; |
|
305 | + } |
|
268 | 306 | $texttoinsert.= "\t".$key." ".$type; |
269 | - if ($key == 'rowid') $texttoinsert.= ' AUTO_INCREMENT PRIMARY KEY'; |
|
270 | - if ($key == 'entity') $texttoinsert.= ' DEFAULT 1'; |
|
271 | - else |
|
307 | + if ($key == 'rowid') { |
|
308 | + $texttoinsert.= ' AUTO_INCREMENT PRIMARY KEY'; |
|
309 | + } |
|
310 | + if ($key == 'entity') { |
|
311 | + $texttoinsert.= ' DEFAULT 1'; |
|
312 | + } else |
|
272 | 313 | { |
273 | 314 | if ($val['default'] != '') |
274 | 315 | { |
275 | - if (preg_match('/^null$/i', $val['default'])) $texttoinsert.= " DEFAULT NULL"; |
|
276 | - else if (preg_match('/varchar/', $type )) $texttoinsert.= " DEFAULT '".$db->escape($val['default'])."'"; |
|
277 | - else $texttoinsert.= (($val['default'] > 0)?' DEFAULT '.$val['default']:''); |
|
316 | + if (preg_match('/^null$/i', $val['default'])) { |
|
317 | + $texttoinsert.= " DEFAULT NULL"; |
|
318 | + } else if (preg_match('/varchar/', $type )) { |
|
319 | + $texttoinsert.= " DEFAULT '".$db->escape($val['default'])."'"; |
|
320 | + } else { |
|
321 | + $texttoinsert.= (($val['default'] > 0)?' DEFAULT '.$val['default']:''); |
|
322 | + } |
|
278 | 323 | } |
279 | 324 | } |
280 | 325 | $texttoinsert.= (($val['notnull'] > 0)?' NOT NULL':''); |
281 | - if ($i < count($object->fields)) $texttoinsert.=", "; |
|
326 | + if ($i < count($object->fields)) { |
|
327 | + $texttoinsert.=", "; |
|
328 | + } |
|
282 | 329 | $texttoinsert.= "\n"; |
283 | 330 | } |
284 | 331 | } |
@@ -290,8 +337,7 @@ discard block |
||
290 | 337 | if ($result) |
291 | 338 | { |
292 | 339 | @chmod($pathoffiletoedittarget, octdec($newmask)); |
293 | - } |
|
294 | - else |
|
340 | + } else |
|
295 | 341 | { |
296 | 342 | $error++; |
297 | 343 | } |
@@ -335,8 +381,7 @@ discard block |
||
335 | 381 | if ($result) |
336 | 382 | { |
337 | 383 | @chmod($pathoffiletoedittarget, octdec($newmask)); |
338 | - } |
|
339 | - else |
|
384 | + } else |
|
340 | 385 | { |
341 | 386 | $error++; |
342 | 387 | } |