Skip to content

Commit bc02be9

Browse files
authored
Add files via upload
1 parent 2d3650a commit bc02be9

7 files changed

+102
-7
lines changed

abc_0001.inc.php

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<?php
2+
// ----------------------------------------------------------------------
3+
// phpMyLib Version: 0.1.3 Release Date: 20140522
4+
// © Copyright 2001-2024 Manu Herrán. Todos los derechos reservados
5+
// Free download source code:
6+
// https://manuherran.com/
7+
// ----------------------------------------------------------------------
8+
// Para mantener la compatibilidad entre editores de texto, en este
9+
// fichero se utilizará para identar el espacio, y no el tabulador
10+
// ----------------------------------------------------------------------
11+
// abc: Adobe Business Catalyst
12+
// ----------------------------------------------------------------------
13+
// abc_0001_fApiRequest
14+
// abc_0001_fApiParseSimpleApiOutputOneRecord
15+
//
16+
//
17+
// ----------------------------------------------------------------------
18+
// https://worldsecuresystems.com/catalystwebservice/catalystcrmwebservice.asmx
19+
// https://worldsecuresystems.com/catalystwebservice/catalystecommercewebservice.asmx
20+
// ----------------------------------------------------------------------
21+
function abc_0001_fApiRequest ($abcWebsiteDomainName, $abcWebsiteId, $abcUser, $abcPassword, $abcApiName, $abcApiFunctionName, $abcApiParam1, $abcApiParam2, $abcApiParam3) {
22+
// $apiName "CRM", "eCommerce"
23+
// Ejemplos de llamada:
24+
// print abc_0001_fApiRequest ("car023.businesscatalyst.com", "1387360", "api@businesscatalyst.es", "(pass)", "CRM", "SecureZoneList_Retrieve", "", "", "");
25+
// print abc_0001_fApiRequest ("car023.businesscatalyst.com", "1387360", "api@businesscatalyst.es", "(pass)", "eCommerce", "Product_ListRetrieve", "-1", "", ""); // Todos los productos
26+
// print abc_0001_fApiRequest ("car023.businesscatalyst.com", "1387360", "api@businesscatalyst.es", "(pass)", "eCommerce", "Product_ListRetrieve", "17823", "", ""); // Prodcutos del catalogo 17823
27+
28+
$soapUrl = "";
29+
if ($abcApiName == "CRM") {
30+
$soapUrl = "https://" . $abcWebsiteDomainName . "/CatalystWebService/CatalystCRMWebservice.asmx";
31+
} else if ($abcApiName == "eCommerce") {
32+
$soapUrl = "https://" . $abcWebsiteDomainName . "/CatalystWebService/catalystecommercewebservice.asmx";
33+
}
34+
35+
$soapBody = "";
36+
if ($abcApiName == "CRM") {
37+
$soapBody = $soapBody . "<" . $abcApiFunctionName . " xmlns=\"http://tempuri.org/CatalystDeveloperService/CatalystCRMWebservice\">\n";
38+
$soapBody = $soapBody . "<username>" . $abcUser . "</username>\n";
39+
$soapBody = $soapBody . "<password>" . $abcPassword . "</password>\n";
40+
$soapBody = $soapBody . "<siteId>" . $abcWebsiteId . "</siteId>\n";
41+
$soapBody = $soapBody . "</" . $abcApiFunctionName . ">\n";
42+
} else if ($abcApiName == "eCommerce") {
43+
$soapBody = $soapBody . "<" . $abcApiFunctionName . " xmlns=\"http://tempuri.org/CatalystDeveloperService/CatalystEcommerceWebservice\">\n";
44+
$soapBody = $soapBody . "<Username>" . $abcUser . "</Username>\n";
45+
$soapBody = $soapBody . "<Password>" . $abcPassword . "</Password>\n";
46+
$soapBody = $soapBody . "<SiteId>" . $abcWebsiteId . "</SiteId>\n";
47+
if ($abcApiFunctionName == "Product_ListRetrieve") {
48+
$soapBody = $soapBody . "<CatalogId>" . $abcApiParam1 ."</CatalogId>\n";
49+
}
50+
$soapBody = $soapBody . "</" . $abcApiFunctionName . ">\n";
51+
}
52+
53+
return soap_0001_fSoapRequestV1($soapUrl, $soapBody);
54+
}
55+
// ----------------------------------------------------------------------
56+
function abc_0001_fApiParseSimpleApiOutputOneRecord($xmlOutput, $firstTag, $lastTag) {
57+
// Ejemplo de llamada:
58+
// $apiData = abc_0001_fApiRequest(... "CRM", "SecureZoneList_Retrieve" ...);
59+
// $apiData = abc_0001_fApiParseSimpleApiOutputOneRecord ($apiData, "<SecureZone>", "</SecureZone>");
60+
// print $apiData->secureZoneID . " " . $apiData->secureZoneName . " " . $apiData->secureZoneExpiryDate . " " . $apiData->secureZoneUnsubscribe;
61+
62+
// Ejemplo de llamada:
63+
// $apiData = abc_0001_fApiRequest(... "eCommerce", "Product_ListRetrieve" ...);
64+
// $apiData = abc_0001_fApiParseSimpleApiOutputOneRecord ($apiData, "<Products>", "</Products>");
65+
// print $apiData->productId . " " . $apiData->productCode . " " . $apiData->productName . " " . $apiData->description . " " . $apiData->smallImage . " " . $apiData->largeImage . " ";
66+
67+
$xmlData = $xmlOutput;
68+
//print "<hr>" . $xmlData . "<hr>";
69+
$xmlData = xml_0001_fTrimXmlText($xmlData, $firstTag, $lastTag);
70+
//print "<hr>" . $xmlData . "<hr>";
71+
//print_r(json_decode(json_encode(simplexml_load_string($xmlData))));
72+
$structuredData = json_decode(json_encode(simplexml_load_string($xmlData)));
73+
return $structuredData;
74+
}
75+
// ----------------------------------------------------------------------
76+
// https://worldsecuresystems.com/catalystwebservice/catalystcrmwebservice.asmx
77+
// https://worldsecuresystems.com/catalystwebservice/catalystecommercewebservice.asmx
78+
// ----------------------------------------------------------------------
79+
// OJO NO DEJAR LINEAS EN BLANCO AL FINAL DE ESTE FICHERO
80+
// ----------------------------------------------------------------------
81+
?>

html_0001.inc.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// Para mantener la compatibilidad entre editores de texto, en este
99
// fichero se utilizar�ara identar el espacio, y no el tabulador
1010
// ----------------------------------------------------------------------
11+
// html_0001
12+
// ----------------------------------------------------------------------
1113
// html_0001_htmlHead
1214
// html_0001_htmlBrLike2TagBr
1315
// html_0001_htmlMultiTagBr2DoubleBr

http_0001.inc.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// Para mantener la compatibilidad entre editores de texto, en este
99
// fichero se utilizará para identar el espacio, y no el tabulador
1010
// ----------------------------------------------------------------------
11+
// http_0001
12+
// ----------------------------------------------------------------------
1113
// peticionHttpGet --> http_0001_fHttpGetRequest
1214
// http_0001_fHttpGetRequest
1315
// http_0001_fHttpGetFlexibleRequest

jsval_0005.inc.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// Para mantener la compatibilidad entre editores de texto, en este
99
// fichero se utilizará para identar el espacio, y no el tabulador
1010
// ----------------------------------------------------------------------
11+
// web_0005 + jsval_0005
12+
// ----------------------------------------------------------------------
1113
// jsval_0005_fTextBoxJsValidationCode
1214
// ----------------------------------------------------------------------
1315
function jsval_0005_fTextBoxJsValidationCode($lang, $textBoxJsVal, $formName, $textBoxName, $textBoxLabel) {

soap_0001.inc.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// Para mantener la compatibilidad entre editores de texto, en este
99
// fichero se utilizará para identar el espacio, y no el tabulador
1010
// ----------------------------------------------------------------------
11+
// soap_0001
12+
// ----------------------------------------------------------------------
1113
// soap_0001_fSoapRequestV1
1214
// soap_0001_fSoapRequestV2
1315
// ----------------------------------------------------------------------

web_0005.inc.php

+11-7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// Para mantener la compatibilidad entre editores de texto, en este
99
// fichero se utilizará para identar el espacio, y no el tabulador
1010
// ----------------------------------------------------------------------
11+
// web_0005 + jsval_0005
12+
// ----------------------------------------------------------------------
1113
// web_0005_linkWithoutHttp
1214
// web_0005_linkWithHttp
1315
// ----------------------------------------------------------------------
@@ -305,12 +307,12 @@ function web_0005_fPrintStandardValJsHtmlForm($lang, $params) {
305307
$retJs = $retJs . "// -----------------------------------------------------------------------\n";
306308
$retJs = $retJs . "// Javascript code automatically generated by phpMyLib\n";
307309
$retJs = $retJs . "// Free download source code:\n";
308-
$retJs = $retJs . "// http://www.phpMyLib.com/\n";
310+
$retJs = $retJs . "// http://www.manuherran.com/\n";
309311
$retJs = $retJs . "// -----------------------------------------------------------------------\n";
310312
$retJs = $retJs . "// jsMyLib Version: 0.1.1 Release Date: 20130903\n";
311313
$retJs = $retJs . "// © Copyright 1999-2014 jsMyLib\n";
312314
$retJs = $retJs . "// Free download source code:\n";
313-
$retJs = $retJs . "// http://www.jsMyLib.com/\n";
315+
$retJs = $retJs . "// http://www.manuherran.com/\n";
314316
$retJs = $retJs . "// -----------------------------------------------------------------------\n";
315317
$retJs = $retJs . " function validar_$formName() {\n";
316318
if ($lang == "eng") {
@@ -921,11 +923,13 @@ function web_0005_fPrintStandardValJsHtmlForm($lang, $params) {
921923
}
922924

923925
// 20171128 Manu
924-
if ($riskControlsCounter == 0) {
925-
return $retError . $retCss . $retJs . $retHtml . $retPostJs1 . $retPostJs2;
926-
} else {
927-
return "";
928-
}
926+
// if ($riskControlsCounter == 0) {
927+
// return $retError . $retCss . $retJs . $retHtml . $retPostJs1 . $retPostJs2;
928+
// } else {
929+
// return "Error al generar el formulario: " . $retError . " - " . $riskControlsCounter;
930+
// }
931+
// 20240712 Manu
932+
return $retError . $retCss . $retJs . $retHtml . $retPostJs1 . $retPostJs2;
929933

930934
}
931935
// ----------------------------------------------------------------------

zip_0001.inc.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// Para mantener la compatibilidad entre editores de texto, en este
99
// fichero se utilizará para identar el espacio, y no el tabulador
1010
// ----------------------------------------------------------------------
11+
// zip_0001
12+
// ----------------------------------------------------------------------
1113
// zip_0001_fUnzipFileInFolder
1214
//
1315
//

0 commit comments

Comments
 (0)