Indiegroup_Santander - Version 1.0.0

Version Notes

Indiegroup_Santander

Download this release

Release Info

Developer IndieGroup
Extension Indiegroup_Santander
Version 1.0.0
Comparing to
See all releases


Version 1.0.0

Files changed (76) hide show
  1. app/code/local/Indiegroup/.DS_Store +0 -0
  2. app/code/local/Indiegroup/Santander/.DS_Store +0 -0
  3. app/code/local/Indiegroup/Santander/Block/.DS_Store +0 -0
  4. app/code/local/Indiegroup/Santander/Block/Adminhtml/Santanderbackend.php +13 -0
  5. app/code/local/Indiegroup/Santander/Block/Adminhtml/Test.php +6 -0
  6. app/code/local/Indiegroup/Santander/Block/Index.php +5 -0
  7. app/code/local/Indiegroup/Santander/Block/Product/List.php +45 -0
  8. app/code/local/Indiegroup/Santander/Block/Reclamepromo.php +58 -0
  9. app/code/local/Indiegroup/Santander/Block/Reclamerentevoet.php +58 -0
  10. app/code/local/Indiegroup/Santander/Block/Santanderprice.php +134 -0
  11. app/code/local/Indiegroup/Santander/Block/Tax.php +5 -0
  12. app/code/local/Indiegroup/Santander/Helper/Data.php +303 -0
  13. app/code/local/Indiegroup/Santander/Model/.DS_Store +0 -0
  14. app/code/local/Indiegroup/Santander/Model/Cron.php +60 -0
  15. app/code/local/Indiegroup/Santander/Model/Observer.php +286 -0
  16. app/code/local/Indiegroup/Santander/Model/Recurring.php +124 -0
  17. app/code/local/Indiegroup/Santander/Model/Standard.php +143 -0
  18. app/code/local/Indiegroup/Santander/controllers/.DS_Store +0 -0
  19. app/code/local/Indiegroup/Santander/controllers/Adminhtml/SantanderbackendController.php +42 -0
  20. app/code/local/Indiegroup/Santander/controllers/Adminhtml/TestController.php +11 -0
  21. app/code/local/Indiegroup/Santander/controllers/IndexController.php +24 -0
  22. app/code/local/Indiegroup/Santander/controllers/PaymentController.php +571 -0
  23. app/code/local/Indiegroup/Santander/etc/adminhtml.xml +23 -0
  24. app/code/local/Indiegroup/Santander/etc/config.xml +275 -0
  25. app/code/local/Indiegroup/Santander/etc/system.xml +330 -0
  26. app/code/local/Indiegroup/Santander/sql/.DS_Store +0 -0
  27. app/code/local/Indiegroup/Santander/sql/customerattribute_setup/mysql4-install-0.1.0.php +43 -0
  28. app/code/local/Indiegroup/Santander/sql/order_status_setup/mysql4-install-0.1.0.php +17 -0
  29. app/code/local/Indiegroup/Santander/sql/order_status_setup/mysql4-upgrade-0.1.0-0.2.0.php +17 -0
  30. app/code/local/Indiegroup/Santander/sql/order_status_setup/mysql4-upgrade-0.2.0-0.3.0.php +17 -0
  31. app/code/local/Indiegroup/Santander/sql/productattribute_setup/.DS_Store +0 -0
  32. app/code/local/Indiegroup/Santander/sql/productattribute_setup/mysql4-install-0.1.0.php +58 -0
  33. app/code/local/Indiegroup/Santander/sql/productattribute_setup/mysql4-upgrade-0.1.0-0.2.0.php +26 -0
  34. app/code/local/Indiegroup/Santander/sql/productattribute_setup/mysql4-upgrade-0.2.0-0.3.0.php +17 -0
  35. app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-install-0.1.0.php +9 -0
  36. app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.5.0-0.6.0.php +8 -0
  37. app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.6.0-0.7.0.php +7 -0
  38. app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.7.0-0.7.1.php +7 -0
  39. app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.7.1-0.7.2.php +8 -0
  40. app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.7.2-0.7.3.php +8 -0
  41. app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.7.3-0.7.4.php +10 -0
  42. app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.7.4-0.7.5.php +8 -0
  43. app/design/adminhtml/default/default/layout/santander.xml +8 -0
  44. app/design/adminhtml/default/default/template/santander/santanderbackend.phtml +2 -0
  45. app/design/adminhtml/default/default/template/santander/test.phtml +85 -0
  46. app/design/frontend/base/default/layout/santander.xml +53 -0
  47. app/design/frontend/base/default/template/santander/.DS_Store +0 -0
  48. app/design/frontend/base/default/template/santander/catalog/.DS_Store +0 -0
  49. app/design/frontend/base/default/template/santander/catalog/product/.DS_Store +0 -0
  50. app/design/frontend/base/default/template/santander/catalog/product/view/.DS_Store +0 -0
  51. app/design/frontend/base/default/template/santander/index.phtml +1 -0
  52. app/design/frontend/base/default/template/santander/list.phtml +15 -0
  53. app/design/frontend/base/default/template/santander/reclamepromo.phtml +7 -0
  54. app/design/frontend/base/default/template/santander/reclamerentevoet.phtml +4 -0
  55. app/design/frontend/base/default/template/santander/redirect.phtml +18 -0
  56. app/design/frontend/base/default/template/santander/santanderprice.phtml +62 -0
  57. app/design/frontend/base/default/template/santander/tax/grandtotal.phtml +10 -0
  58. app/etc/modules/Indiegroup_Santander.xml +10 -0
  59. app/locale/en_US/Indiegroup_Santander.csv +14 -0
  60. app/locale/fr_FR/Indiegroup_Santander.csv +14 -0
  61. app/locale/nl_NL/Indiegroup_Santander.csv +14 -0
  62. js/fancybox/jquery.fancybox.js +2020 -0
  63. js/jquery/jquery-1.9.0.min.js +4 -0
  64. js/santander/santander.js +12 -0
  65. package.xml +18 -0
  66. skin/frontend/base/default/config.rb +24 -0
  67. skin/frontend/base/default/css/jquery.fancybox.css +274 -0
  68. skin/frontend/base/default/css/santander.css +85 -0
  69. skin/frontend/base/default/images/fancybox/blank.gif +0 -0
  70. skin/frontend/base/default/images/fancybox/close.png +0 -0
  71. skin/frontend/base/default/images/fancybox/close@2x.png +0 -0
  72. skin/frontend/base/default/images/fancybox/fancybox_loading.gif +0 -0
  73. skin/frontend/base/default/images/fancybox/fancybox_loading@2x.gif +0 -0
  74. skin/frontend/base/default/images/fancybox/fancybox_overlay.png +0 -0
  75. skin/frontend/base/default/images/fancybox/fancybox_sprite.png +0 -0
  76. skin/frontend/base/default/images/fancybox/fancybox_sprite@2x.png +0 -0
app/code/local/Indiegroup/.DS_Store ADDED
Binary file
app/code/local/Indiegroup/Santander/.DS_Store ADDED
Binary file
app/code/local/Indiegroup/Santander/Block/.DS_Store ADDED
Binary file
app/code/local/Indiegroup/Santander/Block/Adminhtml/Santanderbackend.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Block_Adminhtml_Santanderbackend extends Mage_Adminhtml_Block_Template {
4
+
5
+ /**
6
+ * Getting URL for importing the Santander Prices
7
+ * @return string
8
+ */
9
+ public function getImportSantanderUrl() {
10
+ return $this->getUrl('santander/adminhtml_santanderbackend/importsantanderprice');
11
+ }
12
+
13
+ }
app/code/local/Indiegroup/Santander/Block/Adminhtml/Test.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Block_Adminhtml_Test extends Mage_Adminhtml_Block_Template {
4
+
5
+
6
+ }
app/code/local/Indiegroup/Santander/Block/Index.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Block_Index extends Mage_Core_Block_Template {
4
+
5
+ }
app/code/local/Indiegroup/Santander/Block/Product/List.php ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Block_Product_List extends Mage_Core_Block_Template {
4
+
5
+ /**
6
+ * Check if Santander Extension is Active
7
+ * Returning True/False
8
+ * If Config is not set return false
9
+ * @return bool
10
+ */
11
+ public function isActive() {
12
+ $isActive = Mage::getStoreConfig('santander/general/active');
13
+ if($isActive) {
14
+ return true;
15
+ } else {
16
+ return false;
17
+ }
18
+ }
19
+
20
+ /**
21
+ * Check if Show Price per Month is set
22
+ * Returning True/False
23
+ * If Config is not set return false
24
+ * @return bool
25
+ */
26
+ public function showPricePerMonth() {
27
+ $prijsPerMaand = Mage::getStoreConfig('santander/general/prijs_maand');
28
+ if($prijsPerMaand) {
29
+ return true;
30
+ } else {
31
+ return false;
32
+ }
33
+ }
34
+
35
+ /**
36
+ * Getting the Price Per Month from the product from attribute santanderpricemonth
37
+ * @param Mage_Catalog_Model_Product $_product
38
+ * @return string
39
+ */
40
+ public function getPricePerMonth($_product) {
41
+ $price = $_product->getResource()->getAttribute('santanderpricemonth')->getFrontend()->getValue($_product);
42
+ return Mage::helper('core')->currency(round($price, 2));
43
+ }
44
+
45
+ }
app/code/local/Indiegroup/Santander/Block/Reclamepromo.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Block_Reclamepromo extends Mage_Core_Block_Template {
4
+
5
+ /**
6
+ * Getting the Calculator URL
7
+ * If this is set, add the price and format
8
+ * Get the data from the URL and return it
9
+ * @param string $price
10
+ * @return null|SimpleXMLElement
11
+ */
12
+ public function getXml($price) {
13
+ $calculatorUrl = Mage::getStoreConfig('santander/general/calculator_url');
14
+ if($calculatorUrl != null) {
15
+ $url = $calculatorUrl . $price . '&format=xml';
16
+ $url = trim($url);
17
+ if (($response_xml_data = file_get_contents($url)) === false) {
18
+ Mage::log('Error fetching XML', null, 'santander.log');
19
+ return null;
20
+ } else {
21
+ libxml_use_internal_errors(true);
22
+ $data = simplexml_load_string($response_xml_data);
23
+ if (!$data) {
24
+ Mage::log('Error loading XML', null, 'santander.log');
25
+ foreach (libxml_get_errors() as $error) {
26
+ Mage::log('$error->message', null, 'santander.log');
27
+ return null;
28
+ }
29
+ } else {
30
+ return $data;
31
+ }
32
+ }
33
+ } else {
34
+ return null;
35
+ }
36
+ }
37
+
38
+ /**
39
+ * Getting the data from Santander by the getXml() function
40
+ * if xml has data and calcSucces is true return the data otherwise return null
41
+ * @param string $id
42
+ * @return null|SimpleXMLElement
43
+ */
44
+ public function getDataOfSantander($id) {
45
+ $_product = Mage::getModel('catalog/product')->load($id);
46
+ if($_product->getSpecialPrice() == "") {
47
+ $price = round($_product->getPrice(), 2);
48
+ } else {
49
+ $price = round($_product->getSpecialPrice(), 2);
50
+ }
51
+ $xml = $this->getXml($price);
52
+ if($xml != null && $xml->calcSuccess == 'true') {
53
+ return $xml;
54
+ } else {
55
+ return null;
56
+ }
57
+ }
58
+ }
app/code/local/Indiegroup/Santander/Block/Reclamerentevoet.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Block_Reclamerentevoet extends Mage_Core_Block_Template {
4
+
5
+ /**
6
+ * Getting the Calculator URL
7
+ * If this is set, add the price and format
8
+ * Get the data from the URL and return it
9
+ * @param string $price
10
+ * @return null|SimpleXMLElement
11
+ */
12
+ public function getXml($price) {
13
+ $calculatorUrl = Mage::getStoreConfig('santander/general/calculator_url');
14
+ if($calculatorUrl != null) {
15
+ $url = $calculatorUrl . $price . '&format=xml';
16
+ $url = trim($url);
17
+ if (($response_xml_data = file_get_contents($url)) === false) {
18
+ Mage::log('Error fetching XML', null, 'santander.log');
19
+ return null;
20
+ } else {
21
+ libxml_use_internal_errors(true);
22
+ $data = simplexml_load_string($response_xml_data);
23
+ if (!$data) {
24
+ Mage::log('Error loading XML', null, 'santander.log');
25
+ foreach (libxml_get_errors() as $error) {
26
+ Mage::log('$error->message', null, 'santander.log');
27
+ return null;
28
+ }
29
+ } else {
30
+ return $data;
31
+ }
32
+ }
33
+ } else {
34
+ return null;
35
+ }
36
+ }
37
+
38
+ /**
39
+ * Getting the data from Santander by the getXml() function
40
+ * if xml has data and calcSucces is true return the data otherwise return null
41
+ * @param string $id
42
+ * @return null|SimpleXMLElement
43
+ */
44
+ public function getDataOfSantander($id) {
45
+ $_product = Mage::getModel('catalog/product')->load($id);
46
+ if($_product->getSpecialPrice() == "") {
47
+ $price = round($_product->getPrice(), 2);
48
+ } else {
49
+ $price = round($_product->getSpecialPrice(), 2);
50
+ }
51
+ $xml = $this->getXml($price);
52
+ if($xml != null && $xml->calcSuccess == 'true') {
53
+ return $xml;
54
+ } else {
55
+ return null;
56
+ }
57
+ }
58
+ }
app/code/local/Indiegroup/Santander/Block/Santanderprice.php ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Block_Santanderprice extends Mage_Catalog_Block_Product_Abstract {
4
+
5
+ /**
6
+ * Check if Santander Extension is Active
7
+ * Returning True/False
8
+ * If Config is not set return false
9
+ * @return bool
10
+ */
11
+ public function isActive() {
12
+ $isActive = Mage::getStoreConfig('santander/general/active');
13
+ if($isActive) {
14
+ return true;
15
+ } else {
16
+ return false;
17
+ }
18
+ }
19
+
20
+ /**
21
+ * Check if Show Price per Month is set
22
+ * Returning True/False
23
+ * If Config is not set return false
24
+ * @return bool
25
+ */
26
+ public function showPricePerMonth() {
27
+ $prijsPerMaand = Mage::getStoreConfig('santander/general/prijs_maand');
28
+ if($prijsPerMaand) {
29
+ return true;
30
+ } else {
31
+ return false;
32
+ }
33
+ }
34
+
35
+ /**
36
+ * Getting the Price Per Month from the product from attribute santanderpricemonth
37
+ * @param Mage_Catalog_Model_Product $_product
38
+ * @return string
39
+ */
40
+ public function getPricePerMonth($_product) {
41
+ $price = $_product->getResource()->getAttribute('santanderpricemonth')->getFrontend()->getValue($_product);
42
+ return Mage::helper('core')->currency(round($price, 2));
43
+ }
44
+
45
+ /**
46
+ * Getting the Calculator URL
47
+ * If this is set, add the price and format
48
+ * Get the data from the URL and return it
49
+ * @param string $price
50
+ * @return null|SimpleXMLElement
51
+ */
52
+ public function getXml($price) {
53
+ $calculatorUrl = Mage::getStoreConfig('santander/general/calculator_url');
54
+ if($calculatorUrl != null) {
55
+ $url = $calculatorUrl . $price . '&format=xml';
56
+ $url = trim($url);
57
+ if (($response_xml_data = file_get_contents($url)) === false) {
58
+ Mage::log('Error fetching XML', null, 'santander.log');
59
+ return null;
60
+ } else {
61
+ libxml_use_internal_errors(true);
62
+ $data = simplexml_load_string($response_xml_data);
63
+ if (!$data) {
64
+ Mage::log('Error loading XML', null, 'santander.log');
65
+ foreach (libxml_get_errors() as $error) {
66
+ Mage::log('$error->message', null, 'santander.log');
67
+ return null;
68
+ }
69
+ } else {
70
+ return $data;
71
+ }
72
+ }
73
+ } else {
74
+ return null;
75
+ }
76
+ }
77
+
78
+ /**
79
+ * Getting the data from Santander by the getXml() function
80
+ * if xml has data and calcSucces is true return the data otherwise return null
81
+ * @param string $price
82
+ * @return null|SimpleXMLElement
83
+ */
84
+ public function getDataOfSantander($price) {
85
+ $xml = $this->getXml($price);
86
+ if ($xml != null && $xml->calcSuccess == 'true') {
87
+ return $xml;
88
+ } else {
89
+ return null;
90
+ }
91
+ }
92
+
93
+ /**
94
+ * Getting the Legal Notices from the Product
95
+ * @return string
96
+ */
97
+ public function getLegalNotices() {
98
+ $current_product = Mage::registry('current_product');
99
+ $product = Mage::getModel('catalog/product')->loadByAttribute('sku', $current_product->getSku());
100
+ $wettelijkeVermelding = $product->getResource()->getAttribute('type_krediet')->getFrontend()->getValue($product);
101
+
102
+ if ($wettelijkeVermelding == 'Reclame met vermelding van rentevoet') {
103
+ return $this->getLegalNoticeRentevoet();
104
+ }
105
+ if ($wettelijkeVermelding == 'Reclame zonder vermelding van rentevoet') {
106
+ return $this->getLegalNoticeZonderRentevoet();
107
+ }
108
+ if ($wettelijkeVermelding == 'Reclame voor promotionele kredieten') {
109
+ return $this->getLegalNoticePromotioneleKred();
110
+ }
111
+
112
+ }
113
+
114
+ /**
115
+ * @return string
116
+ */
117
+ public function getLegalNoticeRentevoet() {
118
+ return Mage::app()->getLayout()->createBlock('santander/reclamerentevoet')->setTemplate('santander/reclamerentevoet.phtml')->toHtml();
119
+ }
120
+
121
+ /**
122
+ * @return string
123
+ */
124
+ public function getLegalNoticeZonderRentevoet() {
125
+ return Mage::helper('santander')->__('Let op, geld lenen kost ook geld.');
126
+ }
127
+
128
+ /**
129
+ * @return string
130
+ */
131
+ public function getLegalNoticePromotioneleKred() {
132
+ return Mage::app()->getLayout()->createBlock('santander/reclamepromo')->setTemplate('santander/reclamepromo.phtml')->toHtml();
133
+ }
134
+ }
app/code/local/Indiegroup/Santander/Block/Tax.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Block_Tax extends Mage_Core_Block_Template {
4
+
5
+ }
app/code/local/Indiegroup/Santander/Helper/Data.php ADDED
@@ -0,0 +1,303 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Helper_Data extends Mage_Core_Helper_Abstract {
4
+
5
+ /**
6
+ * Make SoapClient Connection
7
+ * @return bool|SoapClient
8
+ */
9
+ public function getSoapClient() {
10
+ $wsdl = Mage::getStoreConfig('santander/general/wsdl');
11
+ $webserviceAvailable = $this->checkWebservice($wsdl);
12
+ if ($webserviceAvailable) {
13
+ try {
14
+ $soapClient = new SoapClient($wsdl, array('trace' => 1, 'exceptions' => true, 'cache_wsdl' => WSDL_CACHE_NONE));
15
+ } catch (SoapFault $e) {
16
+ $soapClient = false;
17
+ Mage::log('SOAPCLIENT PROBLEM: '.$e, null, 'santander.log');
18
+ $this->sendErrorMail($e);
19
+ }
20
+ } else {
21
+ $soapClient = false;
22
+ }
23
+
24
+ return $soapClient;
25
+ }
26
+
27
+ /**
28
+ * Make SoapClient Connection
29
+ * @return bool|SoapClient
30
+ */
31
+ public function getSoapClientTransactions() {
32
+ $wsdl = Mage::getStoreConfig('santander/general/wsdl_transaction');
33
+ $webserviceAvailable = $this->checkWebservice($wsdl);
34
+ if ($webserviceAvailable) {
35
+ try {
36
+ $soapClient = new SoapClient($wsdl, array('trace' => 1, 'exceptions' => true, 'cache_wsdl' => WSDL_CACHE_NONE));
37
+ } catch (SoapFault $e) {
38
+ $soapClient = false;
39
+ Mage::log('SOAPCLIENT TRANSACTIONS PROBLEM: '.$e, null, 'santander.log');
40
+ $this->sendErrorMail($e);
41
+ }
42
+ } else {
43
+ $soapClient = false;
44
+ }
45
+
46
+ return $soapClient;
47
+ }
48
+
49
+ /**
50
+ * Function to check if provided url is a webservice
51
+ * and if the webservice is online
52
+ * @param $url
53
+ * @return bool
54
+ */
55
+ public function checkWebservice($url) {
56
+ $handle = curl_init($url);
57
+ $agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
58
+ curl_setopt ($handle, CURLOPT_URL,$url );
59
+ curl_setopt($handle, CURLOPT_USERAGENT, $agent);
60
+ curl_setopt ($handle, CURLOPT_RETURNTRANSFER, 1);
61
+ curl_setopt ($handle,CURLOPT_VERBOSE,false);
62
+ curl_setopt($handle, CURLOPT_TIMEOUT, 5);
63
+ curl_setopt($handle,CURLOPT_SSL_VERIFYPEER, FALSE);
64
+ curl_setopt($handle,CURLOPT_SSLVERSION,3);
65
+ curl_setopt($handle,CURLOPT_SSL_VERIFYHOST, FALSE);
66
+ $page=curl_exec($handle);
67
+ $httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);
68
+ if ($httpCode != 200) {
69
+ /* You don't have a WSDL Service is down. exit the function */
70
+ Mage::log('SOAPCLIENT PROBLEM: HTTP CODE '.$httpCode, null, 'santander.log');
71
+ curl_close($handle);
72
+ return false;
73
+ }
74
+
75
+ curl_close($handle);
76
+ return true;
77
+ }
78
+
79
+ /**
80
+ * Sending an error mail to the person set in the backend
81
+ * Errors from the Webservice
82
+ * @param $e
83
+ */
84
+ public function sendErrorMail($e) {
85
+ $mail = Mage::getModel('core/email');
86
+ $mail->setToName(Mage::getStoreConfig('santander/errors/send_to_name'));
87
+ $mail->setToEmail(Mage::getStoreConfig('santander/errors/send_to_email'));
88
+ $mail->setBody($e);
89
+ $mail->setSubject('Error Webservice Santander');
90
+ $mail->setFromEmail(Mage::getStoreConfig('santander/errors/send_from_email'));
91
+ $mail->setFromName(Mage::getStoreConfig('santander/errors/send_from_name'));
92
+ $mail->setType('html');
93
+
94
+ try {
95
+ $mail->send();
96
+ return $mail;
97
+ } catch (Exception $e) {
98
+ Mage::log('Mail problem: '.$e, null, 'santander.log');
99
+ }
100
+ }
101
+
102
+ /**
103
+ * Get prices per month
104
+ * @param $price
105
+ * @return float|null
106
+ */
107
+ public function getPricePerMonth($price) {
108
+ $xml = $this->getXml($price);
109
+ if ($xml != null && $xml->calcSuccess == 'true') {
110
+ $ranges = $xml->ranges->range;
111
+
112
+ foreach ($ranges as $range) {
113
+ if ($range->start == '1') {
114
+ return round((float) $range->installment, 2);
115
+ }
116
+ }
117
+ } else {
118
+ return null;
119
+ }
120
+ }
121
+
122
+ /**
123
+ * Getting the Calculator URL
124
+ * If this is set, add the price and format
125
+ * Get the data from the URL and return it
126
+ * @param string $price
127
+ * @return null|SimpleXMLElement
128
+ */
129
+ public function getXml($price) {
130
+ $url = Mage::getStoreConfig('santander/general/calculator_url') . $price . '&format=xml';
131
+ try {
132
+ if (($response_xml_data = file_get_contents($url)) === false) {
133
+ Mage::log('Error fetching XML', null, 'santander.log');
134
+ return null;
135
+ } else {
136
+ libxml_use_internal_errors(true);
137
+ $data = simplexml_load_string($response_xml_data);
138
+ if (!$data) {
139
+ Mage::log('Error loading XML', null, 'santander.log');
140
+ foreach (libxml_get_errors() as $error) {
141
+ Mage::log('$error->message', null, 'santander.log');
142
+ return null;
143
+ }
144
+ } else {
145
+ return $data;
146
+ }
147
+ }
148
+ } catch (Exception $ex) {
149
+ Mage::log('Error Fetching: ' . $ex, null, 'santander.log');
150
+ }
151
+ }
152
+
153
+ /**
154
+ * Check if Santander Extension is Active
155
+ * Returning True/False
156
+ * If Config is not set return false
157
+ * @return bool
158
+ */
159
+ public function isActive() {
160
+ $isActive = Mage::getStoreConfig('santander/general/active');
161
+ if($isActive) {
162
+ return true;
163
+ } else {
164
+ return false;
165
+ }
166
+ }
167
+
168
+ /**
169
+ * get Product Price HTML
170
+ * setTemplate and render the view of the product price
171
+ *
172
+ * @param Mage_Catalog_Model_Product $_product
173
+ * @return mixed
174
+ */
175
+ public function getProductPriceHtml($_product) {
176
+ return Mage::getSingleton('core/layout')
177
+ ->createBlock('santander/product_list')
178
+ ->setTemplate('santander/list.phtml')
179
+ ->setProduct($_product)
180
+ ->toHtml();
181
+ }
182
+
183
+ /**
184
+ * set Template and render the view of the total price in checkout
185
+ * @param float $total
186
+ * @return mixed
187
+ */
188
+ public function getTotalPriceHtml($total) {
189
+ return Mage::getSingleton('core/layout')
190
+ ->createBlock('santander/tax')
191
+ ->setTemplate('santander/tax/grandtotal.phtml')
192
+ ->setTotal($total)
193
+ ->toHtml();
194
+ }
195
+
196
+ public function doSantanderReservation($soapClient, $params, $amount) {
197
+ $reservationArrayValues = array();
198
+ $reservationArrayValues['Password'] = Mage::getStoreConfig('santander/general/spassword'); //Adding Pass
199
+ $reservationArrayValues['UserName'] = Mage::getStoreConfig('santander/general/susername'); //Adding Username
200
+ $reservationArrayValues['CardNumber'] = str_replace('564188', '', $params['cardNumber']);
201
+ $expMonth = '';
202
+ if(strlen($params['expirationmonth']) === 1) {
203
+ $expMonth = '0'.$params['expirationmonth'];
204
+ } else {
205
+ $expMonth = $params['expirationmonth'];
206
+ }
207
+ $reservationArrayValues['ExpiryDate'] = substr($params['expirationyear'], 2, 2).$expMonth; //Format: YYMM
208
+ $reservationArrayValues['Amount'] = round($amount * 100, 0);
209
+ $reservationArrayValues['CustomerTransactionKey'] = $this->generateRandomString(); //Unique per transaction -> Chosen by customer
210
+ $reservationArrayValues['CreditType'] = '000'; //Agreement Codes
211
+ $reservationArrayValues['TransactionType'] = '2'; // What Transaction Type -> Reservation
212
+ $reservationArrayValues['RRNumber'] = $params['rrnumber']; // RRNumber
213
+ $reservationArrayValues['PostalCode'] = $params['postcode']; // PostalCode
214
+ $reservationArrayValues['TransactionGroupKey'] = $params['referenceNumber']; // TransactionGroupKey
215
+
216
+ $reservationArray = array(
217
+ 'transaction' => $reservationArrayValues
218
+ );
219
+ try {
220
+ $businessRequest = $soapClient->SendTransaction(
221
+ $reservationArray
222
+ );
223
+ } catch (Exception $e) {
224
+ Mage::log('Error during doSantanderProductReservation of Santander: '.$e, null, 'santander.log');
225
+ }
226
+ $result = $businessRequest->SendTransactionResult;
227
+ return $result;
228
+ }
229
+
230
+ public function doSantanderCancellation($soapClient, $params, $amount, $originalTransactionKey) {
231
+ $cancelReservationArrayValues = array();
232
+ $cancelReservationArrayValues['Password'] = Mage::getStoreConfig('santander/general/spassword'); //Adding Pass
233
+ $cancelReservationArrayValues['UserName'] = Mage::getStoreConfig('santander/general/susername'); //Adding Username
234
+ $cancelReservationArrayValues['CardNumber'] = str_replace('564188', '', $params['cardNumber']);
235
+ $cancelReservationArrayValues['Amount'] = round($amount * 100, 0);
236
+ $cancelReservationArrayValues['CustomerTransactionKey'] = $this->generateRandomString(); //Unique per transaction -> Chosen by customer
237
+ $cancelReservationArrayValues['CreditType'] = '000'; //Agreement Codes
238
+ $cancelReservationArrayValues['TransactionType'] = '3'; // What Transaction Type -> Cancel Reservation
239
+ $cancelReservationArrayValues['TransactionGroupKey'] = $params['referenceNumber']; // TransactionGroupKey
240
+ $cancelReservationArrayValues['OriginalUserName'] = Mage::getStoreConfig('santander/general/susername');
241
+ $cancelReservationArrayValues['OriginalCustomerTransactionKey'] = $originalTransactionKey;
242
+ //$expMonth = '';
243
+ //if(strlen($params['expirationmonth']) === 1) {
244
+ // $expMonth = '0'.$params['expirationmonth'];
245
+ //} else {
246
+ // $expMonth = $params['expirationmonth'];
247
+ //}
248
+ //$cancelReservationArrayValues['ExpiryDate'] = substr($params['expirationyear'], 2, 2).$expMonth; //Format: YYMM
249
+ $cancelReservationArrayValues['ExpiryDate'] = $params['expirationmonth'];
250
+ $cancelReservationArrayValues['PostalCode'] = $params['postcode'];
251
+ $cancelReservationArrayValues['RRNumber'] = $params['rrnumber'];
252
+
253
+ $cancelReservationArray = array(
254
+ 'transaction' => $cancelReservationArrayValues
255
+ );
256
+
257
+ try {
258
+ $businessRequest = $soapClient->SendTransaction(
259
+ $cancelReservationArray
260
+ );
261
+ } catch (Exception $e) {
262
+ Mage::log('Error during doSantanderCancelReservationFullAmount of Santander: '.$e, null, 'santander.log');
263
+ }
264
+
265
+ $result = $businessRequest->SendTransactionResult;
266
+ return $result;
267
+ }
268
+
269
+ public function doSantanderPurchase($soapClient, $params, $amount) {
270
+ $purchaseArrayValues = array();
271
+ $purchaseArrayValues['Password'] = Mage::getStoreConfig('santander/general/spassword'); //Adding Pass
272
+ $purchaseArrayValues['UserName'] = Mage::getStoreConfig('santander/general/susername'); //Adding Username
273
+ $purchaseArrayValues['CardNumber'] = str_replace('564188', '', $params['cardNumber']);
274
+
275
+ $purchaseArrayValues['ExpiryDate'] = $params['expirationmonth']; //Format: YYMM
276
+ $purchaseArrayValues['Amount'] = round($amount * 100, 0);
277
+ $purchaseArrayValues['CustomerTransactionKey'] = $this->generateRandomString(); //Unique per transaction -> Chosen by customer
278
+ $purchaseArrayValues['CreditType'] = '000'; //Agreement Codes
279
+ $purchaseArrayValues['TransactionType'] = '4'; // What Transaction Type -> Reservation
280
+ $purchaseArrayValues['RRNumber'] = $params['rrnumber']; // RRNumber
281
+ $purchaseArrayValues['PostalCode'] = $params['postcode']; // PostalCode
282
+ $purchaseArrayValues['TransactionGroupKey'] = $params['referenceNumber']; // TransactionGroupKey
283
+
284
+ $purchaseArray = array(
285
+ 'transaction' => $purchaseArrayValues
286
+ );
287
+ try {
288
+ $businessRequest = $soapClient->SendTransaction(
289
+ $purchaseArray
290
+ );
291
+ } catch (Exception $e) {
292
+ Mage::log('Error during doSantanderPurchase of Santander: '.$e, null, 'santander.log');
293
+ }
294
+ $result = $businessRequest->SendTransactionResult;
295
+ return $result;
296
+ }
297
+
298
+ public function generateRandomString() {
299
+ return md5(microtime());
300
+ }
301
+
302
+ }
303
+
app/code/local/Indiegroup/Santander/Model/.DS_Store ADDED
Binary file
app/code/local/Indiegroup/Santander/Model/Cron.php ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Model_Cron {
4
+
5
+ /**
6
+ * Import Santander Prices
7
+ *
8
+ */
9
+ public function importSantanderPrices() {
10
+ // Check if santander is active
11
+ if (Mage::getStoreConfig('santander/general/active')) {
12
+ // Get all products
13
+ $productCollection = Mage::getModel('catalog/product')
14
+ ->getCollection()
15
+ ->addAttributeToSelect('price')
16
+ ->addAttributeToSelect('special_price');
17
+ //->addAttributeToSelect('santanderactive');
18
+
19
+ // Loop over products
20
+ foreach ($productCollection as $_product) {
21
+ // Set Santander Price by getting the price from Santander
22
+ $price = $_product->getData('price');
23
+ $specialPrice = $_product->getData('special_price');
24
+ if ($specialPrice != null) {
25
+ $santanderPriceMonth = Mage::helper('santander')->getPricePerMonth($specialPrice);
26
+ } else {
27
+ $santanderPriceMonth = Mage::helper('santander')->getPricePerMonth($price);
28
+ }
29
+ // Update product santanderpricemonth attribute
30
+ Mage::getSingleton('catalog/product_action')->updateAttributes(array($_product->getEntityId()), array('santanderpricemonth' => "$santanderPriceMonth"), 1);
31
+ }
32
+ }
33
+ // Send Email on completion of import
34
+ $this->sendEmailOnComplete('All products prices have been imported from Santander', 'Santander Import Price');
35
+ }
36
+
37
+ /**
38
+ * Send Email function
39
+ * @param $body
40
+ * @param $subject
41
+ */
42
+ public function sendEmailOnComplete($body, $subject) {
43
+ try {
44
+ $mail = Mage::getModel('core/email');
45
+ $mail->setToName(Mage::getStoreConfig('santander/general/cron_name'));
46
+ $mail->setToEmail(Mage::getStoreConfig('santander/general/cron_email'));
47
+ $mail->setBody($body);
48
+ $mail->setSubject($subject);
49
+ $mail->setFromEmail(Mage::getStoreConfig('trans_email/ident_general/email'));
50
+ $mail->setFromName(Mage::getStoreConfig('trans_email/ident_general/name'));
51
+ $mail->setType('html');
52
+ $mail->send();
53
+ return $mail;
54
+ } catch (Exception $e) {
55
+ Mage::log('Mailproblem: '.$e, null, 'santander.log');
56
+ }
57
+
58
+ }
59
+
60
+ }
app/code/local/Indiegroup/Santander/Model/Observer.php ADDED
@@ -0,0 +1,286 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Model_Observer
4
+ {
5
+
6
+ /**
7
+ * On product save, get the price per month from Santander
8
+ * Save it to the product
9
+ * @param $observer
10
+ */
11
+ public function catalog_product_save_after($observer)
12
+ {
13
+ $_product = $observer->getProduct();
14
+ $specialPrice = null;
15
+
16
+ if($_product->getTypeId() == 'grouped') {
17
+ $arrayPrices = array();
18
+
19
+ $associatedProducts = $_product->getTypeInstance(true)->getAssociatedProducts($_product);
20
+ foreach($associatedProducts as $associatedProduct) {
21
+ $arrayPrices[] = round($associatedProduct->getPrice(), 2);
22
+ }
23
+ asort($arrayPrices);
24
+ $price = array_shift($arrayPrices);
25
+ } else {
26
+ if($_product->getTypeId() == 'bundle') {
27
+ //Zend_Debug::dump($_product->getData());exit;
28
+ $selectionCollection = $_product->getTypeInstance(true)->getSelectionsCollection(
29
+ $_product->getTypeInstance(true)->getOptionsIds($_product), $_product
30
+ );
31
+
32
+ foreach($selectionCollection as $option) {
33
+ $bundled_prices[]=$option->getPrice();
34
+ }
35
+
36
+ sort($bundled_prices);
37
+
38
+ $min_price=$bundled_prices[0];
39
+ $price = $min_price;
40
+ } else {
41
+ $price = $_product->getData('price');
42
+ $specialPrice = $_product->getData('special_price');
43
+ }
44
+
45
+ }
46
+
47
+
48
+ if ($specialPrice != null) {
49
+ $santanderPriceMonth = Mage::helper('santander')->getPricePerMonth($specialPrice);
50
+ } else {
51
+ $santanderPriceMonth = Mage::helper('santander')->getPricePerMonth($price);
52
+ }
53
+ Mage::getSingleton('catalog/product_action')->updateAttributes(array($_product->getEntityId()), array('santanderpricemonth' => "$santanderPriceMonth"), 1);
54
+ }
55
+
56
+ public function sales_order_payment_cancel($observer)
57
+ {
58
+ $order = $observer->getPayment()->getOrder();
59
+ if ($order->getData('santander_full_reserved') === '1') {
60
+ $soapClient = Mage::helper('santander')->getSoapClientTransactions();
61
+ if ($soapClient != false) {
62
+ $params = array();
63
+ //$payment = $order->getPayment();
64
+ $params['cardNumber'] = $order->getData('santander_card_number');
65
+ $params['referenceNumber'] = $order->getIncrementId();
66
+ $params['postcode'] = $order->getBillingAddress()->getData('postcode');
67
+ $params['rrnumber'] = $order->getData('santander_rr_number');
68
+ $params['expirationmonth'] = $order->getData('santander_expdate');
69
+ $result = Mage::helper('santander')->doSantanderCancellation($soapClient, $params, $order->getData('base_grand_total'), $order->getSantanderTransactionKey());
70
+ $violations = $result->Violations;
71
+ $violations = (array)$violations;
72
+ }
73
+ try {
74
+ if (count($violations) == 0) {
75
+ $order->setData('santander_full_reserved', 0);
76
+ $order->addStatusHistoryComment('Cancelling of reservation of order Amount has been done');
77
+ $order->save();
78
+ } else {
79
+ foreach ($violations as $violation) {
80
+ Mage::log('Error during doSantanderCancelReservationFullAmount of Santander: ' . $violation->ErrorMessage . ', ' . $violation->ErrorNumber, null, 'santander.log');
81
+ }
82
+ $order->addStatusHistoryComment('Error during doSantanderCancelReservationFullAmount of Santander');
83
+ $order->save();
84
+ }
85
+
86
+ } catch (Mage_Core_Exception $e) {
87
+ Mage::log('Error during doSantanderCancelReservationFullAmount of Santander: ' . $e, null, 'santander.log');
88
+ $order->addStatusHistoryComment('Catch: Error during doSantanderCancelReservationFullAmount of Santander');
89
+ $order->save();
90
+ }
91
+ Mage::log('Full Cancellation of order', null, 'santandercancel.log');
92
+ }
93
+ if ($order->getData('santander_full_reserved') === '0') {
94
+ $items = $order->getAllItems();
95
+ $soapClient = Mage::helper('santander')->getSoapClientTransactions();
96
+ if ($soapClient != false) {
97
+ foreach ($items as $item) {
98
+ if ($item->getData('santander_item_reserved') === '1') {
99
+ $params = array();
100
+ //$payment = $order->getPayment();
101
+ $params['cardNumber'] = $order->getData('santander_card_number');
102
+ $params['referenceNumber'] = $order->getIncrementId();
103
+ $params['postcode'] = $order->getBillingAddress()->getData('postcode');
104
+ $params['rrnumber'] = $order->getData('santander_rr_number');
105
+ $params['expirationmonth'] = $order->getData('santander_expdate');
106
+ $result = Mage::helper('santander')->doSantanderCancellation($soapClient, $params, ($item->getQtyOrdered() * $item->getPrice()), $item->getData('santander_transaction_key'));
107
+ $violations = $result->Violations;
108
+ $violations = (array)$violations;
109
+ try {
110
+ if (count($violations) == 0) {
111
+ $item->setData('santander_item_reserved', 0);
112
+ $order->addStatusHistoryComment('Cancelling of reservation of item Amount has been done');
113
+ } else {
114
+ foreach ($violations as $violation) {
115
+ Mage::log('Error during doSantanderCancelReservationProductAmount of Santander: ' . $violation->ErrorMessage . ', ' . $violation->ErrorNumber, null, 'santander.log');
116
+ }
117
+ $order->addStatusHistoryComment('Error during doSantanderCancelReservationProductAmount of Santander');
118
+ $order->save();
119
+ }
120
+
121
+ } catch (Mage_Core_Exception $e) {
122
+ Mage::log('Error during doSantanderCancelReservationProductAmount of Santander: ' . $e, null, 'santander.log');
123
+ $order->addStatusHistoryComment('Catch: Error during doSantanderCancelReservationProductAmount of Santander');
124
+ $order->save();
125
+ }
126
+ Mage::log('Cancellation of order item', null, 'santandercancel.log');
127
+ }
128
+
129
+ }
130
+
131
+ if ($order->getData('santander_shipping_reserved') === '1') {
132
+ $shippingAmount = $order->getShippingAmount();
133
+ $params = array();
134
+ //$payment = $order->getPayment();
135
+ $params['cardNumber'] = $order->getData('santander_card_number');
136
+ $params['referenceNumber'] = $order->getIncrementId();
137
+ $params['postcode'] = $order->getBillingAddress()->getData('postcode');
138
+ $params['rrnumber'] = $order->getData('santander_rr_number');
139
+ $params['expirationmonth'] = $order->getData('santander_expdate');
140
+ $result = Mage::helper('santander')->doSantanderCancellation($soapClient, $params, $shippingAmount, $order->getData('santander_shipping_transaction_key'));
141
+ $violations = $result->Violations;
142
+ $violations = (array)$violations;
143
+ try {
144
+ if (count($violations) == 0) {
145
+ $order->setData('santander_shipping_reserved', 0);
146
+ $order->addStatusHistoryComment('Cancelling of reservation of shipping Amount has been done');
147
+ } else {
148
+ foreach ($violations as $violation) {
149
+ Mage::log('Error during doSantanderCancelReservationProductAmount of Santander: ' . $violation->ErrorMessage . ', ' . $violation->ErrorNumber, null, 'santander.log');
150
+ }
151
+ $order->addStatusHistoryComment('Error during doSantanderCancelReservationProductAmount of Santander');
152
+ $order->save();
153
+ }
154
+
155
+ } catch (Mage_Core_Exception $e) {
156
+ Mage::log('Error during doSantanderCancelReservationProductAmount of Santander: ' . $e, null, 'santander.log');
157
+ $order->addStatusHistoryComment('Catch: Error during doSantanderCancelReservationProductAmount of Santander');
158
+ $order->save();
159
+ }
160
+ Mage::log('Cancellation of order shipping amount', null, 'santandercancel.log');
161
+ }
162
+ $order->save();
163
+ }
164
+ }
165
+ Mage::log('sales_order_payment_cancel');
166
+ }
167
+
168
+ public function sales_order_shipment_save_after($observer)
169
+ {
170
+ $order = $observer->getEvent()->getShipment()->getOrder();
171
+ if ($order->getData('santander_full_reserved') === '1') {
172
+ Mage::throwException('Order cannot be shipped, still waiting for feedback from Santander');
173
+ }
174
+ if ($order->getData('santander_full_reserved') === '0') {
175
+ $items = $order->getAllItems();
176
+ foreach ($items as $item) {
177
+ if ($item->getData('santander_item_reserved') === '0') {
178
+ Mage::throwException('Order cannot be shipped, still waiting for feedback from Santander');
179
+ }
180
+ }
181
+ if ($order->getData('santander_shipping_reserved') === '0') {
182
+ Mage::throwException('Order cannot be shipped, still waiting for feedback from Santander');
183
+ }
184
+
185
+ //EERST CANCELLEN VAN DE RESERVATIES
186
+ $soapClient = Mage::helper('santander')->getSoapClientTransactions();
187
+ if ($soapClient != false) {
188
+ foreach ($items as $item) {
189
+ if ($item->getData('santander_item_reserved') === '1') {
190
+ $params = array();
191
+ //$payment = $order->getPayment();
192
+ $params['cardNumber'] = $order->getData('santander_card_number');
193
+ $params['referenceNumber'] = $order->getIncrementId();
194
+ $params['postcode'] = $order->getBillingAddress()->getData('postcode');
195
+ $params['rrnumber'] = $order->getData('santander_rr_number');
196
+ $params['expirationmonth'] = $order->getData('santander_expdate');
197
+ //Zend_Debug::dump($item->getData('santander_transaction_key'));exit;
198
+ $result = Mage::helper('santander')->doSantanderCancellation($soapClient, $params, ($item->getQtyOrdered() * $item->getPrice()), $item->getData('santander_transaction_key'));
199
+ $violations = $result->Violations;
200
+ $violations = (array)$violations;
201
+ try {
202
+ if (count($violations) == 0) {
203
+ $item->setData('santander_item_reserved', 0);
204
+ $order->addStatusHistoryComment('Cancelling of reservation of item Amount has been done');
205
+ } else {
206
+ foreach ($violations as $violation) {
207
+ Mage::log('Error during doSantanderCancelReservationProductAmount of Santander: ' . $violation->ErrorMessage . ', ' . $violation->ErrorNumber, null, 'santander.log');
208
+ }
209
+ $order->addStatusHistoryComment('Error during doSantanderCancelReservationProductAmount of Santander');
210
+ $order->save();
211
+ }
212
+
213
+ } catch (Mage_Core_Exception $e) {
214
+ Mage::log('Error during doSantanderCancelReservationProductAmount of Santander: ' . $e, null, 'santander.log');
215
+ $order->addStatusHistoryComment('Catch: Error during doSantanderCancelReservationProductAmount of Santander');
216
+ $order->save();
217
+ }
218
+ Mage::log('Cancellation of order item', null, 'santandercancel.log');
219
+ }
220
+ }
221
+ if ($order->getData('santander_shipping_reserved') === '1') {
222
+ $shippingAmount = $order->getShippingAmount();
223
+ $params = array();
224
+ //$payment = $order->getPayment();
225
+ $params['cardNumber'] = $order->getData('santander_card_number');
226
+ $params['referenceNumber'] = $order->getIncrementId();
227
+ $params['postcode'] = $order->getBillingAddress()->getData('postcode');
228
+ $params['rrnumber'] = $order->getData('santander_rr_number');
229
+ $params['expirationmonth'] = $order->getData('santander_expdate');
230
+ $result = Mage::helper('santander')->doSantanderCancellation($soapClient, $params, $shippingAmount, $order->getData('santander_shipping_transaction_key'));
231
+ $violations = $result->Violations;
232
+ $violations = (array)$violations;
233
+ try {
234
+ if (count($violations) == 0) {
235
+ $order->setData('santander_shipping_reserved', 0);
236
+ $order->addStatusHistoryComment('Cancelling of reservation of shipping Amount has been done');
237
+ } else {
238
+ foreach ($violations as $violation) {
239
+ Mage::log('Error during doSantanderCancelReservationProductAmount of Santander: ' . $violation->ErrorMessage . ', ' . $violation->ErrorNumber, null, 'santander.log');
240
+ }
241
+ $order->addStatusHistoryComment('Error during doSantanderCancelReservationProductAmount of Santander');
242
+ $order->save();
243
+ }
244
+
245
+ } catch (Mage_Core_Exception $e) {
246
+ Mage::log('Error during doSantanderCancelReservationProductAmount of Santander: ' . $e, null, 'santander.log');
247
+ $order->addStatusHistoryComment('Catch: Error during doSantanderCancelReservationProductAmount of Santander');
248
+ $order->save();
249
+ }
250
+ Mage::log('Cancellation of order shipping amount', null, 'santandercancel.log');
251
+ }
252
+ //NU DE PURCHASE GAAN DOEN VAN HET ORDER
253
+ $params = array();
254
+ //$payment = $order->getPayment();
255
+ $params['cardNumber'] = $order->getData('santander_card_number');
256
+ $params['referenceNumber'] = $order->getIncrementId();
257
+ $params['postcode'] = $order->getBillingAddress()->getData('postcode');
258
+ $params['rrnumber'] = $order->getData('santander_rr_number');
259
+ $params['expirationmonth'] = $order->getData('santander_expdate');
260
+ $result = Mage::helper('santander')->doSantanderPurchase($soapClient, $params, $order->getGrandTotal());
261
+ $violations = $result->Violations;
262
+ $violations = (array)$violations;
263
+ try {
264
+ if (count($violations) == 0) {
265
+ $order->setData('santander_purchased', 1);
266
+ $order->addStatusHistoryComment('Purchase of total Amount has been done');
267
+ } else {
268
+ foreach ($violations as $violation) {
269
+ Mage::log('Error during doSantanderPurchase of Santander: ' . $violation->ErrorMessage . ', ' . $violation->ErrorNumber, null, 'santander.log');
270
+ }
271
+ $order->addStatusHistoryComment('Error during doSantanderPurchase of Santander');
272
+ $order->save();
273
+ }
274
+
275
+ } catch (Mage_Core_Exception $e) {
276
+ Mage::log('Error during doSantanderPurchase of Santander: ' . $e, null, 'santander.log');
277
+ $order->addStatusHistoryComment('Catch: Error during doSantanderPurchase of Santander');
278
+ $order->save();
279
+ }
280
+ Mage::log('Purchase of total Amount of order', null, 'santandercancel.log');
281
+ }
282
+ }
283
+ Mage::log('sales_order_shipment_save_after');
284
+ }
285
+
286
+ }
app/code/local/Indiegroup/Santander/Model/Recurring.php ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Model_Recurring extends Mage_Payment_Model_Method_Abstract {
4
+
5
+ protected $_code = 'santander_recurring';
6
+ protected $_isInitializeNeeded = true;
7
+ protected $_canUseInternal = true;
8
+ protected $_canUseForMultishipping = false;
9
+
10
+ /**
11
+ * Get Order Redirect URL for an order placed with a recurring card
12
+ * @return string
13
+ */
14
+ public function getOrderPlaceRedirectUrl() {
15
+
16
+ $quote = Mage::getSingleton('checkout/session')->getQuote();
17
+ $quoteData = $quote->getData();
18
+ $billingAddress = $quote->getBillingAddress();
19
+ $billingAddressData = $billingAddress->getData();
20
+ $customer = $quote->getCustomer();
21
+
22
+ //Set Repeat Purchase Request
23
+ $wsca = $this->setRepeatPurchaseRequest($quoteData, $billingAddress, $billingAddressData);
24
+ //It returns a session ID that is needed for the redirect url so the form is correct
25
+ return Mage::getUrl('santander/payment/redirect', array('_secure' => true, 'sid' => $wsca->setRepeatPurchaseReturn, 'recurring' => true));
26
+ }
27
+
28
+ /**
29
+ * Setting the repeat purchase interface
30
+ * Adding Data to Array and send it via SOAP to Santander
31
+ * Getting back a session ID
32
+ * This is so the form will be prefilled already in Santander
33
+ * @param $quoteData
34
+ * @param $billingAddress
35
+ * @param $billingAddressData
36
+ * @return mixed
37
+ */
38
+ public function setRepeatPurchaseRequest($quoteData, $billingAddress, $billingAddressData) {
39
+ try {
40
+ $customerId = $quoteData['customer_id'];
41
+ if ($customerId != null) {
42
+ $customerData = Mage::getModel('customer/customer')->load($customerId);
43
+ $rrNumber = $customerData->getData('rr_number');
44
+ } else {
45
+ $rrNumber = null;
46
+ }
47
+ //Getting the SoapClient
48
+ $soapClient = Mage::helper('santander')->getSoapClient();
49
+ if ($soapClient != false) {
50
+ $arrayValues = array();
51
+ $arrayValues['password'] = Mage::getStoreConfig('santander/general/spassword'); //Adding Pass
52
+ $arrayValues['userName'] = Mage::getStoreConfig('santander/general/susername'); //Adding Username
53
+ //Adding Email
54
+ $arrayValues['emailAddress'] = array(
55
+ 'readonly' => true,
56
+ 'value' => $quoteData['customer_email']
57
+ );
58
+ //Adding amount of order
59
+ $arrayValues['amount'] = round($quoteData['grand_total'] * 100, 0);
60
+ //Get BottomBanner
61
+ $bottomBanner = Mage::getStoreConfig('santander/general/bottombanner');
62
+ //If Bottombanner isset, then add it to array
63
+ if ($bottomBanner != null) {
64
+ $arrayValues['bottomBanner'] = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA, array('_secure' => true)) . 'theme' . DS . $bottomBanner;
65
+ }
66
+ //Get Reject Url
67
+ $arrayValues['rejectUrl'] = Mage::getUrl('santander/payment/reject', array('_secure' => true));
68
+ //Add Action Type
69
+ // 0101 -> Check Credit Available
70
+ // 0102 -> Reservation
71
+ // 0103 -> Purchase
72
+ // 0104 -> Purchase with pending period
73
+ $arrayValues['actionType'] = '0101';
74
+ //Getting CSS url
75
+ $cssUrl = Mage::getStoreConfig('santander/general/css_url');
76
+ //If CSS url is set in backend, add CSS url to Array
77
+ if ($cssUrl != null) {
78
+ $arrayValues['cssUrl'] = $cssUrl;
79
+ }
80
+ //Getting Accept URL
81
+ $arrayValues['acceptUrl'] = Mage::getUrl('santander/payment/accept', array('_secure' => true));
82
+ //Getting Reference ID
83
+ $arrayValues['referenceId'] = $quoteData['reserved_order_id'];
84
+ //Add Postal Code
85
+ $arrayValues['addressPostcode'] = array(
86
+ 'readonly' => true,
87
+ 'value' => $billingAddressData['postcode']
88
+ );
89
+ //Getting Topbanner from backend
90
+ $topBanner = Mage::getStoreConfig('santander/general/topbanner');
91
+ //If topbanner isset, then add it to array
92
+ if ($topBanner != null) {
93
+ $arrayValues['topBanner'] = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA, array('_secure' => true)) . 'theme' . DS . $topBanner;
94
+ }
95
+ //If RRNUMBER is not null, then add it to the array
96
+ if ($rrNumber != null) {
97
+ $arrayValues['rrNumber'] = array(
98
+ 'readonly' => true,
99
+ 'value' => $rrNumber
100
+ );
101
+ }
102
+ //Add refer url
103
+ $arrayValues['referUrl'] = Mage::getUrl('santander/payment/refer', array('_secure' => true));
104
+ $arrayData = array(
105
+ 'wsca' => $arrayValues
106
+ );
107
+ //Setting the data via the SOAP to Santander, getting back a businessRequest
108
+ //This is a session ID that is needed for the redirect url so the form is correct
109
+ try {
110
+ $businessRequest = $soapClient->setRepeatPurchase(
111
+ $arrayData
112
+ );
113
+ } catch (Exception $e) {
114
+ Mage::log($e);
115
+ }
116
+ }
117
+ return $businessRequest;
118
+ } catch (Exception $e) {
119
+ Mage::getSingleton('core/session')->addError(Mage::helper('santander')->__('Something went wrong, please try again.'));
120
+ $this->_redirect('checkout/cart');
121
+ }
122
+ }
123
+
124
+ }
app/code/local/Indiegroup/Santander/Model/Standard.php ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Model_Standard extends Mage_Payment_Model_Method_Abstract {
4
+
5
+ protected $_code = 'santander_new';
6
+ protected $_isInitializeNeeded = true;
7
+ protected $_canUseInternal = true;
8
+ protected $_canUseForMultishipping = false;
9
+
10
+ /**
11
+ * Get Order Redirect URL for an order placed with a new card
12
+ * @return string
13
+ */
14
+ public function getOrderPlaceRedirectUrl() {
15
+ $quote = Mage::getSingleton('checkout/session')->getQuote();
16
+ $quoteData = $quote->getData();
17
+ $billingAddress = $quote->getBillingAddress();
18
+ $billingAddressData = $billingAddress->getData();
19
+
20
+ //Set New Purchase Request
21
+ $wsca = $this->setNewBusinessRequest($quoteData, $billingAddressData, $billingAddress);
22
+ //It returns a session ID that is needed for the redirect url so the form is correct
23
+ return Mage::getUrl('santander/payment/redirect', array('_secure' => true, 'sid' => $wsca->setNewBusinessReturn, 'recurring' => false));
24
+ }
25
+
26
+ /**
27
+ * Setting the new card purchase interface
28
+ * Adding Data to Array and send it via SOAP to Santander
29
+ * Getting back a session ID
30
+ * This is so the form will be prefilled already in Santander
31
+ * @param $quoteData
32
+ * @param $billingAddressData
33
+ * @param $billingAddress
34
+ * @return mixed
35
+ */
36
+ public function setNewBusinessRequest($quoteData, $billingAddressData, $billingAddress) {
37
+ try {
38
+ //Getting SOAPCLIENT
39
+ $soapClient = Mage::helper('santander')->getSoapClient();
40
+ if ($soapClient != false) {
41
+ $arrayValues = array();
42
+ $arrayValues['password'] = Mage::getStoreConfig('santander/general/spassword'); //Set password
43
+ $arrayValues['userName'] = Mage::getStoreConfig('santander/general/susername'); //Set Username
44
+ //Set Email
45
+ $arrayValues['emailAddress'] = array(
46
+ 'readonly' => true,
47
+ 'value' => $quoteData['customer_email']
48
+ );
49
+ //Set amount of order
50
+ $arrayValues['amount'] = round($quoteData['grand_total'] * 100, 0);
51
+ //Getting bottom banner from backend
52
+ $bottomBanner = Mage::getStoreConfig('santander/general/bottombanner');
53
+ //If isset, then add it to array
54
+ if ($bottomBanner != null) {
55
+ $arrayValues['bottomBanner'] = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA, array('_secure' => true)) . 'theme' . DS . $bottomBanner;
56
+ }
57
+ //Set Reject URL
58
+ $arrayValues['rejectUrl'] = Mage::getUrl('santander/payment/reject', array('_secure' => true));
59
+ //Set Action Type, should always be 0101 (Affordability Check)
60
+ $arrayValues['actionType'] = '0101';
61
+ //Getting CSS url from backend
62
+ $cssUrl = Mage::getStoreConfig('santander/general/css_url');
63
+ //IF isset then add it to array
64
+ if ($cssUrl != null) {
65
+ $arrayValues['cssUrl'] = $cssUrl;
66
+ }
67
+ //Set accept URL
68
+ $arrayValues['acceptUrl'] = Mage::getUrl('santander/payment/accept', array('_secure' => true));
69
+ //Set reference ID
70
+ $arrayValues['referenceId'] = $quoteData['reserved_order_id'];
71
+ //Set Postal Code
72
+ $arrayValues['addressPostcode'] = array(
73
+ 'readonly' => true,
74
+ 'value' => $billingAddressData['postcode']
75
+ );
76
+ //Getting top banner from backend
77
+ $topBanner = Mage::getStoreConfig('santander/general/topbanner');
78
+ //If isset, then add it to array
79
+ if ($topBanner != null) {
80
+ $arrayValues['topBanner'] = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA, array('_secure' => true)) . 'theme' . DS . $topBanner;
81
+ }
82
+
83
+ $number = explode(" ", $billingAddress->getStreet(1));
84
+
85
+ $street = str_replace(end($number), "", $billingAddress->getStreet(1));
86
+ if (preg_match('~[0-9]~', end($number))) {
87
+ $streetNumber = end($number);
88
+ }
89
+ //Set House Number
90
+ if ($billingAddress->getStreet(2)) {
91
+ $arrayValues['addressHouseNumber'] = array(
92
+ 'readonly' => true,
93
+ 'value' => $billingAddress->getStreet(2)
94
+ );
95
+ } else {
96
+ $arrayValues['addressHouseNumber'] = array(
97
+ 'readonly' => true,
98
+ 'value' => $streetNumber
99
+ );
100
+ }
101
+ //Set Country ID
102
+ $arrayValues['addressCountryType'] = array(
103
+ 'readonly' => true,
104
+ 'value' => $billingAddressData['country_id']
105
+ );
106
+ //Set Name
107
+ $arrayValues['surname'] = array(
108
+ 'readonly' => true,
109
+ 'value' => $billingAddressData['lastname']
110
+ );
111
+ //Set First Name
112
+ $arrayValues['firstName'] = array(
113
+ 'readonly' => true,
114
+ 'value' => $billingAddressData['firstname']
115
+ );
116
+ //Set Street
117
+ $arrayValues['addressStreet'] = array(
118
+ 'readonly' => true,
119
+ 'value' => $street
120
+ );
121
+ //Set Refer Url
122
+ $arrayValues['referUrl'] = Mage::getUrl('santander/payment/refer', array('_secure' => true));
123
+ $arrayData = array(
124
+ 'wsca' => $arrayValues
125
+ );
126
+ //Setting the data via the SOAP to Santander, getting back a businessRequest
127
+ //This is a session ID that is needed for the redirect url so the form is correct
128
+ try {
129
+ $businessRequest = $soapClient->setNewBusiness(
130
+ $arrayData
131
+ );
132
+ } catch (Exception $e) {
133
+ Mage::log($e);
134
+ }
135
+ }
136
+ return $businessRequest;
137
+ } catch (Exception $e) {
138
+ Mage::getSingleton('core/session')->addError(Mage::helper('santander')->__('Something went wrong, please try again.'));
139
+ $this->_redirect('checkout/cart');
140
+ }
141
+ }
142
+
143
+ }
app/code/local/Indiegroup/Santander/controllers/.DS_Store ADDED
Binary file
app/code/local/Indiegroup/Santander/controllers/Adminhtml/SantanderbackendController.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Adminhtml_SantanderbackendController extends Mage_Adminhtml_Controller_Action {
4
+
5
+ public function indexAction() {
6
+ $this->loadLayout();
7
+ $this->_title($this->__("Santander"));
8
+ $this->renderLayout();
9
+ }
10
+
11
+ /**
12
+ * Action to create Cron Job to Import Santander Prices for all the products in the Shop
13
+ */
14
+ public function importsantanderpriceAction() {
15
+ $this->createCronJobAction('santander_cron');
16
+ $from_email = Mage::getStoreConfig('trans_email/ident_general/email');
17
+ Mage::getSingleton('core/session')->addSuccess($this->__("The import of Santander Prices has been added to the queue.") . '<br/>' . $this->__("An e-mail will be send to: %s once the indexation is finished.", $from_email));
18
+ $this->_redirect('santander/adminhtml_santanderbackend/index');
19
+ }
20
+
21
+ /**
22
+ * Create Cron Job
23
+ * @param string $jobCode
24
+ * @throws Exception
25
+ */
26
+ public function createCronJobAction($jobCode) {
27
+ $timecreated = strftime("%Y-%m-%d %H:%M:%S", mktime(date("H"), date("i"), date("s"), date("m"), date("d"), date("Y")));
28
+ $timescheduled = strftime("%Y-%m-%d %H:%M:%S", mktime(date("H"), date("i"), date("s"), date("m"), date("d"), date("Y")));
29
+ try {
30
+
31
+ $schedule = Mage::getModel('cron/schedule');
32
+ $schedule->setJobCode($jobCode)
33
+ ->setCreatedAt($timecreated)
34
+ ->setScheduledAt($timescheduled)
35
+ ->setStatus(Mage_Cron_Model_Schedule::STATUS_PENDING)
36
+ ->save();
37
+ } catch (Exception $e) {
38
+ throw new Exception(Mage::helper('cron')->__('Unable to save Cron expression'));
39
+ }
40
+ }
41
+
42
+ }
app/code/local/Indiegroup/Santander/controllers/Adminhtml/TestController.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_Adminhtml_TestController extends Mage_Adminhtml_Controller_Action {
4
+
5
+ public function indexAction() {
6
+ $this->loadLayout();
7
+ $this->_title($this->__("Santander"));
8
+ $this->renderLayout();
9
+ }
10
+
11
+ }
app/code/local/Indiegroup/Santander/controllers/IndexController.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_IndexController extends Mage_Core_Controller_Front_Action {
4
+
5
+ public function IndexAction() {
6
+
7
+ $this->loadLayout();
8
+ $this->getLayout()->getBlock("head")->setTitle($this->__("Santander"));
9
+ $breadcrumbs = $this->getLayout()->getBlock("breadcrumbs");
10
+ $breadcrumbs->addCrumb("home", array(
11
+ "label" => $this->__("Home Page"),
12
+ "title" => $this->__("Home Page"),
13
+ "link" => Mage::getBaseUrl()
14
+ ));
15
+
16
+ $breadcrumbs->addCrumb("santander", array(
17
+ "label" => $this->__("Santander"),
18
+ "title" => $this->__("Santander")
19
+ ));
20
+
21
+ $this->renderLayout();
22
+ }
23
+
24
+ }
app/code/local/Indiegroup/Santander/controllers/PaymentController.php ADDED
@@ -0,0 +1,571 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Indiegroup_Santander_PaymentController extends Mage_Core_Controller_Front_Action {
4
+
5
+ /**
6
+ * This is the action to set the template for the redirect page
7
+ * The redirect action is triggered when someone places an order
8
+ */
9
+ public function redirectAction() {
10
+ $this->loadLayout();
11
+ $block = $this->getLayout()->createBlock('Mage_Core_Block_Template', 'santander', array('template' => 'santander/redirect.phtml'));
12
+ $this->getLayout()->getBlock('content')->append($block);
13
+ $this->renderLayout();
14
+ }
15
+
16
+ /**
17
+ * This is the action when the return from santander is called by
18
+ * /santander/payment/reject
19
+ *
20
+ * When reject action has increment id
21
+ * We get the order to fill the cart again, because order is failed
22
+ * Then we cancel the order and add message that payment has been rejected
23
+ */
24
+ public function rejectAction() {
25
+ if($this->getRequest()->getParams()) {
26
+ $referenceId = $this->getRequest()->getParam('referenceId');
27
+ if($referenceId != null) {
28
+ $order = Mage::getModel('sales/order')->loadByIncrementId($referenceId);
29
+ $cart = Mage::getSingleton('checkout/cart');
30
+
31
+ $items = $order->getItemsCollection();
32
+ foreach ($items as $item) {
33
+ try {
34
+ $cart->addOrderItem($item,$item->getQty());
35
+ }
36
+ catch (Mage_Core_Exception $e){
37
+ if (Mage::getSingleton('checkout/session')->getUseNotice(true)) {
38
+ Mage::getSingleton('checkout/session')->addNotice($e->getMessage());
39
+ }
40
+ else {
41
+ Mage::getSingleton('checkout/session')->addError($e->getMessage());
42
+ }
43
+ }
44
+ catch (Exception $e) {
45
+ Mage::getSingleton('checkout/session')->addException($e,
46
+ Mage::helper('checkout')->__('Cannot add the item to shopping cart.')
47
+ );
48
+ }
49
+ }
50
+ try {
51
+ $cart->save();
52
+ if(!$order->canCancel())
53
+ continue;
54
+ $order->cancel()->setState(Mage_Sales_Model_Order::STATE_CANCELED, true, 'Santander Reject')->addStatusToHistory('santander_reject', 'Santander Reject', false)->save();
55
+ } catch (Mage_Core_Exception $e) {
56
+ Mage::log('Error during reject Action of Santander: '.$e, null, 'santander.log');
57
+ }
58
+ }
59
+ }
60
+ Mage::getSingleton('core/session')->addError($this->__('Your payment has been rejected.'));
61
+ $this->_redirect('checkout/cart');
62
+ }
63
+
64
+ /**
65
+ * This is the action when the return from santander is called by
66
+ * /santander/payment/accept
67
+ *
68
+ * When accept action has increment id
69
+ * We get the order and add Accept status to history of order
70
+ * We redirect to success page
71
+ */
72
+ public function acceptAction() {
73
+ if($this->getRequest()->getParams()) {
74
+ $referenceId = $this->getRequest()->getParam('referenceId');
75
+ if($referenceId != null) {
76
+ $order = Mage::getModel('sales/order')->loadByIncrementId($referenceId);
77
+ try {
78
+ $order->addStatusHistoryComment('Order has been Accepted by Santander');
79
+ $order->save();
80
+ } catch (Mage_Core_Exception $e) {
81
+ Mage::log('Error during accept Action of Santander: '.$e, null, 'santander.log');
82
+ }
83
+ }
84
+ }
85
+ Mage::getSingleton('core/session')->addSuccess($this->__('Your payment has been accepted.'));
86
+ $this->_redirect('checkout/onepage/success');
87
+ }
88
+
89
+ /**
90
+ * This is the action when the return from santander is called by
91
+ * /santander/payment/refer
92
+ *
93
+ * When refer action has increment id
94
+ * We get the order and add Refer status to history of order
95
+ * We redirect to success page
96
+ */
97
+ public function referAction() {
98
+ if($this->getRequest()->getParams()) {
99
+ $referenceId = $this->getRequest()->getParam('referenceId');
100
+ if($referenceId != null) {
101
+ $order = Mage::getModel('sales/order')->loadByIncrementId($referenceId);
102
+ try {
103
+ $order->addStatusHistoryComment('Order has been Referred by Santander');
104
+ $order->save();
105
+ } catch (Mage_Core_Exception $e) {
106
+ Mage::log('Error during refer Action of Santander: '.$e, null, 'santander.log');
107
+ }
108
+ }
109
+ }
110
+ Mage::getSingleton('core/session')->addSuccess($this->__('Your payment is refered.'));
111
+ $this->_redirect('checkout/onepage/success');
112
+ }
113
+
114
+ /**
115
+ * This is the action when santander updates store via
116
+ * /santander/payment/status
117
+ *
118
+ * If result is Accept:
119
+ * STATUSSES:
120
+ * 1 = Temporary OK
121
+ * This mean that a new credit application was accepted, but not yet booked.
122
+ * The state of the order in Magento should be pending until you receive a new update with state 2.
123
+ * When you receive this state 1, you can only send in transactions type 02 (= reservations).
124
+ * You could do this just to make sure that the amount is reserved on the account of the customer, but this is not really necessary.
125
+ * 2 = OK Stage 2 Transfer
126
+ * This means that for a new credit application we have received the signed contract and it has been booked.
127
+ * For the retailer this mean that he can proceed the processing of the order, so you can send us the transactions.
128
+ * 3 = OK repeatPurchase applications
129
+ * This means that the customer has sufficient available on his account and you can immediately proceed to process the transactions.
130
+ *
131
+ * So in fact for each state you could invoke the transaction webservices.
132
+ * The only thing that you should keep in mind is that you can only send us transactions type 04 (purchase), the moment the goods are shipped.
133
+ * So most retailers will always perform the transactions in the following sequence:
134
+ * 1. Reservation total basket amount
135
+ * 2. Cancellation reservation total basket amount
136
+ * 3. Reservation per article in the basket
137
+ * 4. Cancellation per article in the basket
138
+ * 5. Purchase per article in the basket (only when the state of the POST is 2 or 3 and the goods are shipped)
139
+ *
140
+ * Santander Post to the store and adds data
141
+ */
142
+ public function statusAction() {
143
+
144
+ //If data is posted to url
145
+ if ($this->getRequest()->isPost()) {
146
+ $params = $this->getRequest()->getPost(); // Get Paramaters
147
+ Mage::log($params, null, 'santanderparams.log');
148
+ $userName = Mage::getStoreConfig('santander/general/susername'); // Get Username
149
+ if($params['userName'] === $userName) {
150
+ //Check if Username is the same
151
+ // If result is Reject
152
+ if($params['result'] == 'Reject') {
153
+ // Getting order by reference Number
154
+ $order = Mage::getModel('sales/order');
155
+ $order->loadByIncrementId($params['referenceNumber']);
156
+ // Call The Reject Order Action
157
+ $this->noValidTransaction($order, $params, 'Order has been rejected!', 'Order '. $params['referenceNumber']. ' has been rejected!');
158
+ }
159
+ // If result is Refer
160
+ if($params['result'] == 'Refer') {
161
+ // Getting order by reference Number
162
+ $order = Mage::getModel('sales/order');
163
+ $order->loadByIncrementId($params['referenceNumber']);
164
+ // Getting order total
165
+ $orderTotal = $order->getData('base_grand_total');
166
+ // Check order total with param amount
167
+ if($params['amount'] >= $orderTotal) {
168
+ // Call the Refer Order Action
169
+ $this->referOrderAction($order, $params);
170
+ } else {
171
+ // Amount of param is not greater then order total
172
+ // Reject the Order
173
+ // Call the Reject Order Action
174
+ $this->noValidTransaction($order, $params, 'Order Amount is greater then Santander amount, rejected!', 'Order '. $params['referenceNumber']. ' : Amount is greater then Santander amount, rejected!');
175
+
176
+ }
177
+ }
178
+ // If result is Accept
179
+ if($params['result'] == 'Accept') {
180
+ // Check if acceptStatus 1
181
+ // Getting order by reference Number
182
+ $order = Mage::getModel('sales/order');
183
+ $order->loadByIncrementId($params['referenceNumber']);
184
+ // Getting order total
185
+ $orderTotal = $order->getData('base_grand_total');
186
+ // Getting Billing Address
187
+ $billingAddress = $order->getBillingAddress();
188
+ // Getting Postal Code
189
+ $postcode = $billingAddress->getData('postcode');
190
+ // Getting Email
191
+ $email = $order->getData('customer_email');
192
+ $validTransaction = false;
193
+
194
+ $emailValid = $this->checkIfValidAction('email', $params, $email);
195
+ $postcodeValid = $this->checkIfValidAction('postcode', $params, $postcode);
196
+ $amountValid = $this->checkIfValidAction('amount', $params, $orderTotal);
197
+ // Check if email is equal
198
+ if($emailValid) {
199
+ // Check if postal code is equal
200
+ if($postcodeValid) {
201
+ // Check if amount is equal
202
+ if($amountValid) {
203
+ // Everything Ok, then call Accept Order Action with Reservation
204
+ if($params['acceptStatus'] === '1') {
205
+ $this->acceptOrderReservationAction($order, $params);
206
+ }
207
+ if($params['acceptStatus'] === '2' || $params['acceptStatus'] === '3') {
208
+ $this->acceptOrderAction($order, $params);
209
+ }
210
+
211
+ $validTransaction = true;
212
+ } else {
213
+ // Not OK: Order Amount not equal, so Reject Order
214
+ $message = 'Order Amount is greater then Santander amount, rejected!';
215
+ $logMessage = 'Order '. $params['referenceNumber']. ' : Amount is greater then Santander amount, rejected!';
216
+ }
217
+ } else {
218
+ // Not OK: Postal Code not equal, so Reject Order
219
+ $message = 'Postcode is not valid, rejected!';
220
+ $logMessage = 'Order '. $params['referenceNumber']. ' : Postcode is not valid, rejected!';
221
+ }
222
+ } else {
223
+ // Not OK: Email not equal, so Reject Order
224
+ $message = 'Email is not valid, rejected!';
225
+ $logMessage = 'Order '. $params['referenceNumber']. ' : Email is not valid, rejected!';
226
+ }
227
+ if(!$validTransaction) {
228
+ $this->noValidTransaction($order, $params, $message, $logMessage);
229
+ }
230
+ }
231
+ } else {
232
+ Mage::log($this->__('Order '. $params['referenceNumber']. ' : Username is incorrect'), null, 'santander.log');
233
+ }
234
+ }
235
+ }
236
+
237
+ /**
238
+ * Reject Order if nog Valid
239
+ * @param $order
240
+ * @param $params
241
+ * @param $message
242
+ * @param $logMessage
243
+ */
244
+ public function noValidTransaction($order, $params, $message, $logMessage) {
245
+ $this->rejectOrderAction($order, $params, $message);
246
+ Mage::log($logMessage, null, 'santander.log');
247
+ }
248
+
249
+ /**
250
+ * Validation check passed on cases
251
+ * @param $case
252
+ * @param $params
253
+ * @param $field
254
+ * @return bool
255
+ */
256
+ public function checkIfValidAction($case, $params, $field) {
257
+ switch($case) {
258
+ case 'email':
259
+ if(strtolower($params['emailaddress']) === $field) {
260
+ return true;
261
+ }
262
+ case 'postcode':
263
+ if($params['postcode'] === $field) {
264
+ return true;
265
+ }
266
+ case 'amount':
267
+ if($params['amount'] >= $field) {
268
+ return true;
269
+ }
270
+ default:
271
+ return false;
272
+ }
273
+ }
274
+
275
+ /**
276
+ * Reject the Order (called from statusAction)
277
+ * @param $order
278
+ * @param $params
279
+ * @param null $message
280
+ */
281
+ public function rejectOrderAction($order, $params, $message = null) {
282
+ //SAVE RRNUMBER TO CUSTOMER
283
+ $customerId = $order->getData('customer_id');
284
+ if($customerId != null) {
285
+ $customerData = Mage::getModel('customer/customer')->load($customerId);
286
+ $customerData->setData('rr_number', $params['rrnumber']);
287
+ $customerData->save();
288
+ }
289
+
290
+ if($message == null) {
291
+ $message = 'Payment Rejected by Santander';
292
+ }
293
+ // Cancel order
294
+ $order->cancel()->setState(Mage_Sales_Model_Order::STATE_CANCELED, true, $message)->addStatusToHistory('santander_reject', $message, false)->save();
295
+
296
+ }
297
+
298
+ /**
299
+ * Refer the order (called from statusAction)
300
+ * @param $order
301
+ * @param $params
302
+ */
303
+ public function referOrderAction($order, $params) {
304
+ //SAVE RRNUMBER TO CUSTOMER
305
+ $customerId = $order->getData('customer_id');
306
+ if($customerId != null) {
307
+ $customerData = Mage::getModel('customer/customer')->load($customerId);
308
+ $customerData->setData('rr_number', $params['rrnumber']);
309
+ $customerData->save();
310
+ }
311
+ $order->addStatusToHistory('santander_refer', 'Payment Refer by Santander', false)->save();
312
+
313
+ }
314
+
315
+ /**
316
+ * Accept the Order (Stage 1) (Called from statusAction)
317
+ * Do reservation of the whole amount
318
+ * Transactiontypes:
319
+ * 0 -> Standard Purchase
320
+ * 1 -> Standard Refund
321
+ * 2 -> Reservation
322
+ * 3 -> Cancel Reservation
323
+ * 4 -> Purchase
324
+ * 5 -> Neg. Purchase
325
+ * 6 -> Purchase Refund
326
+ * 7 -> Neg. Purch. Refund
327
+ * 8 -> Neg. Reservation
328
+ * 9 -> Cancel Neg. Reserv.
329
+ * 10 -> Canc. Purch. Refund
330
+ * @param Mage_Sales_Model_Order $order
331
+ * @param array() $params
332
+ */
333
+ public function acceptOrderReservationAction($order, $params) {
334
+ try {
335
+
336
+ $order->setData('santander_card_number', $params['cardNumber']);
337
+ $order->setData('santander_rr_number', $params['rrnumber']);
338
+ if(strlen($params['expirationmonth']) === 1) {
339
+ $expMonth = '0'.$params['expirationmonth'];
340
+ } else {
341
+ $expMonth = $params['expirationmonth'];
342
+ }
343
+ $expDate = substr($params['expirationyear'], 2, 2).$expMonth; //Format: YYMM
344
+ $order->setData('santander_expdate', $expDate);
345
+ $order->save();
346
+ $this->doSantanderReservationFullAmount($order, $params, $params['acceptStatus']);
347
+ }
348
+ catch (Mage_Core_Exception $e) {
349
+ Mage::log('Error during acceptOrderReservationAction of Santander: '.$e, null, 'santander.log');
350
+ }
351
+ }
352
+
353
+ /**
354
+ * Accept the Order (Stage 2 or 3) (Called from statusAction)
355
+ * Do further transactions for the order
356
+ * Transactiontypes:
357
+ * 0 -> Standard Purchase
358
+ * 1 -> Standard Refund
359
+ * 2 -> Reservation
360
+ * 3 -> Cancel Reservation
361
+ * 4 -> Purchase
362
+ * 5 -> Neg. Purchase
363
+ * 6 -> Purchase Refund
364
+ * 7 -> Neg. Purch. Refund
365
+ * 8 -> Neg. Reservation
366
+ * 9 -> Cancel Neg. Reserv.
367
+ * 10 -> Canc. Purch. Refund
368
+ * @param Mage_Sales_Model_Order $order
369
+ * @param array() $params
370
+ */
371
+ public function acceptOrderAction($order, $params) {
372
+ $santanderCancelReservation = false;
373
+ try {
374
+ //TODO: Check if order isn't cancelled/invoiced/shipped yet
375
+ $order->setData('santander_card_number', $params['cardNumber']);
376
+ $order->setData('santander_rr_number', $params['rrnumber']);
377
+ if(strlen($params['expirationmonth']) === 1) {
378
+ $expMonth = '0'.$params['expirationmonth'];
379
+ } else {
380
+ $expMonth = $params['expirationmonth'];
381
+ }
382
+ $expDate = substr($params['expirationyear'], 2, 2).$expMonth; //Format: YYMM
383
+ $order->setData('santander_expdate', $expDate);
384
+ $order->save();
385
+
386
+ $santanderFullReserved = $order->getData('santander_full_reserved');
387
+
388
+ if($santanderFullReserved === '1') {
389
+ // DO CANCEL FULL RESERVATION
390
+ $santanderCancelReservation = $this->doSantanderCancelReservationFullAmount($order, $params, $params['acceptStatus']);
391
+
392
+ if($santanderCancelReservation) {
393
+ // DO PER PRODUCT RESERVATION
394
+ $this->doSantanderProductReservation($order, $params, $params['acceptStatus']);
395
+ // DO INVOICING OF ORDER
396
+ }
397
+
398
+ } else {
399
+ // DO FULL RESERVATION
400
+ $this->doSantanderReservationFullAmount($order, $params, $params['acceptStatus']);
401
+ // DO CANCEL FULL RESERVATION
402
+ $santanderCancelReservation = $this->doSantanderCancelReservationFullAmount($order, $params, $params['acceptStatus']);
403
+
404
+ if($santanderCancelReservation) {
405
+ // DO PER PRODUCT RESERVATION
406
+ $this->doSantanderProductReservation($order, $params, $params['acceptStatus']);
407
+ // DO INVOICING OF ORDER
408
+ }
409
+ }
410
+ }
411
+ catch (Mage_Core_Exception $e) {
412
+ Mage::log('Error during accept order Action of Santander: '.$e, null, 'santander.log');
413
+ }
414
+
415
+
416
+ }
417
+
418
+ /**
419
+ * @param $order
420
+ * @param $params
421
+ * @param $acceptStatus
422
+ */
423
+ public function doSantanderReservationFullAmount($order, $params, $acceptStatus) {
424
+ $soapClient = Mage::helper('santander')->getSoapClientTransactions();
425
+ if ($soapClient != false) {
426
+ $result = Mage::helper('santander')->doSantanderReservation($soapClient, $params, $params['amount']);
427
+ $violations = $result->Violations;
428
+ $violations = (array) $violations;
429
+ }
430
+ try {
431
+ if(count($violations) == 0) {
432
+ if($acceptStatus == 2 || $acceptStatus == 3) {
433
+ $order->setData('santander_full_reserved', 1);
434
+ $order->setData('santander_transaction_key', $result->CustomerTransactionKey);
435
+
436
+ $order->addStatusHistoryComment('Order has been accepted by Santander, reservation of order Amount has been done');
437
+ $order->save();
438
+ }
439
+ if($acceptStatus == 1) {
440
+ $order->setData('santander_accept_status', $params['acceptStatus']);
441
+ $order->setData('santander_full_reserved', 1);
442
+ $order->setData('santander_transaction_key', $result->CustomerTransactionKey);
443
+
444
+ $order->addStatusHistoryComment('Order has been accepted by Santander, reservation of order Amount has been done');
445
+ $order->addStatusToHistory('santander_accept', 'Payment Accepted by Santander (Stage 1)', false);
446
+ $order->save();
447
+ }
448
+ } else {
449
+ foreach($violations as $violation) {
450
+ Mage::log('Error during doSantanderReservationFullAmount of Santander: '.$violation->ErrorMessage . ', '.$violation->ErrorNumber, null, 'santander.log');
451
+ }
452
+ }
453
+
454
+ } catch (Mage_Core_Exception $e) {
455
+ Mage::log('Error during doSantanderReservationFullAmount of Santander: '.$e, null, 'santander.log');
456
+ }
457
+ }
458
+
459
+ public function doSantanderCancelReservationFullAmount($order, $params, $acceptStatus) {
460
+ $soapClient = Mage::helper('santander')->getSoapClientTransactions();
461
+ if ($soapClient != false) {
462
+ $result = Mage::helper('santander')->doSantanderCancellation($soapClient, $params, $params['amount'], $order->getSantanderTransactionKey());
463
+ $violations = $result->Violations;
464
+ $violations = (array) $violations;
465
+ }
466
+ $status = false;
467
+ try {
468
+ if(count($violations) == 0) {
469
+ if($acceptStatus == 2 || $acceptStatus == 3) {
470
+ $order->setData('santander_full_reserved', 0);
471
+ $order->addStatusHistoryComment('Cancelling of reservation of order Amount has been done');
472
+ $order->save();
473
+ $status = true;
474
+ } else {
475
+ Mage::log('Error during doSantanderCancelReservationFullAmount of Santander: Acceptstatus is wrong', null, 'santander.log');
476
+ $order->addStatusHistoryComment('Error during doSantanderCancelReservationFullAmount of Santander');
477
+ $order->save();
478
+ }
479
+ } else {
480
+ foreach($violations as $violation) {
481
+ Mage::log('Error during doSantanderCancelReservationFullAmount of Santander: '.$violation->ErrorMessage . ', '.$violation->ErrorNumber, null, 'santander.log');
482
+ }
483
+ $order->addStatusHistoryComment('Error during doSantanderCancelReservationFullAmount of Santander');
484
+ $order->save();
485
+ }
486
+
487
+ } catch (Mage_Core_Exception $e) {
488
+ Mage::log('Error during doSantanderCancelReservationFullAmount of Santander: '.$e, null, 'santander.log');
489
+ $order->addStatusHistoryComment('Catch: Error during doSantanderCancelReservationFullAmount of Santander');
490
+ $order->save();
491
+ }
492
+ return $status;
493
+ }
494
+
495
+ /**
496
+ * @param $order
497
+ * @param $params
498
+ * @param $acceptStatus
499
+ */
500
+ public function doSantanderProductReservation($order, $params, $acceptStatus) {
501
+ $soapClient = Mage::helper('santander')->getSoapClientTransactions();
502
+ if ($soapClient != false) {
503
+ $items = $order->getAllItems();
504
+ foreach($items as $item) {
505
+ $result = Mage::helper('santander')->doSantanderReservation($soapClient, $params, ($item->getQtyOrdered() * $item->getPrice()));
506
+ $violations = $result->Violations;
507
+ $violations = (array) $violations;
508
+
509
+ try {
510
+ if(count($violations) == 0) {
511
+ if($acceptStatus == 2 || $acceptStatus == 3) {
512
+ $item->setData('santander_transaction_key', $result->CustomerTransactionKey);
513
+ $item->setData('santander_item_reserved', 1);
514
+
515
+ $order->addStatusHistoryComment('Order has been accepted by Santander, reservation of item has been done');
516
+
517
+ } else {
518
+ Mage::log('Error during doSantanderProductReservation of Santander: Acceptstatus is wrong', null, 'santander.log');
519
+ }
520
+ } else {
521
+ foreach($violations as $violation) {
522
+ Mage::log('Error during doSantanderProductReservation of Santander: '.$violation->ErrorMessage . ', '.$violation->ErrorNumber, null, 'santander.log');
523
+ }
524
+ }
525
+
526
+ } catch (Mage_Core_Exception $e) {
527
+ Mage::log('Error during doSantanderProductReservation of Santander: '.$e, null, 'santander.log');
528
+ }
529
+ }
530
+ /**
531
+ * Reserve shipping amount
532
+ */
533
+ $shippingAmount = $order->getShippingAmount();
534
+ $result = $result = Mage::helper('santander')->doSantanderReservation($soapClient, $params, $shippingAmount);
535
+ $violations = $result->Violations;
536
+ $violations = (array) $violations;
537
+
538
+ try {
539
+ if(count($violations) == 0) {
540
+ if($acceptStatus == 2 || $acceptStatus == 3) {
541
+ $order->setData('santander_shipping_transaction_key', $result->CustomerTransactionKey);
542
+ $order->setData('santander_shipping_reserved', 1);
543
+
544
+ $order->addStatusHistoryComment('Order has been accepted by Santander, reservation of shipping amount has been done');
545
+
546
+ } else {
547
+ Mage::log('Error during doSantanderProductReservation of Santander: Acceptstatus is wrong', null, 'santander.log');
548
+ }
549
+ } else {
550
+ foreach($violations as $violation) {
551
+ Mage::log('Error during doSantanderProductReservation of Santander: '.$violation->ErrorMessage . ', '.$violation->ErrorNumber, null, 'santander.log');
552
+ }
553
+ }
554
+
555
+ } catch (Mage_Core_Exception $e) {
556
+ Mage::log('Error during doSantanderProductReservation of Santander: '.$e, null, 'santander.log');
557
+ }
558
+ /**
559
+ * END Reserve shipping amount
560
+ */
561
+ $order->save();
562
+
563
+ }
564
+
565
+ }
566
+
567
+ public function generateRandomString() {
568
+ return md5(microtime());
569
+ }
570
+
571
+ }
app/code/local/Indiegroup/Santander/etc/adminhtml.xml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <acl>
4
+ <resources>
5
+ <admin>
6
+ <children>
7
+ <system>
8
+ <children>
9
+ <config>
10
+ <children>
11
+ <santander translate="title" module="santander">
12
+ <title>Santander Section</title>
13
+ <sort_order>200</sort_order>
14
+ </santander>
15
+ </children>
16
+ </config>
17
+ </children>
18
+ </system>
19
+ </children>
20
+ </admin>
21
+ </resources>
22
+ </acl>
23
+ </config>
app/code/local/Indiegroup/Santander/etc/config.xml ADDED
@@ -0,0 +1,275 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Indiegroup_Santander>
5
+ <version>1.0.0</version>
6
+ </Indiegroup_Santander>
7
+ </modules>
8
+ <frontend>
9
+ <routers>
10
+ <santander>
11
+ <use>standard</use>
12
+ <args>
13
+ <module>Indiegroup_Santander</module>
14
+ <frontName>santander</frontName>
15
+ </args>
16
+ </santander>
17
+ </routers>
18
+ <layout>
19
+ <updates>
20
+ <santander>
21
+ <file>santander.xml</file>
22
+ </santander>
23
+ </updates>
24
+ </layout>
25
+ <translate>
26
+ <modules>
27
+ <santander>
28
+ <files>
29
+ <default>Indiegroup_Santander.csv</default>
30
+ </files>
31
+ </santander>
32
+ </modules>
33
+ </translate>
34
+ <product>
35
+ <collection>
36
+ <attributes>
37
+ <!--<santanderactive />-->
38
+ <santanderpricemonth />
39
+ </attributes>
40
+ </collection>
41
+ </product>
42
+ </frontend>
43
+ <global>
44
+ <sales>
45
+ <order>
46
+ <statuses>
47
+ <santander_reject translate="label">
48
+ <label>Santander Reject</label>
49
+ </santander_reject>
50
+ <santander_accept translate="label">
51
+ <label>Santander Accept</label>
52
+ </santander_accept>
53
+ <santander_refer translate="label">
54
+ <label>Santander Refer</label>
55
+ </santander_refer>
56
+ </statuses>
57
+ <states>
58
+ <canceled>
59
+ <statuses>
60
+ <santander_reject />
61
+ </statuses>
62
+ </canceled>
63
+ <pending_payment>
64
+ <statuses>
65
+ <santander_refer />
66
+ </statuses>
67
+ </pending_payment>
68
+ <processing>
69
+ <statuses>
70
+ <santander_accept />
71
+ </statuses>
72
+ </processing>
73
+ </states>
74
+ </order>
75
+ </sales>
76
+ <helpers>
77
+ <santander>
78
+ <class>Indiegroup_Santander_Helper</class>
79
+ </santander>
80
+ </helpers>
81
+ <blocks>
82
+ <santander>
83
+ <class>Indiegroup_Santander_Block</class>
84
+ </santander>
85
+ </blocks>
86
+ <models>
87
+ <santander>
88
+ <class>Indiegroup_Santander_Model</class>
89
+ <resourceModel>santander_mysql4</resourceModel>
90
+ </santander>
91
+ </models>
92
+ <resources>
93
+ <salesattribute1380031596_setup>
94
+ <setup>
95
+ <module>Indiegroup_Santander</module>
96
+ <class>Mage_Sales_Model_Mysql4_Setup</class>
97
+ </setup>
98
+ <connection>
99
+ <use>core_setup</use>
100
+ </connection>
101
+ </salesattribute1380031596_setup>
102
+ <salesattribute1380031596_write>
103
+ <connection>
104
+ <use>core_write</use>
105
+ </connection>
106
+ </salesattribute1380031596_write>
107
+ <salesattribute1380031596_read>
108
+ <connection>
109
+ <use>core_read</use>
110
+ </connection>
111
+ </salesattribute1380031596_read>
112
+ <productattribute_setup>
113
+ <setup>
114
+ <module>Indiegroup_Santander</module>
115
+ <class>Mage_Sales_Model_Mysql4_Setup</class>
116
+ </setup>
117
+ <connection>
118
+ <use>core_setup</use>
119
+ </connection>
120
+ </productattribute_setup>
121
+ <productattribute_write>
122
+ <connection>
123
+ <use>core_write</use>
124
+ </connection>
125
+ </productattribute_write>
126
+ <productattribute_read>
127
+ <connection>
128
+ <use>core_read</use>
129
+ </connection>
130
+ </productattribute_read>
131
+ <customerattribute_setup>
132
+ <setup>
133
+ <module>Indiegroup_Santander</module>
134
+ <class>Mage_Customer_Model_Entity_Setup</class>
135
+ </setup>
136
+ <connection>
137
+ <use>core_setup</use>
138
+ </connection>
139
+ </customerattribute_setup>
140
+ <customerattribute_write>
141
+ <connection>
142
+ <use>core_write</use>
143
+ </connection>
144
+ </customerattribute_write>
145
+ <customerattribute_read>
146
+ <connection>
147
+ <use>core_read</use>
148
+ </connection>
149
+ </customerattribute_read>
150
+ <order_status_setup>
151
+ <setup>
152
+ <module>Indiegroup_Santander</module>
153
+ </setup>
154
+ </order_status_setup>
155
+ </resources>
156
+ <events>
157
+ <catalog_product_save_after>
158
+ <observers>
159
+ <santander>
160
+ <type>singleton</type>
161
+ <class>santander/observer</class>
162
+ <method>catalog_product_save_after</method>
163
+ </santander>
164
+ </observers>
165
+ </catalog_product_save_after>
166
+ <sales_order_payment_cancel>
167
+ <observers>
168
+ <santander>
169
+ <type>singleton</type>
170
+ <class>santander/observer</class>
171
+ <method>sales_order_payment_cancel</method>
172
+ </santander>
173
+ </observers>
174
+ </sales_order_payment_cancel>
175
+ <sales_order_shipment_save_after>
176
+ <observers>
177
+ <santander>
178
+ <type>singleton</type>
179
+ <class>santander/observer</class>
180
+ <method>sales_order_shipment_save_after</method>
181
+ </santander>
182
+ </observers>
183
+ </sales_order_shipment_save_after>
184
+ </events>
185
+ </global>
186
+ <admin>
187
+ <routers>
188
+ <santander>
189
+ <use>admin</use>
190
+ <args>
191
+ <module>Indiegroup_Santander</module>
192
+ <frontName>santander</frontName>
193
+ </args>
194
+ </santander>
195
+ </routers>
196
+ </admin>
197
+ <adminhtml>
198
+ <menu>
199
+ <santander module="santander">
200
+ <title>Santander</title>
201
+ <sort_order>100</sort_order>
202
+ <children>
203
+ <santanderbackend module="santander">
204
+ <title>Santander</title>
205
+ <sort_order>0</sort_order>
206
+ <action>santander/adminhtml_santanderbackend</action>
207
+ </santanderbackend>
208
+ </children>
209
+ </santander>
210
+ </menu>
211
+ <acl>
212
+ <resources>
213
+ <all>
214
+ <title>Allow Everything</title>
215
+ </all>
216
+ <admin>
217
+ <children>
218
+ <santander translate="title" module="santander">
219
+ <title>Santander</title>
220
+ <sort_order>1000</sort_order>
221
+ <children>
222
+ <santanderbackend translate="title">
223
+ <title>Santander</title>
224
+ </santanderbackend>
225
+ </children>
226
+ </santander>
227
+ </children>
228
+ </admin>
229
+ </resources>
230
+ </acl>
231
+ <layout>
232
+ <updates>
233
+ <santander>
234
+ <file>santander.xml</file>
235
+ </santander>
236
+ </updates>
237
+ </layout>
238
+ </adminhtml>
239
+ <crontab>
240
+ <jobs>
241
+ <santander_cron>
242
+ <run>
243
+ <model>santander/cron::importSantanderPrices</model>
244
+ </run>
245
+ </santander_cron>
246
+ <santander_active>
247
+ <run>
248
+ <model>santander/cron::setAllProductsSantanderActive</model>
249
+ </run>
250
+ </santander_active>
251
+ </jobs>
252
+ </crontab>
253
+ <default>
254
+ <payment>
255
+ <santander_new>
256
+ <model>santander/standard</model>
257
+ <active>1</active>
258
+ <order_status>pending</order_status>
259
+ <title>Santander New Card</title>
260
+ <payment_action>sale</payment_action>
261
+ <allowspecific>0</allowspecific>
262
+ <sort_order>1</sort_order>
263
+ </santander_new>
264
+ <santander_recurring>
265
+ <model>santander/recurring</model>
266
+ <active>1</active>
267
+ <order_status>pending</order_status>
268
+ <title>Santander Recurring Card</title>
269
+ <payment_action>sale</payment_action>
270
+ <allowspecific>0</allowspecific>
271
+ <sort_order>1</sort_order>
272
+ </santander_recurring>
273
+ </payment>
274
+ </default>
275
+ </config>
app/code/local/Indiegroup/Santander/etc/system.xml ADDED
@@ -0,0 +1,330 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <tabs>
4
+ <indiegroup translate="label" module="santander">
5
+ <label>Indiegroup</label>
6
+ <sort_order>700</sort_order>
7
+ </indiegroup>
8
+ </tabs>
9
+ <sections>
10
+ <payment>
11
+ <groups>
12
+ <santander_new translate="label" module="santander">
13
+ <label>Santander Payment Module (New card)</label>
14
+ <sort_order>670</sort_order>
15
+ <show_in_default>1</show_in_default>
16
+ <show_in_website>1</show_in_website>
17
+ <show_in_store>0</show_in_store>
18
+ <fields>
19
+ <active translate="label">
20
+ <label>Enabled</label>
21
+ <frontend_type>select</frontend_type>
22
+ <source_model>adminhtml/system_config_source_yesno</source_model>
23
+ <sort_order>1</sort_order>
24
+ <show_in_default>1</show_in_default>
25
+ <show_in_website>1</show_in_website>
26
+ <show_in_store>0</show_in_store>
27
+ </active>
28
+ <order_status translate="label">
29
+ <label>New order status</label>
30
+ <frontend_type>select</frontend_type>
31
+ <source_model>adminhtml/system_config_source_order_status</source_model>
32
+ <sort_order>2</sort_order>
33
+ <show_in_default>1</show_in_default>
34
+ <show_in_website>1</show_in_website>
35
+ <show_in_store>0</show_in_store>
36
+ </order_status>
37
+ <title translate="label">
38
+ <label>Title</label>
39
+ <frontend_type>text</frontend_type>
40
+ <sort_order>3</sort_order>
41
+ <show_in_default>1</show_in_default>
42
+ <show_in_website>1</show_in_website>
43
+ <show_in_store>0</show_in_store>
44
+ </title>
45
+ <allowspecific translate="label">
46
+ <label>Payment Applicable From</label>
47
+ <frontend_type>select</frontend_type>
48
+ <sort_order>61</sort_order>
49
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
50
+ <show_in_default>1</show_in_default>
51
+ <show_in_website>1</show_in_website>
52
+ <show_in_store>0</show_in_store>
53
+ </allowspecific>
54
+ <specificcountry translate="label">
55
+ <label>Countries Payment Applicable From</label>
56
+ <frontend_type>multiselect</frontend_type>
57
+ <sort_order>70</sort_order>
58
+ <source_model>adminhtml/system_config_source_country</source_model>
59
+ <show_in_default>1</show_in_default>
60
+ <show_in_website>1</show_in_website>
61
+ <show_in_store>0</show_in_store>
62
+ <depends>
63
+ <allowspecific>1</allowspecific>
64
+ </depends>
65
+ </specificcountry>
66
+ <sort_order translate="label">
67
+ <label>Sort Order</label>
68
+ <frontend_type>text</frontend_type>
69
+ <sort_order>100</sort_order>
70
+ <show_in_default>1</show_in_default>
71
+ <show_in_website>1</show_in_website>
72
+ <show_in_store>0</show_in_store>
73
+ </sort_order>
74
+ </fields>
75
+ </santander_new>
76
+ <santander_recurring translate="label" module="santander">
77
+ <label>Santander Payment Module (Recurring)</label>
78
+ <sort_order>670</sort_order>
79
+ <show_in_default>1</show_in_default>
80
+ <show_in_website>1</show_in_website>
81
+ <show_in_store>0</show_in_store>
82
+ <fields>
83
+ <active translate="label">
84
+ <label>Enabled</label>
85
+ <frontend_type>select</frontend_type>
86
+ <source_model>adminhtml/system_config_source_yesno</source_model>
87
+ <sort_order>1</sort_order>
88
+ <show_in_default>1</show_in_default>
89
+ <show_in_website>1</show_in_website>
90
+ <show_in_store>0</show_in_store>
91
+ </active>
92
+ <order_status translate="label">
93
+ <label>New order status</label>
94
+ <frontend_type>select</frontend_type>
95
+ <source_model>adminhtml/system_config_source_order_status</source_model>
96
+ <sort_order>2</sort_order>
97
+ <show_in_default>1</show_in_default>
98
+ <show_in_website>1</show_in_website>
99
+ <show_in_store>0</show_in_store>
100
+ </order_status>
101
+ <title translate="label">
102
+ <label>Title</label>
103
+ <frontend_type>text</frontend_type>
104
+ <sort_order>3</sort_order>
105
+ <show_in_default>1</show_in_default>
106
+ <show_in_website>1</show_in_website>
107
+ <show_in_store>0</show_in_store>
108
+ </title>
109
+ <allowspecific translate="label">
110
+ <label>Payment Applicable From</label>
111
+ <frontend_type>select</frontend_type>
112
+ <sort_order>61</sort_order>
113
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
114
+ <show_in_default>1</show_in_default>
115
+ <show_in_website>1</show_in_website>
116
+ <show_in_store>0</show_in_store>
117
+ </allowspecific>
118
+ <specificcountry translate="label">
119
+ <label>Countries Payment Applicable From</label>
120
+ <frontend_type>multiselect</frontend_type>
121
+ <sort_order>70</sort_order>
122
+ <source_model>adminhtml/system_config_source_country</source_model>
123
+ <show_in_default>1</show_in_default>
124
+ <show_in_website>1</show_in_website>
125
+ <show_in_store>0</show_in_store>
126
+ <depends>
127
+ <allowspecific>1</allowspecific>
128
+ </depends>
129
+ </specificcountry>
130
+ <sort_order translate="label">
131
+ <label>Sort Order</label>
132
+ <frontend_type>text</frontend_type>
133
+ <sort_order>100</sort_order>
134
+ <show_in_default>1</show_in_default>
135
+ <show_in_website>1</show_in_website>
136
+ <show_in_store>0</show_in_store>
137
+ </sort_order>
138
+ </fields>
139
+ </santander_recurring>
140
+ </groups>
141
+ </payment>
142
+ <santander translate="label" module="santander">
143
+ <label>Santander</label>
144
+ <tab>indiegroup</tab>
145
+ <frontend_type>text</frontend_type>
146
+ <sort_order>200</sort_order>
147
+ <show_in_default>1</show_in_default>
148
+ <show_in_website>1</show_in_website>
149
+ <show_in_store>1</show_in_store>
150
+ <groups>
151
+ <general translate="label">
152
+ <label>General</label>
153
+ <frontend_type>text</frontend_type>
154
+ <sort_order>0</sort_order>
155
+ <show_in_default>1</show_in_default>
156
+ <show_in_website>1</show_in_website>
157
+ <show_in_store>1</show_in_store>
158
+ <fields>
159
+ <active translate="label">
160
+ <label>Active</label>
161
+ <frontend_type>select</frontend_type>
162
+ <source_model>adminhtml/system_config_source_yesno</source_model>
163
+ <sort_order>0</sort_order>
164
+ <show_in_default>1</show_in_default>
165
+ <show_in_website>1</show_in_website>
166
+ <show_in_store>1</show_in_store>
167
+ </active>
168
+ <wsdl translate="label">
169
+ <label>Prefill WSDL</label>
170
+ <frontend_type>text</frontend_type>
171
+ <sort_order>1</sort_order>
172
+ <show_in_default>1</show_in_default>
173
+ <show_in_website>1</show_in_website>
174
+ <show_in_store>1</show_in_store>
175
+ </wsdl>
176
+ <wsdl_transaction translate="label">
177
+ <label>Transaction WSDL</label>
178
+ <frontend_type>text</frontend_type>
179
+ <sort_order>2</sort_order>
180
+ <show_in_default>1</show_in_default>
181
+ <show_in_website>1</show_in_website>
182
+ <show_in_store>1</show_in_store>
183
+ </wsdl_transaction>
184
+ <calculator_url translate="label">
185
+ <label>Calculator URL</label>
186
+ <frontend_type>text</frontend_type>
187
+ <sort_order>3</sort_order>
188
+ <show_in_default>1</show_in_default>
189
+ <show_in_website>1</show_in_website>
190
+ <show_in_store>1</show_in_store>
191
+ </calculator_url>
192
+ <custom_verm>
193
+ <label>Custom vermeldingen</label>
194
+ <frontend_type>text</frontend_type>
195
+ <sort_order>5</sort_order>
196
+ <show_in_default>1</show_in_default>
197
+ <show_in_website>1</show_in_website>
198
+ <show_in_store>1</show_in_store>
199
+ <validate>required-entry</validate>
200
+ </custom_verm>
201
+ <prijs_maand>
202
+ <label>Toon prijs per maand</label>
203
+ <frontend_type>select</frontend_type>
204
+ <source_model>adminhtml/system_config_source_yesno</source_model>
205
+ <sort_order>4</sort_order>
206
+ <show_in_default>1</show_in_default>
207
+ <show_in_website>1</show_in_website>
208
+ <show_in_store>1</show_in_store>
209
+ <validate>required-entry</validate>
210
+ </prijs_maand>
211
+ <kredietmakelaar>
212
+ <label>Kredietmakelaar</label>
213
+ <frontend_type>text</frontend_type>
214
+ <sort_order>6</sort_order>
215
+ <show_in_default>1</show_in_default>
216
+ <show_in_website>1</show_in_website>
217
+ <show_in_store>1</show_in_store>
218
+ <validate>required-entry</validate>
219
+ </kredietmakelaar>
220
+ <cron_email>
221
+ <label>Send Cron E-mail To</label>
222
+ <frontend_type>text</frontend_type>
223
+ <sort_order>7</sort_order>
224
+ <show_in_default>1</show_in_default>
225
+ <show_in_website>1</show_in_website>
226
+ <show_in_store>1</show_in_store>
227
+ </cron_email>
228
+ <cron_name>
229
+ <label>Send Cron E-mail To Name</label>
230
+ <frontend_type>text</frontend_type>
231
+ <sort_order>8</sort_order>
232
+ <show_in_default>1</show_in_default>
233
+ <show_in_website>1</show_in_website>
234
+ <show_in_store>1</show_in_store>
235
+ </cron_name>
236
+ <susername>
237
+ <label>Santander User Name</label>
238
+ <frontend_type>text</frontend_type>
239
+ <sort_order>9</sort_order>
240
+ <show_in_default>1</show_in_default>
241
+ <show_in_website>1</show_in_website>
242
+ <show_in_store>1</show_in_store>
243
+ </susername>
244
+ <spassword>
245
+ <label>Santander Pass word</label>
246
+ <frontend_type>password</frontend_type>
247
+ <sort_order>10</sort_order>
248
+ <show_in_default>1</show_in_default>
249
+ <show_in_website>1</show_in_website>
250
+ <show_in_store>1</show_in_store>
251
+ </spassword>
252
+ <topbanner>
253
+ <label>Top Banner</label>
254
+ <frontend_type>image</frontend_type>
255
+ <backend_model>adminhtml/system_config_backend_image</backend_model>
256
+ <upload_dir config="system/filesystem/media" scope_info="1">theme</upload_dir> <!-- would upload into media/uploaddir -->
257
+ <base_url type="media" scope_info="1">theme</base_url> <!-- same as previous line -->
258
+ <sort_order>11</sort_order>
259
+ <show_in_default>1</show_in_default>
260
+ <show_in_website>1</show_in_website>
261
+ <show_in_store>1</show_in_store>
262
+ </topbanner>
263
+ <bottombanner>
264
+ <label>Bottom Banner</label>
265
+ <frontend_type>image</frontend_type>
266
+ <backend_model>adminhtml/system_config_backend_image</backend_model>
267
+ <upload_dir config="system/filesystem/media" scope_info="1">theme</upload_dir> <!-- would upload into media/uploaddir -->
268
+ <base_url type="media" scope_info="1">theme</base_url> <!-- same as previous line -->
269
+ <sort_order>12</sort_order>
270
+ <show_in_default>1</show_in_default>
271
+ <show_in_website>1</show_in_website>
272
+ <show_in_store>1</show_in_store>
273
+ </bottombanner>
274
+ <css_url>
275
+ <label>CSS URL (https)</label>
276
+ <frontend_type>text</frontend_type>
277
+ <sort_order>13</sort_order>
278
+ <show_in_default>1</show_in_default>
279
+ <show_in_website>1</show_in_website>
280
+ <show_in_store>1</show_in_store>
281
+ </css_url>
282
+ </fields>
283
+ </general>
284
+ <errors>
285
+ <label>Send Errors</label>
286
+ <frontend_type>text</frontend_type>
287
+ <sort_order>1</sort_order>
288
+ <show_in_default>1</show_in_default>
289
+ <show_in_website>1</show_in_website>
290
+ <show_in_store>1</show_in_store>
291
+ <fields>
292
+ <send_to_name translate="label">
293
+ <label>To Name</label>
294
+ <frontend_type>text</frontend_type>
295
+ <sort_order>0</sort_order>
296
+ <show_in_default>1</show_in_default>
297
+ <show_in_website>1</show_in_website>
298
+ <show_in_store>1</show_in_store>
299
+ </send_to_name>
300
+ <send_to_email translate="label">
301
+ <label>To Email</label>
302
+ <frontend_type>text</frontend_type>
303
+ <sort_order>0</sort_order>
304
+ <show_in_default>1</show_in_default>
305
+ <show_in_website>1</show_in_website>
306
+ <show_in_store>1</show_in_store>
307
+ </send_to_email>
308
+ <send_from_name translate="label">
309
+ <label>From Name</label>
310
+ <frontend_type>text</frontend_type>
311
+ <sort_order>0</sort_order>
312
+ <show_in_default>1</show_in_default>
313
+ <show_in_website>1</show_in_website>
314
+ <show_in_store>1</show_in_store>
315
+ </send_from_name>
316
+ <send_from_email translate="label">
317
+ <label>From Email</label>
318
+ <frontend_type>text</frontend_type>
319
+ <sort_order>0</sort_order>
320
+ <show_in_default>1</show_in_default>
321
+ <show_in_website>1</show_in_website>
322
+ <show_in_store>1</show_in_store>
323
+ </send_from_email>
324
+ </fields>
325
+ </errors>
326
+ </groups>
327
+ </santander>
328
+ </sections>
329
+ </config>
330
+
app/code/local/Indiegroup/Santander/sql/.DS_Store ADDED
Binary file
app/code/local/Indiegroup/Santander/sql/customerattribute_setup/mysql4-install-0.1.0.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $installer = $this;
3
+ $installer->startSetup();
4
+
5
+
6
+ $installer->addAttribute("customer", "rr_number", array(
7
+ "type" => "varchar",
8
+ "backend" => "",
9
+ "label" => "Rijksregister Nummer",
10
+ "input" => "text",
11
+ "source" => "",
12
+ "visible" => true,
13
+ "required" => false,
14
+ "default" => "",
15
+ "frontend" => "",
16
+ "unique" => false,
17
+ "note" => ""
18
+
19
+ ));
20
+
21
+ $attribute = Mage::getSingleton("eav/config")->getAttribute("customer", "rr_number");
22
+
23
+
24
+ $used_in_forms=array();
25
+
26
+ $used_in_forms[]="adminhtml_customer";
27
+ $used_in_forms[]="checkout_register";
28
+ $used_in_forms[]="customer_account_create";
29
+ $used_in_forms[]="customer_account_edit";
30
+ $used_in_forms[]="adminhtml_checkout";
31
+ $attribute->setData("used_in_forms", $used_in_forms)
32
+ ->setData("is_used_for_customer_segment", true)
33
+ ->setData("is_system", 0)
34
+ ->setData("is_user_defined", 1)
35
+ ->setData("is_visible", 1)
36
+ ->setData("sort_order", 100)
37
+ ;
38
+ $attribute->save();
39
+
40
+
41
+
42
+ $installer->endSetup();
43
+
app/code/local/Indiegroup/Santander/sql/order_status_setup/mysql4-install-0.1.0.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $installer = $this;
3
+ /**
4
+ * Prepare database for install
5
+ */
6
+ $installer->startSetup();
7
+
8
+ $status = Mage::getModel('sales/order_status');
9
+
10
+ $status->setStatus('santander_reject')->setLabel('Santander Rejected')
11
+ ->assignState(Mage_Sales_Model_Order::STATE_CANCELED) //for example, use any available existing state
12
+ ->save();
13
+
14
+ /**
15
+ * Prepare database after install
16
+ */
17
+ $installer->endSetup();
app/code/local/Indiegroup/Santander/sql/order_status_setup/mysql4-upgrade-0.1.0-0.2.0.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $installer = $this;
3
+ /**
4
+ * Prepare database for install
5
+ */
6
+ $installer->startSetup();
7
+
8
+ $status = Mage::getModel('sales/order_status');
9
+
10
+ $status->setStatus('santander_refer')->setLabel('Santander Refer')
11
+ ->assignState(Mage_Sales_Model_Order::STATE_PAYMENT_REVIEW) //for example, use any available existing state
12
+ ->save();
13
+
14
+ /**
15
+ * Prepare database after install
16
+ */
17
+ $installer->endSetup();
app/code/local/Indiegroup/Santander/sql/order_status_setup/mysql4-upgrade-0.2.0-0.3.0.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $installer = $this;
3
+ /**
4
+ * Prepare database for install
5
+ */
6
+ $installer->startSetup();
7
+
8
+ $status = Mage::getModel('sales/order_status');
9
+
10
+ $status->setStatus('santander_accept')->setLabel('Santander Accepted')
11
+ ->assignState(Mage_Sales_Model_Order::STATE_PROCESSING) //for example, use any available existing state
12
+ ->save();
13
+
14
+ /**
15
+ * Prepare database after install
16
+ */
17
+ $installer->endSetup();
app/code/local/Indiegroup/Santander/sql/productattribute_setup/.DS_Store ADDED
Binary file
app/code/local/Indiegroup/Santander/sql/productattribute_setup/mysql4-install-0.1.0.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+
5
+ $installer->startSetup();
6
+
7
+ $installer->addAttribute('catalog_product', 'santanderpricemonth', array(
8
+ 'type' => 'varchar',
9
+ 'backend' => '',
10
+ 'frontend' => '',
11
+ 'label' => 'Santander Price Per Month',
12
+ 'input' => 'text',
13
+ 'class' => '',
14
+ 'source' => '',
15
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
16
+ 'visible' => true,
17
+ 'required' => false,
18
+ 'user_defined' => false,
19
+ 'default' => '',
20
+ 'searchable' => false,
21
+ 'filterable' => false,
22
+ 'comparable' => false,
23
+ 'visible_on_front' => false,
24
+ 'unique' => false,
25
+ 'apply_to' => '',
26
+ 'is_configurable' => false,
27
+ ));
28
+
29
+ $installer->addAttribute('catalog_product', 'type_krediet', array(
30
+ 'type' => 'varchar',
31
+ 'backend' => '',
32
+ 'frontend' => '',
33
+ 'label' => 'Santander Type Krediet',
34
+ 'input' => 'select',
35
+ 'class' => '',
36
+ 'source' => '',
37
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
38
+ 'visible' => true,
39
+ 'required' => false,
40
+ 'user_defined' => false,
41
+ 'default' => '',
42
+ 'searchable' => false,
43
+ 'filterable' => false,
44
+ 'comparable' => false,
45
+ 'visible_on_front' => false,
46
+ 'unique' => false,
47
+ 'apply_to' => '',
48
+ 'is_configurable' => false,
49
+ 'option' => array (
50
+ 'values' => array(
51
+ 0 => 'Reclame met vermelding van rentevoet',
52
+ 1 => 'Reclame zonder vermelding van rentevoet',
53
+ 2 => 'Reclame voor promotionele kredieten',
54
+ )
55
+ ),
56
+ ));
57
+
58
+ $installer->endSetup();
app/code/local/Indiegroup/Santander/sql/productattribute_setup/mysql4-upgrade-0.1.0-0.2.0.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+
5
+ $installer->startSetup();
6
+
7
+ $attributeSetCollection = Mage::getResourceModel('eav/entity_attribute_set_collection')->load();
8
+ foreach ($attributeSetCollection as $id=>$attributeSet) {
9
+ $installer->addAttributeGroup('catalog_product' , $id , 'Santander');
10
+ }
11
+
12
+ $setup = new Mage_Eav_Model_Entity_Setup('core_setup');
13
+
14
+ $attributeSetCollection = Mage::getResourceModel('eav/entity_attribute_set_collection')->load();
15
+
16
+ foreach ($attributeSetCollection as $id=>$attributeSet) {
17
+ $attributeGroupId=$setup->getAttributeGroupId('catalog_product', $id, 'Santander');
18
+
19
+ $attributeId=$setup->getAttributeId('catalog_product', 'santanderpricemonth');
20
+ $attributeId2=$setup->getAttributeId('catalog_product', 'type_krediet');
21
+
22
+ $setup->addAttributeToSet($entityTypeId='catalog_product',$id, $attributeGroupId, $attributeId);
23
+ $setup->addAttributeToSet($entityTypeId='catalog_product',$id, $attributeGroupId, $attributeId2);
24
+ }
25
+
26
+ $installer->endSetup();
app/code/local/Indiegroup/Santander/sql/productattribute_setup/mysql4-upgrade-0.2.0-0.3.0.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+ $setup = new Mage_Eav_Model_Entity_Setup('core_setup');
6
+
7
+ if (!function_exists('updateAttribute')) {
8
+ function updateAttribute(Mage_Eav_Model_Entity_Setup $setup, $entityTypeId, $code, $key, $value)
9
+ {
10
+ $id = $setup->getAttribute($entityTypeId, $code, 'attribute_id');
11
+ $setup->updateAttribute($entityTypeId, $id, $key, $value);
12
+ }
13
+ }
14
+
15
+ updateAttribute($setup, 'catalog_product', 'santanderpricemonth', 'used_in_product_listing' ,'1');
16
+
17
+ $installer->endSetup();
app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-install-0.1.0.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->addAttribute("order", "santander_accept_status", array("type" => "varchar"));
7
+ $installer->addAttribute("order", "santander_full_reserved", array("type" => "int"));
8
+ $installer->endSetup();
9
+
app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.5.0-0.6.0.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->addAttribute("order", "santander_transaction_key", array("type" => "varchar"));
7
+ $installer->endSetup();
8
+
app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.6.0-0.7.0.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->addAttribute("order_item", "santander_transaction_key", array("type" => "varchar"));
7
+ $installer->endSetup();
app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.7.0-0.7.1.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->addAttribute("order_item", "santander_item_reserved", array("type" => "varchar"));
7
+ $installer->endSetup();
app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.7.1-0.7.2.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->addAttribute("order", "santander_shipping_transaction_key", array("type" => "varchar"));
7
+ $installer->endSetup();
8
+
app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.7.2-0.7.3.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->addAttribute("order", "santander_shipping_reserved", array("type" => "varchar"));
7
+ $installer->endSetup();
8
+
app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.7.3-0.7.4.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->addAttribute("order", "santander_card_number", array("type" => "varchar"));
7
+ $installer->addAttribute("order", "santander_rr_number", array("type" => "varchar"));
8
+ $installer->addAttribute("order", "santander_expdate", array("type" => "varchar"));
9
+ $installer->endSetup();
10
+
app/code/local/Indiegroup/Santander/sql/salesattribute1380031596_setup/mysql4-upgrade-0.7.4-0.7.5.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->addAttribute("order", "santander_purchased", array("type" => "int"));
7
+ $installer->endSetup();
8
+
app/design/adminhtml/default/default/layout/santander.xml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <santander_adminhtml_santanderbackend_index>
4
+ <reference name="content">
5
+ <block type="santander/adminhtml_santanderbackend" name="santanderbackend" template="santander/santanderbackend.phtml"/>
6
+ </reference>
7
+ </santander_adminhtml_santanderbackend_index>
8
+ </layout>
app/design/adminhtml/default/default/template/santander/santanderbackend.phtml ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <h1>Santander</h1>
2
+ <a href="<?php echo $this->getImportSantanderUrl(); ?>">Import Santander Prices</a><br />
app/design/adminhtml/default/default/template/santander/test.phtml ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <h1>Test Santander</h1>
2
+ <h3>Refer Post Request</h3>
3
+ <form method="POST" action="<?php echo Mage::getBaseUrl() . 'santander/payment/status/' ?>">
4
+ Reference Id: <input type="text" name="referenceId" value="" /><br />
5
+ Amount: <input type="text" name="amount" value="" /><br />
6
+ Postcode: <input type="text" name="pstocode" value="" /><br />
7
+ emailadres: <input type="text" name="emailaddress" value="" /><br />
8
+ acceptStatus: <input type="text" name="acceptStatus" value="" /><br />
9
+ userName: <input type="text" name="userName" value="0260904" /><br />
10
+ rrnumber: <input type="text" name="rrnumber" value="" /><br />
11
+ password: <input type="text" name="password" value="" /><br />
12
+ referenceNumber: <input type="text" name="referenceNumber" value="" /><br />
13
+ result: <input type="text" name="result" value="Refer" /><br />
14
+
15
+ Example:
16
+ <span>
17
+ referenceId=0810201303&amount=450.0&postcode=5060&emailaddress=&acceptStatus=1&userName=0023050&rrnumber=62070900311&password=&referenceNumber=0810201303&result=Refer</span>
18
+ <input type="submit" value="Submit" />
19
+ </form>
20
+ <h3>Reject Post Request</h3>
21
+ <form method="POST" action="<?php echo Mage::getBaseUrl() . 'santander/payment/status/' ?>">
22
+ Reference Id: <input type="text" name="referenceId" value="" /><br />
23
+ Amount: <input type="text" name="amount" value="" /><br />
24
+ Postcode: <input type="text" name="pstocode" value="" /><br />
25
+ emailadres: <input type="text" name="emailaddress" value="" /><br />
26
+ acceptStatus: <input type="text" name="acceptStatus" value="" /><br />
27
+ userName: <input type="text" name="userName" value="0260904" /><br />
28
+ rrnumber: <input type="text" name="rrnumber" value="" /><br />
29
+ password: <input type="text" name="password" value="" /><br />
30
+ referenceNumber: <input type="text" name="referenceNumber" value="" /><br />
31
+ result: <input type="text" name="result" value="Reject" /><br />
32
+
33
+ Example:
34
+ <span>
35
+ referenceId=0910201301&amount=995.0&postcode=4620&emailaddress=KATRIEN.DEMEULEMEESTER%40SANTANDER.BE&acceptStatus=1&userName=0023050&rrnumber=75070203079&password=&referenceNumber=0910201301&result=Reject</span>
36
+ <input type="submit" value="Submit" />
37
+ </form>
38
+ <h3>Accept (stage 1) Post Request</h3>
39
+ <form method="POST" action="<?php echo Mage::getBaseUrl() . 'santander/payment/status/' ?>">
40
+ expirationmonth: <input type="text" name="expirationmonth" value="" /><br />
41
+ Reference Id: <input type="text" name="referenceId" value="" /><br />
42
+ Amount: <input type="text" name="amount" value="" /><br />
43
+ Postcode: <input type="text" name="postcode" value="" /><br />
44
+ emailadres: <input type="text" name="emailaddress" value="" /><br />
45
+ acceptStatus: <input type="text" name="acceptStatus" value="" /><br />
46
+ expirationyear: <input type="text" name="expirationyear" value="" /><br />
47
+ userName: <input type="text" name="userName" value="0260904" /><br />
48
+ rrnumber: <input type="text" name="rrnumber" value="" /><br />
49
+ password: <input type="text" name="password" value="" /><br />
50
+ referenceNumber: <input type="text" name="referenceNumber" value="" /><br />
51
+ cardNumber: <input type="text" name="cardNumber" value="" /><br />
52
+ result: <input type="text" name="result" value="Accept" /><br />
53
+
54
+ Example:
55
+ <span>
56
+ expirationmonth=7&referenceId=0910201302&amount=995.0&postcode=1120&emailaddress=KATRIEN.DEMEULEMEESTER%40SANTANDER.BE&acceptStatus=1&expirationyear=2023&userName=0023050&rrnumber=69111515251&password=&referenceNumber=0910201302&cardNumber=5641883718970497&result=Accept</span>
57
+ <input type="submit" value="Submit" />
58
+ </form>
59
+ <h3>Accept Repeat Purchase Post Request</h3>
60
+ <form method="POST" action="<?php echo Mage::getBaseUrl() . 'santander/payment/status/' ?>">
61
+ expirationmonth: <input type="text" name="expirationmonth" value="" /><br />
62
+ goodsDescription: <input type="text" name="goodsDescription" value="" /><br />
63
+ password: <input type="text" name="password" value="" /><br />
64
+ referenceNumber: <input type="text" name="referenceNumber" value="" /><br />
65
+ expirationyear: <input type="text" name="expirationyear" value="" /><br />
66
+ Amount: <input type="text" name="amount" value="" /><br />
67
+ Reference Id: <input type="text" name="referenceId" value="" /><br />
68
+ actionType: <input type="text" name="actionType" value="" /><br />
69
+ userName: <input type="text" name="userName" value="0260904" /><br />
70
+ result: <input type="text" name="result" value="Accept" /><br />
71
+ entrytime: <input type="text" name="entrytime" value="" /><br />
72
+ transactionGroupKey: <input type="text" name="transactionGroupKey" value="" /><br />
73
+ cardNumber: <input type="text" name="cardNumber" value="" /><br />
74
+ rrnumber: <input type="text" name="rrnumber" value="" /><br />
75
+ emailadres: <input type="text" name="emailaddress" value="" /><br />
76
+ creditType: <input type="text" name="creditType" value="" /><br />
77
+ customerTransactionKey: <input type="text" name="customerTransactionKey" value="" /><br />
78
+ acceptStatus: <input type="text" name="acceptStatus" value="" /><br />
79
+ Postcode: <input type="text" name="postcode" value="" /><br />
80
+
81
+ Example:
82
+ <span>
83
+ expirationmonth=4&goodsDescription=&password=3011&referenceNumber=300040226&expirationyear=2016&amount=6.23&referenceId=300040226&actionType=0101&userName=0023011&result=Accept&entrytime=2013-0919+06A543A26&transactionGroupKey=&cardNumber=3400007814&rrnumber=57063012025&emailaddress=TEST1234ANDARE.COM&creditType=&customerTransactionKey=&acceptStatus=3&postcode=2460</span>
84
+ <input type="submit" value="Submit" />
85
+ </form>
app/design/frontend/base/default/layout/santander.xml ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <catalog_product_view>
4
+ <reference name="head">
5
+ <action method="addCss">
6
+ <stylesheet>css/santander.css</stylesheet>
7
+ </action>
8
+ <action method="addJs"><script>jquery/jquery-1.9.0.min.js</script></action>
9
+ <action method="addJs"><script>fancybox/jquery.fancybox.js</script></action>
10
+ <action method="addCss">
11
+ <stylesheet>css/jquery.fancybox.css</stylesheet>
12
+ </action>
13
+ <action method="addJs"><script>santander/santander.js</script></action>
14
+ </reference>
15
+ </catalog_product_view>
16
+ <santander_index_index>
17
+ <reference name="root">
18
+ <action method="setTemplate">
19
+ <template>page/1column.phtml</template>
20
+ </action>
21
+ </reference>
22
+ <reference name="content">
23
+ <block type="santander/index" name="santander_index" template="santander/index.phtml"/>
24
+ </reference>
25
+ </santander_index_index>
26
+ <PRODUCT_TYPE_simple>
27
+ <reference name="product.info.simple.extra">
28
+ <block type="santander/santanderprice" as="santanderproductview" template="santander/santanderprice.phtml" />
29
+ </reference>
30
+ </PRODUCT_TYPE_simple>
31
+ <PRODUCT_TYPE_configurable>
32
+ <reference name="product.info.configurable.extra">
33
+ <block type="santander/santanderprice" as="santanderproductview" template="santander/santanderprice.phtml" />
34
+ </reference>
35
+ </PRODUCT_TYPE_configurable>
36
+ <PRODUCT_TYPE_grouped>
37
+ <reference name="product.info.grouped.extra">
38
+ <block type="santander/santanderprice" as="santanderproductview" template="santander/santanderprice.phtml" />
39
+ </reference>
40
+ </PRODUCT_TYPE_grouped>
41
+ <PRODUCT_TYPE_bundle>
42
+ <reference name="product.info.options.wrapper.bottom">
43
+ <block type="santander/santanderprice" as="santanderproductview" template="santander/santanderprice.phtml" />
44
+ </reference>
45
+ </PRODUCT_TYPE_bundle>
46
+ <PRODUCT_TYPE_virtual>
47
+ <reference name="product.info.virtual.extra">
48
+ <block type="santander/santanderprice" as="santanderproductview" template="santander/santanderprice.phtml" />
49
+ </reference>
50
+ </PRODUCT_TYPE_virtual>
51
+ <!-- TODO: configurable/grouped and virtual + overzichtsprijzen etc... -->
52
+ </layout>
53
+
app/design/frontend/base/default/template/santander/.DS_Store ADDED
Binary file
app/design/frontend/base/default/template/santander/catalog/.DS_Store ADDED
Binary file
app/design/frontend/base/default/template/santander/catalog/product/.DS_Store ADDED
Binary file
app/design/frontend/base/default/template/santander/catalog/product/view/.DS_Store ADDED
Binary file
app/design/frontend/base/default/template/santander/index.phtml ADDED
@@ -0,0 +1 @@
 
1
+ Santander
app/design/frontend/base/default/template/santander/list.phtml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php $_product = $this->getProduct(); ?>
2
+ <?php if ($this->isActive() && $this->showPricePerMonth()): ?>
3
+ <?php if ($_product->getSpecialPrice()): ?>
4
+ <?php $price = $this->getPricePerMonth($_product); ?>
5
+ <?php else: ?>
6
+ <?php $price = $this->getPricePerMonth($_product); ?>
7
+ <?php endif; ?>
8
+ <div class="price-monthly">
9
+ <?php echo $this->__('Starting from: '); ?>
10
+ <?php echo $price ?>
11
+ <span class="text-monthly">
12
+ / <?php echo $this->__('month') ?>
13
+ </span>
14
+ </div>
15
+ <?php endif; ?>
app/design/frontend/base/default/template/santander/reclamepromo.phtml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <?php $_productId = $this->getRequest()->getParam('id'); ?>
2
+ <?php $santanderData = $this->getDataOfSantander($_productId); ?>
3
+ <?php echo $this->__('Tijdelijke, promotionele en in %s maal terug te betalen kredietopneming met debetrentevoet = 0,00&#37; (JKP 0&#37;)* binnen een betalende kredietopening **.', (string) $santanderData->calcTerm); ?>
4
+ <?php echo $this->__('Enkel geldig op de contante prijs van %s aangekocht vanaf %s tot en met %s.', (string) $santanderData->calcAmount, (string) $santanderData->calcBeginDateApplicationValid , (string) $santanderData->calcBeginDateApplicationValid); ?>
5
+ <?php echo $this->__('* Kredietvorm: kredietopening met modaliteit JKP 0&#37; binnen een betalende kredietopening** onder voorbehoud van aanvaarding van uw kredietaanvraag door Santander Consumer Finance Benelux B.V., kredietgever, Belgisch bijkantoor te Guldensporenpark 81, 9820 Merelbeke met maatschappelijke zetel te Winthontlaan 171, NL-3526 KV Utrecht.<br />'); ?>
6
+ <?php echo $this->__('Kredietbemiddelaar (kredietmakelaar) : %s', Mage::getStoreConfig('santander/general/kredietmakelaar')); ?>
7
+ <?php echo $this->__('** Betalende kredietopening: Jaarlijks kostenpercentage (JKP) 14,44&#37; (variabele debetrentevoet 13,08&#37;), waarvan 0,10&#37;/maand kaartkosten, voor een kredietopening t.e.m. 1.250 EUR. Voorbeeld: Voor een onmiddellijk en eenmalig gebruik van het totale bedrag van de kredietopening van 1.250 EUR, bedraagt de theoretische terugbetalingstermijn 32 maanden.'); ?>
app/design/frontend/base/default/template/santander/reclamerentevoet.phtml ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php echo $this->__('* Kredietvorm: kredietopening onder voorbehoud van aanvaarding van uw kredietaanvraag door Santander Consumer Finance Benelux B.V., kredietgever, Belgisch bijkantoor te Guldensporenpark 81, 9820 Merelbeke met maatschappelijke zetel te Winthontlaan 171, NL-3526 KV Utrecht.<br />'); ?>
2
+ <?php echo $this->__('Kredietbemiddelaar (kredietmakelaar) : %s', Mage::getStoreConfig('santander/general/kredietmakelaar')); ?>
3
+ <br>
4
+ <?php echo $this->__('Jaarlijks kostenpercentage (JKP) 14,44&#37; (variabele debetrentevoet 13,08&#37;), waarvan 0,10&#37;/maand kaartkosten, voor een kredietopening t.e.m. 1.250 EUR. Voorbeeld: Voor een onmiddellijk en eenmalig gebruik van het totale bedrag van de kredietopening van 1.250 EUR, bedraagt de theoretische terugbetalingstermijn 32 maanden.'); ?>
app/design/frontend/base/default/template/santander/redirect.phtml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $sid = $this->getRequest()->getParam('sid');
3
+ $recurring = $this->getRequest()->getParam('recurring');
4
+ ?>
5
+ <?php if($recurring): ?>
6
+ <form name="santanderform" method="post" action="https://uat.santander.be/BE_CONS_OFT_WEB/pages/nl/form.jsp?<?php echo $sid; ?>">
7
+ <input type="hidden" name="orderid" value="<?php // echo $orderId; ?>">
8
+ <input type="hidden" name="grandtotal" value="<?php // echo $_order->getBaseGrandTotal(); ?>">
9
+ </form>
10
+ <?php else: ?>
11
+ <form name="santanderform" method="post" action="https://uat.santander.be/BE_CONS_OFT_WEB/pages/nl/form2.jsp?<?php echo $sid; ?>">
12
+ <input type="hidden" name="orderid" value="<?php // echo $orderId; ?>">
13
+ <input type="hidden" name="grandtotal" value="<?php // echo $_order->getBaseGrandTotal(); ?>">
14
+ </form>
15
+ <?php endif; ?>
16
+ <script type="text/javascript">
17
+ document.santanderform.submit();
18
+ </script>
app/design/frontend/base/default/template/santander/santanderprice.phtml ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php $_product = $this->getProduct() ?>
2
+ <?php if($this->isActive() && $this->showPricePerMonth()) : ?>
3
+ <div class="monthly">
4
+ <span class="price-monthly">
5
+ <?php echo $this->__('Starting from: '); ?>
6
+ <?php if($_product->getSpecialPrice() == ""): ?>
7
+ <?php echo $this->getPricePerMonth($_product); ?>
8
+ <?php else: ?>
9
+ <?php echo $this->getPricePerMonth($_product); ?>
10
+ <?php endif; ?>
11
+ </span>
12
+ <span class="text-monthly">
13
+ / <?php echo $this->__('month') ?>
14
+ </span>
15
+ </div>
16
+ <?php if($_product->getTypeId() != 'grouped' && $_product->getTypeId() != 'bundle'): ?>
17
+ <div class="repayment">
18
+ <a href="#santander_information" id="repayment" ><?php echo $this->__('Repayment Overview'); ?></a>
19
+ </div>
20
+
21
+ <div style="display:none">
22
+ <div id="santander_information">
23
+
24
+ <?php
25
+ if($_product->getSpecialPrice() == ""):
26
+ $data = $this->getDataOfSantander(round($_product->getPrice(), 2));
27
+ else:
28
+ $data = $this->getDataOfSantander(round($_product->getSpecialPrice(), 2));
29
+ endif;
30
+ $totalPrice = Mage::helper('core')->currency(round((float)$data->calcAmount, 2));
31
+ $ranges = $data->ranges;
32
+ ?>
33
+ <?php echo $this->__('Repayment for a onetime recording of %s', $totalPrice); ?>
34
+ <table>
35
+ <thead>
36
+ <tr>
37
+ <td style="width:200px;"><?php echo $this->__('Period'); ?></td>
38
+ <td><?php echo $this->__('Amount'); ?></td>
39
+ </tr>
40
+ </thead>
41
+ <tbody>
42
+ <?php foreach($ranges->range as $range): ?>
43
+ <tr>
44
+ <td>
45
+ <?php echo $this->__('From month %s to month %s', $range->start, ((int)$range->end + 1)); ?>
46
+ </td>
47
+ <td>
48
+ <?php echo $range->installment; ?>
49
+ </td>
50
+ </tr>
51
+ <?php endforeach; ?>
52
+ </tbody>
53
+ </table>
54
+ <p>
55
+ <?php echo $this->getLegalNotices(); ?>
56
+ <br />
57
+ <?php echo $this->__(Mage::getStoreConfig('santander/general/custom_verm')); ?>
58
+ </p>
59
+ </div>
60
+ </div>
61
+ <?php endif; ?>
62
+ <?php endif; ?>
app/design/frontend/base/default/template/santander/tax/grandtotal.phtml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php if(Mage::helper('santander')->isActive()): ?>
2
+ <tr>
3
+ <td class="a-right" colspan="<?php echo $this->getColspan(); ?>">
4
+ <strong><?php echo $this->__('Price per month') ?></strong>
5
+ </td>
6
+ <td class="a-right">
7
+ <strong><?php echo Mage::helper('core')->currency(round(Mage::helper('santander')->getPricePerMonth(round($this->getTotal(), 2)), 2)); ?></strong>
8
+ </td>
9
+ </tr>
10
+ <?php endif; ?>
app/etc/modules/Indiegroup_Santander.xml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Indiegroup_Santander>
5
+ <active>true</active>
6
+ <codePool>local</codePool>
7
+ <version>0.1.0</version>
8
+ </Indiegroup_Santander>
9
+ </modules>
10
+ </config>
app/locale/en_US/Indiegroup_Santander.csv ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Repayment Overview","Repayment Overview"
2
+ "Starting from: ","Starting from: "
3
+ "The import of Santander Prices has been added to the queue.","The import of Santander Prices has been added to the queue."
4
+ "An e-mail will be send to: %s once the indexation is finished","An e-mail will be send to: %s once the indexation is finished"
5
+ "Unable to save Cron expression","Unable to save Cron expression"
6
+ "Your payment has been rejected.","Your payment has been rejected."
7
+ "Your payment has been accepted.","Your payment has been accepted."
8
+ "Your payment is refered.","Your payment is refered."
9
+ "Something went wrong, please try again.","Something went wrong, please try again."
10
+ "Santander Reject","Santander Reject"
11
+ "Santander Accept","Santander Accept"
12
+ "Santander Refer","Santander Refer"
13
+ "Santander New Card","Santander New Card"
14
+ "Santander Recurring Card","Santander Recurring Card"
app/locale/fr_FR/Indiegroup_Santander.csv ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Repayment Overview","Tableau d’amortissement"
2
+ "Starting from: ","À partir de: "
3
+ "The import of Santander Prices has been added to the queue.","L’importation des prix Santander a été ajouté à la file d’attente."
4
+ "An e-mail will be send to: %s once the indexation is finished","Un e-mail sera envoyé à: %s lorsque l’indexation est terminée."
5
+ "Unable to save Cron expression","Impossible d’enregistrer Cron expression."
6
+ "Your payment has been rejected.","Votre paiement est refusé."
7
+ "Your payment has been accepted.","Votre paiement est accepté."
8
+ "Your payment is refered.","Votre paiement est en cours de traitement."
9
+ "Something went wrong, please try again.","Une erreur est survenue. Veuillez essayer de nouveau."
10
+ "Santander Reject","Santander rejet"
11
+ "Santander Accept","Santander acceptation"
12
+ "Santander Refer","Santander refer"
13
+ "Santander New Card","Santander nouvelle carte"
14
+ "Santander Recurring Card","Santander achat répété"
app/locale/nl_NL/Indiegroup_Santander.csv ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Repayment Overview","Aflossingsoverzicht"
2
+ "Starting from: ","Vanaf: "
3
+ "The import of Santander Prices has been added to the queue.","De import van de Santander prijzen werd toegevoegd aan de wachtrij."
4
+ "An e-mail will be send to: %s once the indexation is finished","Er wordt een e-mail verstuurd naar: %s wanneer de indexatie voltooid is."
5
+ "Unable to save Cron expression","Fout bij het opslaan van de Cron expressie"
6
+ "Your payment has been rejected.","Uw betaling werd geweigerd."
7
+ "Your payment has been accepted.","Uw betaling werd aanvaard."
8
+ "Your payment is refered.","Uw betaling is momenteel in behandeling."
9
+ "Something went wrong, please try again.","Er is een fout opgetreden, gelieve opnieuw te proberen."
10
+ "Santander Reject","Santander weigering"
11
+ "Santander Accept","Santander acceptatie"
12
+ "Santander Refer","Santander verwijzing"
13
+ "Santander New Card","Santander nieuwe kaart"
14
+ "Santander Recurring Card","Santander herhaalaankoop"
js/fancybox/jquery.fancybox.js ADDED
@@ -0,0 +1,2020 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * fancyBox - jQuery Plugin
3
+ * version: 2.1.5 (Fri, 14 Jun 2013)
4
+ * @requires jQuery v1.6 or later
5
+ *
6
+ * Examples at http://fancyapps.com/fancybox/
7
+ * License: www.fancyapps.com/fancybox/#license
8
+ *
9
+ * Copyright 2012 Janis Skarnelis - janis@fancyapps.com
10
+ *
11
+ */
12
+
13
+ (function (window, document, $, undefined) {
14
+ "use strict";
15
+
16
+ var H = $("html"),
17
+ W = $(window),
18
+ D = $(document),
19
+ F = $.fancybox = function () {
20
+ F.open.apply( this, arguments );
21
+ },
22
+ IE = navigator.userAgent.match(/msie/i),
23
+ didUpdate = null,
24
+ isTouch = document.createTouch !== undefined,
25
+
26
+ isQuery = function(obj) {
27
+ return obj && obj.hasOwnProperty && obj instanceof $;
28
+ },
29
+ isString = function(str) {
30
+ return str && $.type(str) === "string";
31
+ },
32
+ isPercentage = function(str) {
33
+ return isString(str) && str.indexOf('%') > 0;
34
+ },
35
+ isScrollable = function(el) {
36
+ return (el && !(el.style.overflow && el.style.overflow === 'hidden') && ((el.clientWidth && el.scrollWidth > el.clientWidth) || (el.clientHeight && el.scrollHeight > el.clientHeight)));
37
+ },
38
+ getScalar = function(orig, dim) {
39
+ var value = parseInt(orig, 10) || 0;
40
+
41
+ if (dim && isPercentage(orig)) {
42
+ value = F.getViewport()[ dim ] / 100 * value;
43
+ }
44
+
45
+ return Math.ceil(value);
46
+ },
47
+ getValue = function(value, dim) {
48
+ return getScalar(value, dim) + 'px';
49
+ };
50
+
51
+ $.extend(F, {
52
+ // The current version of fancyBox
53
+ version: '2.1.5',
54
+
55
+ defaults: {
56
+ padding : 15,
57
+ margin : 20,
58
+
59
+ width : 800,
60
+ height : 600,
61
+ minWidth : 100,
62
+ minHeight : 100,
63
+ maxWidth : 9999,
64
+ maxHeight : 9999,
65
+ pixelRatio: 1, // Set to 2 for retina display support
66
+
67
+ autoSize : true,
68
+ autoHeight : false,
69
+ autoWidth : false,
70
+
71
+ autoResize : true,
72
+ autoCenter : !isTouch,
73
+ fitToView : true,
74
+ aspectRatio : false,
75
+ topRatio : 0.5,
76
+ leftRatio : 0.5,
77
+
78
+ scrolling : 'auto', // 'auto', 'yes' or 'no'
79
+ wrapCSS : '',
80
+
81
+ arrows : true,
82
+ closeBtn : true,
83
+ closeClick : false,
84
+ nextClick : false,
85
+ mouseWheel : true,
86
+ autoPlay : false,
87
+ playSpeed : 3000,
88
+ preload : 3,
89
+ modal : false,
90
+ loop : true,
91
+
92
+ ajax : {
93
+ dataType : 'html',
94
+ headers : { 'X-fancyBox': true }
95
+ },
96
+ iframe : {
97
+ scrolling : 'auto',
98
+ preload : true
99
+ },
100
+ swf : {
101
+ wmode: 'transparent',
102
+ allowfullscreen : 'true',
103
+ allowscriptaccess : 'always'
104
+ },
105
+
106
+ keys : {
107
+ next : {
108
+ 13 : 'left', // enter
109
+ 34 : 'up', // page down
110
+ 39 : 'left', // right arrow
111
+ 40 : 'up' // down arrow
112
+ },
113
+ prev : {
114
+ 8 : 'right', // backspace
115
+ 33 : 'down', // page up
116
+ 37 : 'right', // left arrow
117
+ 38 : 'down' // up arrow
118
+ },
119
+ close : [27], // escape key
120
+ play : [32], // space - start/stop slideshow
121
+ toggle : [70] // letter "f" - toggle fullscreen
122
+ },
123
+
124
+ direction : {
125
+ next : 'left',
126
+ prev : 'right'
127
+ },
128
+
129
+ scrollOutside : true,
130
+
131
+ // Override some properties
132
+ index : 0,
133
+ type : null,
134
+ href : null,
135
+ content : null,
136
+ title : null,
137
+
138
+ // HTML templates
139
+ tpl: {
140
+ wrap : '<div class="fancybox-wrap" tabIndex="-1"><div class="fancybox-skin"><div class="fancybox-outer"><div class="fancybox-inner"></div></div></div></div>',
141
+ image : '<img class="fancybox-image" src="{href}" alt="" />',
142
+ iframe : '<iframe id="fancybox-frame{rnd}" name="fancybox-frame{rnd}" class="fancybox-iframe" frameborder="0" vspace="0" hspace="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen' + (IE ? ' allowtransparency="true"' : '') + '></iframe>',
143
+ error : '<p class="fancybox-error">The requested content cannot be loaded.<br/>Please try again later.</p>',
144
+ closeBtn : '<a title="Close" class="fancybox-item fancybox-close" href="javascript:;"></a>',
145
+ next : '<a title="Next" class="fancybox-nav fancybox-next" href="javascript:;"><span></span></a>',
146
+ prev : '<a title="Previous" class="fancybox-nav fancybox-prev" href="javascript:;"><span></span></a>'
147
+ },
148
+
149
+ // Properties for each animation type
150
+ // Opening fancyBox
151
+ openEffect : 'fade', // 'elastic', 'fade' or 'none'
152
+ openSpeed : 250,
153
+ openEasing : 'swing',
154
+ openOpacity : true,
155
+ openMethod : 'zoomIn',
156
+
157
+ // Closing fancyBox
158
+ closeEffect : 'fade', // 'elastic', 'fade' or 'none'
159
+ closeSpeed : 250,
160
+ closeEasing : 'swing',
161
+ closeOpacity : true,
162
+ closeMethod : 'zoomOut',
163
+
164
+ // Changing next gallery item
165
+ nextEffect : 'elastic', // 'elastic', 'fade' or 'none'
166
+ nextSpeed : 250,
167
+ nextEasing : 'swing',
168
+ nextMethod : 'changeIn',
169
+
170
+ // Changing previous gallery item
171
+ prevEffect : 'elastic', // 'elastic', 'fade' or 'none'
172
+ prevSpeed : 250,
173
+ prevEasing : 'swing',
174
+ prevMethod : 'changeOut',
175
+
176
+ // Enable default helpers
177
+ helpers : {
178
+ overlay : true,
179
+ title : true
180
+ },
181
+
182
+ // Callbacks
183
+ onCancel : $.noop, // If canceling
184
+ beforeLoad : $.noop, // Before loading
185
+ afterLoad : $.noop, // After loading
186
+ beforeShow : $.noop, // Before changing in current item
187
+ afterShow : $.noop, // After opening
188
+ beforeChange : $.noop, // Before changing gallery item
189
+ beforeClose : $.noop, // Before closing
190
+ afterClose : $.noop // After closing
191
+ },
192
+
193
+ //Current state
194
+ group : {}, // Selected group
195
+ opts : {}, // Group options
196
+ previous : null, // Previous element
197
+ coming : null, // Element being loaded
198
+ current : null, // Currently loaded element
199
+ isActive : false, // Is activated
200
+ isOpen : false, // Is currently open
201
+ isOpened : false, // Have been fully opened at least once
202
+
203
+ wrap : null,
204
+ skin : null,
205
+ outer : null,
206
+ inner : null,
207
+
208
+ player : {
209
+ timer : null,
210
+ isActive : false
211
+ },
212
+
213
+ // Loaders
214
+ ajaxLoad : null,
215
+ imgPreload : null,
216
+
217
+ // Some collections
218
+ transitions : {},
219
+ helpers : {},
220
+
221
+ /*
222
+ * Static methods
223
+ */
224
+
225
+ open: function (group, opts) {
226
+ if (!group) {
227
+ return;
228
+ }
229
+
230
+ if (!$.isPlainObject(opts)) {
231
+ opts = {};
232
+ }
233
+
234
+ // Close if already active
235
+ if (false === F.close(true)) {
236
+ return;
237
+ }
238
+
239
+ // Normalize group
240
+ if (!$.isArray(group)) {
241
+ group = isQuery(group) ? $(group).get() : [group];
242
+ }
243
+
244
+ // Recheck if the type of each element is `object` and set content type (image, ajax, etc)
245
+ $.each(group, function(i, element) {
246
+ var obj = {},
247
+ href,
248
+ title,
249
+ content,
250
+ type,
251
+ rez,
252
+ hrefParts,
253
+ selector;
254
+
255
+ if ($.type(element) === "object") {
256
+ // Check if is DOM element
257
+ if (element.nodeType) {
258
+ element = $(element);
259
+ }
260
+
261
+ if (isQuery(element)) {
262
+ obj = {
263
+ href : element.data('fancybox-href') || element.attr('href'),
264
+ title : element.data('fancybox-title') || element.attr('title'),
265
+ isDom : true,
266
+ element : element
267
+ };
268
+
269
+ if ($.metadata) {
270
+ $.extend(true, obj, element.metadata());
271
+ }
272
+
273
+ } else {
274
+ obj = element;
275
+ }
276
+ }
277
+
278
+ href = opts.href || obj.href || (isString(element) ? element : null);
279
+ title = opts.title !== undefined ? opts.title : obj.title || '';
280
+
281
+ content = opts.content || obj.content;
282
+ type = content ? 'html' : (opts.type || obj.type);
283
+
284
+ if (!type && obj.isDom) {
285
+ type = element.data('fancybox-type');
286
+
287
+ if (!type) {
288
+ rez = element.prop('class').match(/fancybox\.(\w+)/);
289
+ type = rez ? rez[1] : null;
290
+ }
291
+ }
292
+
293
+ if (isString(href)) {
294
+ // Try to guess the content type
295
+ if (!type) {
296
+ if (F.isImage(href)) {
297
+ type = 'image';
298
+
299
+ } else if (F.isSWF(href)) {
300
+ type = 'swf';
301
+
302
+ } else if (href.charAt(0) === '#') {
303
+ type = 'inline';
304
+
305
+ } else if (isString(element)) {
306
+ type = 'html';
307
+ content = element;
308
+ }
309
+ }
310
+
311
+ // Split url into two pieces with source url and content selector, e.g,
312
+ // "/mypage.html #my_id" will load "/mypage.html" and display element having id "my_id"
313
+ if (type === 'ajax') {
314
+ hrefParts = href.split(/\s+/, 2);
315
+ href = hrefParts.shift();
316
+ selector = hrefParts.shift();
317
+ }
318
+ }
319
+
320
+ if (!content) {
321
+ if (type === 'inline') {
322
+ if (href) {
323
+ content = $( isString(href) ? href.replace(/.*(?=#[^\s]+$)/, '') : href ); //strip for ie7
324
+
325
+ } else if (obj.isDom) {
326
+ content = element;
327
+ }
328
+
329
+ } else if (type === 'html') {
330
+ content = href;
331
+
332
+ } else if (!type && !href && obj.isDom) {
333
+ type = 'inline';
334
+ content = element;
335
+ }
336
+ }
337
+
338
+ $.extend(obj, {
339
+ href : href,
340
+ type : type,
341
+ content : content,
342
+ title : title,
343
+ selector : selector
344
+ });
345
+
346
+ group[ i ] = obj;
347
+ });
348
+
349
+ // Extend the defaults
350
+ F.opts = $.extend(true, {}, F.defaults, opts);
351
+
352
+ // All options are merged recursive except keys
353
+ if (opts.keys !== undefined) {
354
+ F.opts.keys = opts.keys ? $.extend({}, F.defaults.keys, opts.keys) : false;
355
+ }
356
+
357
+ F.group = group;
358
+
359
+ return F._start(F.opts.index);
360
+ },
361
+
362
+ // Cancel image loading or abort ajax request
363
+ cancel: function () {
364
+ var coming = F.coming;
365
+
366
+ if (!coming || false === F.trigger('onCancel')) {
367
+ return;
368
+ }
369
+
370
+ F.hideLoading();
371
+
372
+ if (F.ajaxLoad) {
373
+ F.ajaxLoad.abort();
374
+ }
375
+
376
+ F.ajaxLoad = null;
377
+
378
+ if (F.imgPreload) {
379
+ F.imgPreload.onload = F.imgPreload.onerror = null;
380
+ }
381
+
382
+ if (coming.wrap) {
383
+ coming.wrap.stop(true, true).trigger('onReset').remove();
384
+ }
385
+
386
+ F.coming = null;
387
+
388
+ // If the first item has been canceled, then clear everything
389
+ if (!F.current) {
390
+ F._afterZoomOut( coming );
391
+ }
392
+ },
393
+
394
+ // Start closing animation if is open; remove immediately if opening/closing
395
+ close: function (event) {
396
+ F.cancel();
397
+
398
+ if (false === F.trigger('beforeClose')) {
399
+ return;
400
+ }
401
+
402
+ F.unbindEvents();
403
+
404
+ if (!F.isActive) {
405
+ return;
406
+ }
407
+
408
+ if (!F.isOpen || event === true) {
409
+ $('.fancybox-wrap').stop(true).trigger('onReset').remove();
410
+
411
+ F._afterZoomOut();
412
+
413
+ } else {
414
+ F.isOpen = F.isOpened = false;
415
+ F.isClosing = true;
416
+
417
+ $('.fancybox-item, .fancybox-nav').remove();
418
+
419
+ F.wrap.stop(true, true).removeClass('fancybox-opened');
420
+
421
+ F.transitions[ F.current.closeMethod ]();
422
+ }
423
+ },
424
+
425
+ // Manage slideshow:
426
+ // $.fancybox.play(); - toggle slideshow
427
+ // $.fancybox.play( true ); - start
428
+ // $.fancybox.play( false ); - stop
429
+ play: function ( action ) {
430
+ var clear = function () {
431
+ clearTimeout(F.player.timer);
432
+ },
433
+ set = function () {
434
+ clear();
435
+
436
+ if (F.current && F.player.isActive) {
437
+ F.player.timer = setTimeout(F.next, F.current.playSpeed);
438
+ }
439
+ },
440
+ stop = function () {
441
+ clear();
442
+
443
+ D.unbind('.player');
444
+
445
+ F.player.isActive = false;
446
+
447
+ F.trigger('onPlayEnd');
448
+ },
449
+ start = function () {
450
+ if (F.current && (F.current.loop || F.current.index < F.group.length - 1)) {
451
+ F.player.isActive = true;
452
+
453
+ D.bind({
454
+ 'onCancel.player beforeClose.player' : stop,
455
+ 'onUpdate.player' : set,
456
+ 'beforeLoad.player' : clear
457
+ });
458
+
459
+ set();
460
+
461
+ F.trigger('onPlayStart');
462
+ }
463
+ };
464
+
465
+ if (action === true || (!F.player.isActive && action !== false)) {
466
+ start();
467
+ } else {
468
+ stop();
469
+ }
470
+ },
471
+
472
+ // Navigate to next gallery item
473
+ next: function ( direction ) {
474
+ var current = F.current;
475
+
476
+ if (current) {
477
+ if (!isString(direction)) {
478
+ direction = current.direction.next;
479
+ }
480
+
481
+ F.jumpto(current.index + 1, direction, 'next');
482
+ }
483
+ },
484
+
485
+ // Navigate to previous gallery item
486
+ prev: function ( direction ) {
487
+ var current = F.current;
488
+
489
+ if (current) {
490
+ if (!isString(direction)) {
491
+ direction = current.direction.prev;
492
+ }
493
+
494
+ F.jumpto(current.index - 1, direction, 'prev');
495
+ }
496
+ },
497
+
498
+ // Navigate to gallery item by index
499
+ jumpto: function ( index, direction, router ) {
500
+ var current = F.current;
501
+
502
+ if (!current) {
503
+ return;
504
+ }
505
+
506
+ index = getScalar(index);
507
+
508
+ F.direction = direction || current.direction[ (index >= current.index ? 'next' : 'prev') ];
509
+ F.router = router || 'jumpto';
510
+
511
+ if (current.loop) {
512
+ if (index < 0) {
513
+ index = current.group.length + (index % current.group.length);
514
+ }
515
+
516
+ index = index % current.group.length;
517
+ }
518
+
519
+ if (current.group[ index ] !== undefined) {
520
+ F.cancel();
521
+
522
+ F._start(index);
523
+ }
524
+ },
525
+
526
+ // Center inside viewport and toggle position type to fixed or absolute if needed
527
+ reposition: function (e, onlyAbsolute) {
528
+ var current = F.current,
529
+ wrap = current ? current.wrap : null,
530
+ pos;
531
+
532
+ if (wrap) {
533
+ pos = F._getPosition(onlyAbsolute);
534
+
535
+ if (e && e.type === 'scroll') {
536
+ delete pos.position;
537
+
538
+ wrap.stop(true, true).animate(pos, 200);
539
+
540
+ } else {
541
+ wrap.css(pos);
542
+
543
+ current.pos = $.extend({}, current.dim, pos);
544
+ }
545
+ }
546
+ },
547
+
548
+ update: function (e) {
549
+ var type = (e && e.type),
550
+ anyway = !type || type === 'orientationchange';
551
+
552
+ if (anyway) {
553
+ clearTimeout(didUpdate);
554
+
555
+ didUpdate = null;
556
+ }
557
+
558
+ if (!F.isOpen || didUpdate) {
559
+ return;
560
+ }
561
+
562
+ didUpdate = setTimeout(function() {
563
+ var current = F.current;
564
+
565
+ if (!current || F.isClosing) {
566
+ return;
567
+ }
568
+
569
+ F.wrap.removeClass('fancybox-tmp');
570
+
571
+ if (anyway || type === 'load' || (type === 'resize' && current.autoResize)) {
572
+ F._setDimension();
573
+ }
574
+
575
+ if (!(type === 'scroll' && current.canShrink)) {
576
+ F.reposition(e);
577
+ }
578
+
579
+ F.trigger('onUpdate');
580
+
581
+ didUpdate = null;
582
+
583
+ }, (anyway && !isTouch ? 0 : 300));
584
+ },
585
+
586
+ // Shrink content to fit inside viewport or restore if resized
587
+ toggle: function ( action ) {
588
+ if (F.isOpen) {
589
+ F.current.fitToView = $.type(action) === "boolean" ? action : !F.current.fitToView;
590
+
591
+ // Help browser to restore document dimensions
592
+ if (isTouch) {
593
+ F.wrap.removeAttr('style').addClass('fancybox-tmp');
594
+
595
+ F.trigger('onUpdate');
596
+ }
597
+
598
+ F.update();
599
+ }
600
+ },
601
+
602
+ hideLoading: function () {
603
+ D.unbind('.loading');
604
+
605
+ $('#fancybox-loading').remove();
606
+ },
607
+
608
+ showLoading: function () {
609
+ var el, viewport;
610
+
611
+ F.hideLoading();
612
+
613
+ el = $('<div id="fancybox-loading"><div></div></div>').click(F.cancel).appendTo('body');
614
+
615
+ // If user will press the escape-button, the request will be canceled
616
+ D.bind('keydown.loading', function(e) {
617
+ if ((e.which || e.keyCode) === 27) {
618
+ e.preventDefault();
619
+
620
+ F.cancel();
621
+ }
622
+ });
623
+
624
+ if (!F.defaults.fixed) {
625
+ viewport = F.getViewport();
626
+
627
+ el.css({
628
+ position : 'absolute',
629
+ top : (viewport.h * 0.5) + viewport.y,
630
+ left : (viewport.w * 0.5) + viewport.x
631
+ });
632
+ }
633
+ },
634
+
635
+ getViewport: function () {
636
+ var locked = (F.current && F.current.locked) || false,
637
+ rez = {
638
+ x: W.scrollLeft(),
639
+ y: W.scrollTop()
640
+ };
641
+
642
+ if (locked) {
643
+ rez.w = locked[0].clientWidth;
644
+ rez.h = locked[0].clientHeight;
645
+
646
+ } else {
647
+ // See http://bugs.jquery.com/ticket/6724
648
+ rez.w = isTouch && window.innerWidth ? window.innerWidth : W.width();
649
+ rez.h = isTouch && window.innerHeight ? window.innerHeight : W.height();
650
+ }
651
+
652
+ return rez;
653
+ },
654
+
655
+ // Unbind the keyboard / clicking actions
656
+ unbindEvents: function () {
657
+ if (F.wrap && isQuery(F.wrap)) {
658
+ F.wrap.unbind('.fb');
659
+ }
660
+
661
+ D.unbind('.fb');
662
+ W.unbind('.fb');
663
+ },
664
+
665
+ bindEvents: function () {
666
+ var current = F.current,
667
+ keys;
668
+
669
+ if (!current) {
670
+ return;
671
+ }
672
+
673
+ // Changing document height on iOS devices triggers a 'resize' event,
674
+ // that can change document height... repeating infinitely
675
+ W.bind('orientationchange.fb' + (isTouch ? '' : ' resize.fb') + (current.autoCenter && !current.locked ? ' scroll.fb' : ''), F.update);
676
+
677
+ keys = current.keys;
678
+
679
+ if (keys) {
680
+ D.bind('keydown.fb', function (e) {
681
+ var code = e.which || e.keyCode,
682
+ target = e.target || e.srcElement;
683
+
684
+ // Skip esc key if loading, because showLoading will cancel preloading
685
+ if (code === 27 && F.coming) {
686
+ return false;
687
+ }
688
+
689
+ // Ignore key combinations and key events within form elements
690
+ if (!e.ctrlKey && !e.altKey && !e.shiftKey && !e.metaKey && !(target && (target.type || $(target).is('[contenteditable]')))) {
691
+ $.each(keys, function(i, val) {
692
+ if (current.group.length > 1 && val[ code ] !== undefined) {
693
+ F[ i ]( val[ code ] );
694
+
695
+ e.preventDefault();
696
+ return false;
697
+ }
698
+
699
+ if ($.inArray(code, val) > -1) {
700
+ F[ i ] ();
701
+
702
+ e.preventDefault();
703
+ return false;
704
+ }
705
+ });
706
+ }
707
+ });
708
+ }
709
+
710
+ if ($.fn.mousewheel && current.mouseWheel) {
711
+ F.wrap.bind('mousewheel.fb', function (e, delta, deltaX, deltaY) {
712
+ var target = e.target || null,
713
+ parent = $(target),
714
+ canScroll = false;
715
+
716
+ while (parent.length) {
717
+ if (canScroll || parent.is('.fancybox-skin') || parent.is('.fancybox-wrap')) {
718
+ break;
719
+ }
720
+
721
+ canScroll = isScrollable( parent[0] );
722
+ parent = $(parent).parent();
723
+ }
724
+
725
+ if (delta !== 0 && !canScroll) {
726
+ if (F.group.length > 1 && !current.canShrink) {
727
+ if (deltaY > 0 || deltaX > 0) {
728
+ F.prev( deltaY > 0 ? 'down' : 'left' );
729
+
730
+ } else if (deltaY < 0 || deltaX < 0) {
731
+ F.next( deltaY < 0 ? 'up' : 'right' );
732
+ }
733
+
734
+ e.preventDefault();
735
+ }
736
+ }
737
+ });
738
+ }
739
+ },
740
+
741
+ trigger: function (event, o) {
742
+ var ret, obj = o || F.coming || F.current;
743
+
744
+ if (!obj) {
745
+ return;
746
+ }
747
+
748
+ if ($.isFunction( obj[event] )) {
749
+ ret = obj[event].apply(obj, Array.prototype.slice.call(arguments, 1));
750
+ }
751
+
752
+ if (ret === false) {
753
+ return false;
754
+ }
755
+
756
+ if (obj.helpers) {
757
+ $.each(obj.helpers, function (helper, opts) {
758
+ if (opts && F.helpers[helper] && $.isFunction(F.helpers[helper][event])) {
759
+ F.helpers[helper][event]($.extend(true, {}, F.helpers[helper].defaults, opts), obj);
760
+ }
761
+ });
762
+ }
763
+
764
+ D.trigger(event);
765
+ },
766
+
767
+ isImage: function (str) {
768
+ return isString(str) && str.match(/(^data:image\/.*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg)((\?|#).*)?$)/i);
769
+ },
770
+
771
+ isSWF: function (str) {
772
+ return isString(str) && str.match(/\.(swf)((\?|#).*)?$/i);
773
+ },
774
+
775
+ _start: function (index) {
776
+ var coming = {},
777
+ obj,
778
+ href,
779
+ type,
780
+ margin,
781
+ padding;
782
+
783
+ index = getScalar( index );
784
+ obj = F.group[ index ] || null;
785
+
786
+ if (!obj) {
787
+ return false;
788
+ }
789
+
790
+ coming = $.extend(true, {}, F.opts, obj);
791
+
792
+ // Convert margin and padding properties to array - top, right, bottom, left
793
+ margin = coming.margin;
794
+ padding = coming.padding;
795
+
796
+ if ($.type(margin) === 'number') {
797
+ coming.margin = [margin, margin, margin, margin];
798
+ }
799
+
800
+ if ($.type(padding) === 'number') {
801
+ coming.padding = [padding, padding, padding, padding];
802
+ }
803
+
804
+ // 'modal' propery is just a shortcut
805
+ if (coming.modal) {
806
+ $.extend(true, coming, {
807
+ closeBtn : false,
808
+ closeClick : false,
809
+ nextClick : false,
810
+ arrows : false,
811
+ mouseWheel : false,
812
+ keys : null,
813
+ helpers: {
814
+ overlay : {
815
+ closeClick : false
816
+ }
817
+ }
818
+ });
819
+ }
820
+
821
+ // 'autoSize' property is a shortcut, too
822
+ if (coming.autoSize) {
823
+ coming.autoWidth = coming.autoHeight = true;
824
+ }
825
+
826
+ if (coming.width === 'auto') {
827
+ coming.autoWidth = true;
828
+ }
829
+
830
+ if (coming.height === 'auto') {
831
+ coming.autoHeight = true;
832
+ }
833
+
834
+ /*
835
+ * Add reference to the group, so it`s possible to access from callbacks, example:
836
+ * afterLoad : function() {
837
+ * this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
838
+ * }
839
+ */
840
+
841
+ coming.group = F.group;
842
+ coming.index = index;
843
+
844
+ // Give a chance for callback or helpers to update coming item (type, title, etc)
845
+ F.coming = coming;
846
+
847
+ if (false === F.trigger('beforeLoad')) {
848
+ F.coming = null;
849
+
850
+ return;
851
+ }
852
+
853
+ type = coming.type;
854
+ href = coming.href;
855
+
856
+ if (!type) {
857
+ F.coming = null;
858
+
859
+ //If we can not determine content type then drop silently or display next/prev item if looping through gallery
860
+ if (F.current && F.router && F.router !== 'jumpto') {
861
+ F.current.index = index;
862
+
863
+ return F[ F.router ]( F.direction );
864
+ }
865
+
866
+ return false;
867
+ }
868
+
869
+ F.isActive = true;
870
+
871
+ if (type === 'image' || type === 'swf') {
872
+ coming.autoHeight = coming.autoWidth = false;
873
+ coming.scrolling = 'visible';
874
+ }
875
+
876
+ if (type === 'image') {
877
+ coming.aspectRatio = true;
878
+ }
879
+
880
+ if (type === 'iframe' && isTouch) {
881
+ coming.scrolling = 'scroll';
882
+ }
883
+
884
+ // Build the neccessary markup
885
+ coming.wrap = $(coming.tpl.wrap).addClass('fancybox-' + (isTouch ? 'mobile' : 'desktop') + ' fancybox-type-' + type + ' fancybox-tmp ' + coming.wrapCSS).appendTo( coming.parent || 'body' );
886
+
887
+ $.extend(coming, {
888
+ skin : $('.fancybox-skin', coming.wrap),
889
+ outer : $('.fancybox-outer', coming.wrap),
890
+ inner : $('.fancybox-inner', coming.wrap)
891
+ });
892
+
893
+ $.each(["Top", "Right", "Bottom", "Left"], function(i, v) {
894
+ coming.skin.css('padding' + v, getValue(coming.padding[ i ]));
895
+ });
896
+
897
+ F.trigger('onReady');
898
+
899
+ // Check before try to load; 'inline' and 'html' types need content, others - href
900
+ if (type === 'inline' || type === 'html') {
901
+ if (!coming.content || !coming.content.length) {
902
+ return F._error( 'content' );
903
+ }
904
+
905
+ } else if (!href) {
906
+ return F._error( 'href' );
907
+ }
908
+
909
+ if (type === 'image') {
910
+ F._loadImage();
911
+
912
+ } else if (type === 'ajax') {
913
+ F._loadAjax();
914
+
915
+ } else if (type === 'iframe') {
916
+ F._loadIframe();
917
+
918
+ } else {
919
+ F._afterLoad();
920
+ }
921
+ },
922
+
923
+ _error: function ( type ) {
924
+ $.extend(F.coming, {
925
+ type : 'html',
926
+ autoWidth : true,
927
+ autoHeight : true,
928
+ minWidth : 0,
929
+ minHeight : 0,
930
+ scrolling : 'no',
931
+ hasError : type,
932
+ content : F.coming.tpl.error
933
+ });
934
+
935
+ F._afterLoad();
936
+ },
937
+
938
+ _loadImage: function () {
939
+ // Reset preload image so it is later possible to check "complete" property
940
+ var img = F.imgPreload = new Image();
941
+
942
+ img.onload = function () {
943
+ this.onload = this.onerror = null;
944
+
945
+ F.coming.width = this.width / F.opts.pixelRatio;
946
+ F.coming.height = this.height / F.opts.pixelRatio;
947
+
948
+ F._afterLoad();
949
+ };
950
+
951
+ img.onerror = function () {
952
+ this.onload = this.onerror = null;
953
+
954
+ F._error( 'image' );
955
+ };
956
+
957
+ img.src = F.coming.href;
958
+
959
+ if (img.complete !== true) {
960
+ F.showLoading();
961
+ }
962
+ },
963
+
964
+ _loadAjax: function () {
965
+ var coming = F.coming;
966
+
967
+ F.showLoading();
968
+
969
+ F.ajaxLoad = $.ajax($.extend({}, coming.ajax, {
970
+ url: coming.href,
971
+ error: function (jqXHR, textStatus) {
972
+ if (F.coming && textStatus !== 'abort') {
973
+ F._error( 'ajax', jqXHR );
974
+
975
+ } else {
976
+ F.hideLoading();
977
+ }
978
+ },
979
+ success: function (data, textStatus) {
980
+ if (textStatus === 'success') {
981
+ coming.content = data;
982
+
983
+ F._afterLoad();
984
+ }
985
+ }
986
+ }));
987
+ },
988
+
989
+ _loadIframe: function() {
990
+ var coming = F.coming,
991
+ iframe = $(coming.tpl.iframe.replace(/\{rnd\}/g, new Date().getTime()))
992
+ .attr('scrolling', isTouch ? 'auto' : coming.iframe.scrolling)
993
+ .attr('src', coming.href);
994
+
995
+ // This helps IE
996
+ $(coming.wrap).bind('onReset', function () {
997
+ try {
998
+ $(this).find('iframe').hide().attr('src', '//about:blank').end().empty();
999
+ } catch (e) {}
1000
+ });
1001
+
1002
+ if (coming.iframe.preload) {
1003
+ F.showLoading();
1004
+
1005
+ iframe.one('load', function() {
1006
+ $(this).data('ready', 1);
1007
+
1008
+ // iOS will lose scrolling if we resize
1009
+ if (!isTouch) {
1010
+ $(this).bind('load.fb', F.update);
1011
+ }
1012
+
1013
+ // Without this trick:
1014
+ // - iframe won't scroll on iOS devices
1015
+ // - IE7 sometimes displays empty iframe
1016
+ $(this).parents('.fancybox-wrap').width('100%').removeClass('fancybox-tmp').show();
1017
+
1018
+ F._afterLoad();
1019
+ });
1020
+ }
1021
+
1022
+ coming.content = iframe.appendTo( coming.inner );
1023
+
1024
+ if (!coming.iframe.preload) {
1025
+ F._afterLoad();
1026
+ }
1027
+ },
1028
+
1029
+ _preloadImages: function() {
1030
+ var group = F.group,
1031
+ current = F.current,
1032
+ len = group.length,
1033
+ cnt = current.preload ? Math.min(current.preload, len - 1) : 0,
1034
+ item,
1035
+ i;
1036
+
1037
+ for (i = 1; i <= cnt; i += 1) {
1038
+ item = group[ (current.index + i ) % len ];
1039
+
1040
+ if (item.type === 'image' && item.href) {
1041
+ new Image().src = item.href;
1042
+ }
1043
+ }
1044
+ },
1045
+
1046
+ _afterLoad: function () {
1047
+ var coming = F.coming,
1048
+ previous = F.current,
1049
+ placeholder = 'fancybox-placeholder',
1050
+ current,
1051
+ content,
1052
+ type,
1053
+ scrolling,
1054
+ href,
1055
+ embed;
1056
+
1057
+ F.hideLoading();
1058
+
1059
+ if (!coming || F.isActive === false) {
1060
+ return;
1061
+ }
1062
+
1063
+ if (false === F.trigger('afterLoad', coming, previous)) {
1064
+ coming.wrap.stop(true).trigger('onReset').remove();
1065
+
1066
+ F.coming = null;
1067
+
1068
+ return;
1069
+ }
1070
+
1071
+ if (previous) {
1072
+ F.trigger('beforeChange', previous);
1073
+
1074
+ previous.wrap.stop(true).removeClass('fancybox-opened')
1075
+ .find('.fancybox-item, .fancybox-nav')
1076
+ .remove();
1077
+ }
1078
+
1079
+ F.unbindEvents();
1080
+
1081
+ current = coming;
1082
+ content = coming.content;
1083
+ type = coming.type;
1084
+ scrolling = coming.scrolling;
1085
+
1086
+ $.extend(F, {
1087
+ wrap : current.wrap,
1088
+ skin : current.skin,
1089
+ outer : current.outer,
1090
+ inner : current.inner,
1091
+ current : current,
1092
+ previous : previous
1093
+ });
1094
+
1095
+ href = current.href;
1096
+
1097
+ switch (type) {
1098
+ case 'inline':
1099
+ case 'ajax':
1100
+ case 'html':
1101
+ if (current.selector) {
1102
+ content = $('<div>').html(content).find(current.selector);
1103
+
1104
+ } else if (isQuery(content)) {
1105
+ if (!content.data(placeholder)) {
1106
+ content.data(placeholder, $('<div class="' + placeholder + '"></div>').insertAfter( content ).hide() );
1107
+ }
1108
+
1109
+ content = content.show().detach();
1110
+
1111
+ current.wrap.bind('onReset', function () {
1112
+ if ($(this).find(content).length) {
1113
+ content.hide().replaceAll( content.data(placeholder) ).data(placeholder, false);
1114
+ }
1115
+ });
1116
+ }
1117
+ break;
1118
+
1119
+ case 'image':
1120
+ content = current.tpl.image.replace('{href}', href);
1121
+ break;
1122
+
1123
+ case 'swf':
1124
+ content = '<object id="fancybox-swf" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%"><param name="movie" value="' + href + '"></param>';
1125
+ embed = '';
1126
+
1127
+ $.each(current.swf, function(name, val) {
1128
+ content += '<param name="' + name + '" value="' + val + '"></param>';
1129
+ embed += ' ' + name + '="' + val + '"';
1130
+ });
1131
+
1132
+ content += '<embed src="' + href + '" type="application/x-shockwave-flash" width="100%" height="100%"' + embed + '></embed></object>';
1133
+ break;
1134
+ }
1135
+
1136
+ if (!(isQuery(content) && content.parent().is(current.inner))) {
1137
+ current.inner.append( content );
1138
+ }
1139
+
1140
+ // Give a chance for helpers or callbacks to update elements
1141
+ F.trigger('beforeShow');
1142
+
1143
+ // Set scrolling before calculating dimensions
1144
+ current.inner.css('overflow', scrolling === 'yes' ? 'scroll' : (scrolling === 'no' ? 'hidden' : scrolling));
1145
+
1146
+ // Set initial dimensions and start position
1147
+ F._setDimension();
1148
+
1149
+ F.reposition();
1150
+
1151
+ F.isOpen = false;
1152
+ F.coming = null;
1153
+
1154
+ F.bindEvents();
1155
+
1156
+ if (!F.isOpened) {
1157
+ $('.fancybox-wrap').not( current.wrap ).stop(true).trigger('onReset').remove();
1158
+
1159
+ } else if (previous.prevMethod) {
1160
+ F.transitions[ previous.prevMethod ]();
1161
+ }
1162
+
1163
+ F.transitions[ F.isOpened ? current.nextMethod : current.openMethod ]();
1164
+
1165
+ F._preloadImages();
1166
+ },
1167
+
1168
+ _setDimension: function () {
1169
+ var viewport = F.getViewport(),
1170
+ steps = 0,
1171
+ canShrink = false,
1172
+ canExpand = false,
1173
+ wrap = F.wrap,
1174
+ skin = F.skin,
1175
+ inner = F.inner,
1176
+ current = F.current,
1177
+ width = current.width,
1178
+ height = current.height,
1179
+ minWidth = current.minWidth,
1180
+ minHeight = current.minHeight,
1181
+ maxWidth = current.maxWidth,
1182
+ maxHeight = current.maxHeight,
1183
+ scrolling = current.scrolling,
1184
+ scrollOut = current.scrollOutside ? current.scrollbarWidth : 0,
1185
+ margin = current.margin,
1186
+ wMargin = getScalar(margin[1] + margin[3]),
1187
+ hMargin = getScalar(margin[0] + margin[2]),
1188
+ wPadding,
1189
+ hPadding,
1190
+ wSpace,
1191
+ hSpace,
1192
+ origWidth,
1193
+ origHeight,
1194
+ origMaxWidth,
1195
+ origMaxHeight,
1196
+ ratio,
1197
+ width_,
1198
+ height_,
1199
+ maxWidth_,
1200
+ maxHeight_,
1201
+ iframe,
1202
+ body;
1203
+
1204
+ // Reset dimensions so we could re-check actual size
1205
+ wrap.add(skin).add(inner).width('auto').height('auto').removeClass('fancybox-tmp');
1206
+
1207
+ wPadding = getScalar(skin.outerWidth(true) - skin.width());
1208
+ hPadding = getScalar(skin.outerHeight(true) - skin.height());
1209
+
1210
+ // Any space between content and viewport (margin, padding, border, title)
1211
+ wSpace = wMargin + wPadding;
1212
+ hSpace = hMargin + hPadding;
1213
+
1214
+ origWidth = isPercentage(width) ? (viewport.w - wSpace) * getScalar(width) / 100 : width;
1215
+ origHeight = isPercentage(height) ? (viewport.h - hSpace) * getScalar(height) / 100 : height;
1216
+
1217
+ if (current.type === 'iframe') {
1218
+ iframe = current.content;
1219
+
1220
+ if (current.autoHeight && iframe.data('ready') === 1) {
1221
+ try {
1222
+ if (iframe[0].contentWindow.document.location) {
1223
+ inner.width( origWidth ).height(9999);
1224
+
1225
+ body = iframe.contents().find('body');
1226
+
1227
+ if (scrollOut) {
1228
+ body.css('overflow-x', 'hidden');
1229
+ }
1230
+
1231
+ origHeight = body.outerHeight(true);
1232
+ }
1233
+
1234
+ } catch (e) {}
1235
+ }
1236
+
1237
+ } else if (current.autoWidth || current.autoHeight) {
1238
+ inner.addClass( 'fancybox-tmp' );
1239
+
1240
+ // Set width or height in case we need to calculate only one dimension
1241
+ if (!current.autoWidth) {
1242
+ inner.width( origWidth );
1243
+ }
1244
+
1245
+ if (!current.autoHeight) {
1246
+ inner.height( origHeight );
1247
+ }
1248
+
1249
+ if (current.autoWidth) {
1250
+ origWidth = inner.width();
1251
+ }
1252
+
1253
+ if (current.autoHeight) {
1254
+ origHeight = inner.height();
1255
+ }
1256
+
1257
+ inner.removeClass( 'fancybox-tmp' );
1258
+ }
1259
+
1260
+ width = getScalar( origWidth );
1261
+ height = getScalar( origHeight );
1262
+
1263
+ ratio = origWidth / origHeight;
1264
+
1265
+ // Calculations for the content
1266
+ minWidth = getScalar(isPercentage(minWidth) ? getScalar(minWidth, 'w') - wSpace : minWidth);
1267
+ maxWidth = getScalar(isPercentage(maxWidth) ? getScalar(maxWidth, 'w') - wSpace : maxWidth);
1268
+
1269
+ minHeight = getScalar(isPercentage(minHeight) ? getScalar(minHeight, 'h') - hSpace : minHeight);
1270
+ maxHeight = getScalar(isPercentage(maxHeight) ? getScalar(maxHeight, 'h') - hSpace : maxHeight);
1271
+
1272
+ // These will be used to determine if wrap can fit in the viewport
1273
+ origMaxWidth = maxWidth;
1274
+ origMaxHeight = maxHeight;
1275
+
1276
+ if (current.fitToView) {
1277
+ maxWidth = Math.min(viewport.w - wSpace, maxWidth);
1278
+ maxHeight = Math.min(viewport.h - hSpace, maxHeight);
1279
+ }
1280
+
1281
+ maxWidth_ = viewport.w - wMargin;
1282
+ maxHeight_ = viewport.h - hMargin;
1283
+
1284
+ if (current.aspectRatio) {
1285
+ if (width > maxWidth) {
1286
+ width = maxWidth;
1287
+ height = getScalar(width / ratio);
1288
+ }
1289
+
1290
+ if (height > maxHeight) {
1291
+ height = maxHeight;
1292
+ width = getScalar(height * ratio);
1293
+ }
1294
+
1295
+ if (width < minWidth) {
1296
+ width = minWidth;
1297
+ height = getScalar(width / ratio);
1298
+ }
1299
+
1300
+ if (height < minHeight) {
1301
+ height = minHeight;
1302
+ width = getScalar(height * ratio);
1303
+ }
1304
+
1305
+ } else {
1306
+ width = Math.max(minWidth, Math.min(width, maxWidth));
1307
+
1308
+ if (current.autoHeight && current.type !== 'iframe') {
1309
+ inner.width( width );
1310
+
1311
+ height = inner.height();
1312
+ }
1313
+
1314
+ height = Math.max(minHeight, Math.min(height, maxHeight));
1315
+ }
1316
+
1317
+ // Try to fit inside viewport (including the title)
1318
+ if (current.fitToView) {
1319
+ inner.width( width ).height( height );
1320
+
1321
+ wrap.width( width + wPadding );
1322
+
1323
+ // Real wrap dimensions
1324
+ width_ = wrap.width();
1325
+ height_ = wrap.height();
1326
+
1327
+ if (current.aspectRatio) {
1328
+ while ((width_ > maxWidth_ || height_ > maxHeight_) && width > minWidth && height > minHeight) {
1329
+ if (steps++ > 19) {
1330
+ break;
1331
+ }
1332
+
1333
+ height = Math.max(minHeight, Math.min(maxHeight, height - 10));
1334
+ width = getScalar(height * ratio);
1335
+
1336
+ if (width < minWidth) {
1337
+ width = minWidth;
1338
+ height = getScalar(width / ratio);
1339
+ }
1340
+
1341
+ if (width > maxWidth) {
1342
+ width = maxWidth;
1343
+ height = getScalar(width / ratio);
1344
+ }
1345
+
1346
+ inner.width( width ).height( height );
1347
+
1348
+ wrap.width( width + wPadding );
1349
+
1350
+ width_ = wrap.width();
1351
+ height_ = wrap.height();
1352
+ }
1353
+
1354
+ } else {
1355
+ width = Math.max(minWidth, Math.min(width, width - (width_ - maxWidth_)));
1356
+ height = Math.max(minHeight, Math.min(height, height - (height_ - maxHeight_)));
1357
+ }
1358
+ }
1359
+
1360
+ if (scrollOut && scrolling === 'auto' && height < origHeight && (width + wPadding + scrollOut) < maxWidth_) {
1361
+ width += scrollOut;
1362
+ }
1363
+
1364
+ inner.width( width ).height( height );
1365
+
1366
+ wrap.width( width + wPadding );
1367
+
1368
+ width_ = wrap.width();
1369
+ height_ = wrap.height();
1370
+
1371
+ canShrink = (width_ > maxWidth_ || height_ > maxHeight_) && width > minWidth && height > minHeight;
1372
+ canExpand = current.aspectRatio ? (width < origMaxWidth && height < origMaxHeight && width < origWidth && height < origHeight) : ((width < origMaxWidth || height < origMaxHeight) && (width < origWidth || height < origHeight));
1373
+
1374
+ $.extend(current, {
1375
+ dim : {
1376
+ width : getValue( width_ ),
1377
+ height : getValue( height_ )
1378
+ },
1379
+ origWidth : origWidth,
1380
+ origHeight : origHeight,
1381
+ canShrink : canShrink,
1382
+ canExpand : canExpand,
1383
+ wPadding : wPadding,
1384
+ hPadding : hPadding,
1385
+ wrapSpace : height_ - skin.outerHeight(true),
1386
+ skinSpace : skin.height() - height
1387
+ });
1388
+
1389
+ if (!iframe && current.autoHeight && height > minHeight && height < maxHeight && !canExpand) {
1390
+ inner.height('auto');
1391
+ }
1392
+ },
1393
+
1394
+ _getPosition: function (onlyAbsolute) {
1395
+ var current = F.current,
1396
+ viewport = F.getViewport(),
1397
+ margin = current.margin,
1398
+ width = F.wrap.width() + margin[1] + margin[3],
1399
+ height = F.wrap.height() + margin[0] + margin[2],
1400
+ rez = {
1401
+ position: 'absolute',
1402
+ top : margin[0],
1403
+ left : margin[3]
1404
+ };
1405
+
1406
+ if (current.autoCenter && current.fixed && !onlyAbsolute && height <= viewport.h && width <= viewport.w) {
1407
+ rez.position = 'fixed';
1408
+
1409
+ } else if (!current.locked) {
1410
+ rez.top += viewport.y;
1411
+ rez.left += viewport.x;
1412
+ }
1413
+
1414
+ rez.top = getValue(Math.max(rez.top, rez.top + ((viewport.h - height) * current.topRatio)));
1415
+ rez.left = getValue(Math.max(rez.left, rez.left + ((viewport.w - width) * current.leftRatio)));
1416
+
1417
+ return rez;
1418
+ },
1419
+
1420
+ _afterZoomIn: function () {
1421
+ var current = F.current;
1422
+
1423
+ if (!current) {
1424
+ return;
1425
+ }
1426
+
1427
+ F.isOpen = F.isOpened = true;
1428
+
1429
+ F.wrap.css('overflow', 'visible').addClass('fancybox-opened');
1430
+
1431
+ F.update();
1432
+
1433
+ // Assign a click event
1434
+ if ( current.closeClick || (current.nextClick && F.group.length > 1) ) {
1435
+ F.inner.css('cursor', 'pointer').bind('click.fb', function(e) {
1436
+ if (!$(e.target).is('a') && !$(e.target).parent().is('a')) {
1437
+ e.preventDefault();
1438
+
1439
+ F[ current.closeClick ? 'close' : 'next' ]();
1440
+ }
1441
+ });
1442
+ }
1443
+
1444
+ // Create a close button
1445
+ if (current.closeBtn) {
1446
+ $(current.tpl.closeBtn).appendTo(F.skin).bind('click.fb', function(e) {
1447
+ e.preventDefault();
1448
+
1449
+ F.close();
1450
+ });
1451
+ }
1452
+
1453
+ // Create navigation arrows
1454
+ if (current.arrows && F.group.length > 1) {
1455
+ if (current.loop || current.index > 0) {
1456
+ $(current.tpl.prev).appendTo(F.outer).bind('click.fb', F.prev);
1457
+ }
1458
+
1459
+ if (current.loop || current.index < F.group.length - 1) {
1460
+ $(current.tpl.next).appendTo(F.outer).bind('click.fb', F.next);
1461
+ }
1462
+ }
1463
+
1464
+ F.trigger('afterShow');
1465
+
1466
+ // Stop the slideshow if this is the last item
1467
+ if (!current.loop && current.index === current.group.length - 1) {
1468
+ F.play( false );
1469
+
1470
+ } else if (F.opts.autoPlay && !F.player.isActive) {
1471
+ F.opts.autoPlay = false;
1472
+
1473
+ F.play();
1474
+ }
1475
+ },
1476
+
1477
+ _afterZoomOut: function ( obj ) {
1478
+ obj = obj || F.current;
1479
+
1480
+ $('.fancybox-wrap').trigger('onReset').remove();
1481
+
1482
+ $.extend(F, {
1483
+ group : {},
1484
+ opts : {},
1485
+ router : false,
1486
+ current : null,
1487
+ isActive : false,
1488
+ isOpened : false,
1489
+ isOpen : false,
1490
+ isClosing : false,
1491
+ wrap : null,
1492
+ skin : null,
1493
+ outer : null,
1494
+ inner : null
1495
+ });
1496
+
1497
+ F.trigger('afterClose', obj);
1498
+ }
1499
+ });
1500
+
1501
+ /*
1502
+ * Default transitions
1503
+ */
1504
+
1505
+ F.transitions = {
1506
+ getOrigPosition: function () {
1507
+ var current = F.current,
1508
+ element = current.element,
1509
+ orig = current.orig,
1510
+ pos = {},
1511
+ width = 50,
1512
+ height = 50,
1513
+ hPadding = current.hPadding,
1514
+ wPadding = current.wPadding,
1515
+ viewport = F.getViewport();
1516
+
1517
+ if (!orig && current.isDom && element.is(':visible')) {
1518
+ orig = element.find('img:first');
1519
+
1520
+ if (!orig.length) {
1521
+ orig = element;
1522
+ }
1523
+ }
1524
+
1525
+ if (isQuery(orig)) {
1526
+ pos = orig.offset();
1527
+
1528
+ if (orig.is('img')) {
1529
+ width = orig.outerWidth();
1530
+ height = orig.outerHeight();
1531
+ }
1532
+
1533
+ } else {
1534
+ pos.top = viewport.y + (viewport.h - height) * current.topRatio;
1535
+ pos.left = viewport.x + (viewport.w - width) * current.leftRatio;
1536
+ }
1537
+
1538
+ if (F.wrap.css('position') === 'fixed' || current.locked) {
1539
+ pos.top -= viewport.y;
1540
+ pos.left -= viewport.x;
1541
+ }
1542
+
1543
+ pos = {
1544
+ top : getValue(pos.top - hPadding * current.topRatio),
1545
+ left : getValue(pos.left - wPadding * current.leftRatio),
1546
+ width : getValue(width + wPadding),
1547
+ height : getValue(height + hPadding)
1548
+ };
1549
+
1550
+ return pos;
1551
+ },
1552
+
1553
+ step: function (now, fx) {
1554
+ var ratio,
1555
+ padding,
1556
+ value,
1557
+ prop = fx.prop,
1558
+ current = F.current,
1559
+ wrapSpace = current.wrapSpace,
1560
+ skinSpace = current.skinSpace;
1561
+
1562
+ if (prop === 'width' || prop === 'height') {
1563
+ ratio = fx.end === fx.start ? 1 : (now - fx.start) / (fx.end - fx.start);
1564
+
1565
+ if (F.isClosing) {
1566
+ ratio = 1 - ratio;
1567
+ }
1568
+
1569
+ padding = prop === 'width' ? current.wPadding : current.hPadding;
1570
+ value = now - padding;
1571
+
1572
+ F.skin[ prop ]( getScalar( prop === 'width' ? value : value - (wrapSpace * ratio) ) );
1573
+ F.inner[ prop ]( getScalar( prop === 'width' ? value : value - (wrapSpace * ratio) - (skinSpace * ratio) ) );
1574
+ }
1575
+ },
1576
+
1577
+ zoomIn: function () {
1578
+ var current = F.current,
1579
+ startPos = current.pos,
1580
+ effect = current.openEffect,
1581
+ elastic = effect === 'elastic',
1582
+ endPos = $.extend({opacity : 1}, startPos);
1583
+
1584
+ // Remove "position" property that breaks older IE
1585
+ delete endPos.position;
1586
+
1587
+ if (elastic) {
1588
+ startPos = this.getOrigPosition();
1589
+
1590
+ if (current.openOpacity) {
1591
+ startPos.opacity = 0.1;
1592
+ }
1593
+
1594
+ } else if (effect === 'fade') {
1595
+ startPos.opacity = 0.1;
1596
+ }
1597
+
1598
+ F.wrap.css(startPos).animate(endPos, {
1599
+ duration : effect === 'none' ? 0 : current.openSpeed,
1600
+ easing : current.openEasing,
1601
+ step : elastic ? this.step : null,
1602
+ complete : F._afterZoomIn
1603
+ });
1604
+ },
1605
+
1606
+ zoomOut: function () {
1607
+ var current = F.current,
1608
+ effect = current.closeEffect,
1609
+ elastic = effect === 'elastic',
1610
+ endPos = {opacity : 0.1};
1611
+
1612
+ if (elastic) {
1613
+ endPos = this.getOrigPosition();
1614
+
1615
+ if (current.closeOpacity) {
1616
+ endPos.opacity = 0.1;
1617
+ }
1618
+ }
1619
+
1620
+ F.wrap.animate(endPos, {
1621
+ duration : effect === 'none' ? 0 : current.closeSpeed,
1622
+ easing : current.closeEasing,
1623
+ step : elastic ? this.step : null,
1624
+ complete : F._afterZoomOut
1625
+ });
1626
+ },
1627
+
1628
+ changeIn: function () {
1629
+ var current = F.current,
1630
+ effect = current.nextEffect,
1631
+ startPos = current.pos,
1632
+ endPos = { opacity : 1 },
1633
+ direction = F.direction,
1634
+ distance = 200,
1635
+ field;
1636
+
1637
+ startPos.opacity = 0.1;
1638
+
1639
+ if (effect === 'elastic') {
1640
+ field = direction === 'down' || direction === 'up' ? 'top' : 'left';
1641
+
1642
+ if (direction === 'down' || direction === 'right') {
1643
+ startPos[ field ] = getValue(getScalar(startPos[ field ]) - distance);
1644
+ endPos[ field ] = '+=' + distance + 'px';
1645
+
1646
+ } else {
1647
+ startPos[ field ] = getValue(getScalar(startPos[ field ]) + distance);
1648
+ endPos[ field ] = '-=' + distance + 'px';
1649
+ }
1650
+ }
1651
+
1652
+ // Workaround for http://bugs.jquery.com/ticket/12273
1653
+ if (effect === 'none') {
1654
+ F._afterZoomIn();
1655
+
1656
+ } else {
1657
+ F.wrap.css(startPos).animate(endPos, {
1658
+ duration : current.nextSpeed,
1659
+ easing : current.nextEasing,
1660
+ complete : F._afterZoomIn
1661
+ });
1662
+ }
1663
+ },
1664
+
1665
+ changeOut: function () {
1666
+ var previous = F.previous,
1667
+ effect = previous.prevEffect,
1668
+ endPos = { opacity : 0.1 },
1669
+ direction = F.direction,
1670
+ distance = 200;
1671
+
1672
+ if (effect === 'elastic') {
1673
+ endPos[ direction === 'down' || direction === 'up' ? 'top' : 'left' ] = ( direction === 'up' || direction === 'left' ? '-' : '+' ) + '=' + distance + 'px';
1674
+ }
1675
+
1676
+ previous.wrap.animate(endPos, {
1677
+ duration : effect === 'none' ? 0 : previous.prevSpeed,
1678
+ easing : previous.prevEasing,
1679
+ complete : function () {
1680
+ $(this).trigger('onReset').remove();
1681
+ }
1682
+ });
1683
+ }
1684
+ };
1685
+
1686
+ /*
1687
+ * Overlay helper
1688
+ */
1689
+
1690
+ F.helpers.overlay = {
1691
+ defaults : {
1692
+ closeClick : true, // if true, fancyBox will be closed when user clicks on the overlay
1693
+ speedOut : 200, // duration of fadeOut animation
1694
+ showEarly : true, // indicates if should be opened immediately or wait until the content is ready
1695
+ css : {}, // custom CSS properties
1696
+ locked : !isTouch, // if true, the content will be locked into overlay
1697
+ fixed : true // if false, the overlay CSS position property will not be set to "fixed"
1698
+ },
1699
+
1700
+ overlay : null, // current handle
1701
+ fixed : false, // indicates if the overlay has position "fixed"
1702
+ el : $('html'), // element that contains "the lock"
1703
+
1704
+ // Public methods
1705
+ create : function(opts) {
1706
+ opts = $.extend({}, this.defaults, opts);
1707
+
1708
+ if (this.overlay) {
1709
+ this.close();
1710
+ }
1711
+
1712
+ this.overlay = $('<div class="fancybox-overlay"></div>').appendTo( F.coming ? F.coming.parent : opts.parent );
1713
+ this.fixed = false;
1714
+
1715
+ if (opts.fixed && F.defaults.fixed) {
1716
+ this.overlay.addClass('fancybox-overlay-fixed');
1717
+
1718
+ this.fixed = true;
1719
+ }
1720
+ },
1721
+
1722
+ open : function(opts) {
1723
+ var that = this;
1724
+
1725
+ opts = $.extend({}, this.defaults, opts);
1726
+
1727
+ if (this.overlay) {
1728
+ this.overlay.unbind('.overlay').width('auto').height('auto');
1729
+
1730
+ } else {
1731
+ this.create(opts);
1732
+ }
1733
+
1734
+ if (!this.fixed) {
1735
+ W.bind('resize.overlay', $.proxy( this.update, this) );
1736
+
1737
+ this.update();
1738
+ }
1739
+
1740
+ if (opts.closeClick) {
1741
+ this.overlay.bind('click.overlay', function(e) {
1742
+ if ($(e.target).hasClass('fancybox-overlay')) {
1743
+ if (F.isActive) {
1744
+ F.close();
1745
+ } else {
1746
+ that.close();
1747
+ }
1748
+
1749
+ return false;
1750
+ }
1751
+ });
1752
+ }
1753
+
1754
+ this.overlay.css( opts.css ).show();
1755
+ },
1756
+
1757
+ close : function() {
1758
+ var scrollV, scrollH;
1759
+
1760
+ W.unbind('resize.overlay');
1761
+
1762
+ if (this.el.hasClass('fancybox-lock')) {
1763
+ $('.fancybox-margin').removeClass('fancybox-margin');
1764
+
1765
+ scrollV = W.scrollTop();
1766
+ scrollH = W.scrollLeft();
1767
+
1768
+ this.el.removeClass('fancybox-lock');
1769
+
1770
+ W.scrollTop( scrollV ).scrollLeft( scrollH );
1771
+ }
1772
+
1773
+ $('.fancybox-overlay').remove().hide();
1774
+
1775
+ $.extend(this, {
1776
+ overlay : null,
1777
+ fixed : false
1778
+ });
1779
+ },
1780
+
1781
+ // Private, callbacks
1782
+
1783
+ update : function () {
1784
+ var width = '100%', offsetWidth;
1785
+
1786
+ // Reset width/height so it will not mess
1787
+ this.overlay.width(width).height('100%');
1788
+
1789
+ // jQuery does not return reliable result for IE
1790
+ if (IE) {
1791
+ offsetWidth = Math.max(document.documentElement.offsetWidth, document.body.offsetWidth);
1792
+
1793
+ if (D.width() > offsetWidth) {
1794
+ width = D.width();
1795
+ }
1796
+
1797
+ } else if (D.width() > W.width()) {
1798
+ width = D.width();
1799
+ }
1800
+
1801
+ this.overlay.width(width).height(D.height());
1802
+ },
1803
+
1804
+ // This is where we can manipulate DOM, because later it would cause iframes to reload
1805
+ onReady : function (opts, obj) {
1806
+ var overlay = this.overlay;
1807
+
1808
+ $('.fancybox-overlay').stop(true, true);
1809
+
1810
+ if (!overlay) {
1811
+ this.create(opts);
1812
+ }
1813
+
1814
+ if (opts.locked && this.fixed && obj.fixed) {
1815
+ if (!overlay) {
1816
+ this.margin = D.height() > W.height() ? $('html').css('margin-right').replace("px", "") : false;
1817
+ }
1818
+
1819
+ obj.locked = this.overlay.append( obj.wrap );
1820
+ obj.fixed = false;
1821
+ }
1822
+
1823
+ if (opts.showEarly === true) {
1824
+ this.beforeShow.apply(this, arguments);
1825
+ }
1826
+ },
1827
+
1828
+ beforeShow : function(opts, obj) {
1829
+ var scrollV, scrollH;
1830
+
1831
+ if (obj.locked) {
1832
+ if (this.margin !== false) {
1833
+ $('*').filter(function(){
1834
+ return ($(this).css('position') === 'fixed' && !$(this).hasClass("fancybox-overlay") && !$(this).hasClass("fancybox-wrap") );
1835
+ }).addClass('fancybox-margin');
1836
+
1837
+ this.el.addClass('fancybox-margin');
1838
+ }
1839
+
1840
+ scrollV = W.scrollTop();
1841
+ scrollH = W.scrollLeft();
1842
+
1843
+ this.el.addClass('fancybox-lock');
1844
+
1845
+ W.scrollTop( scrollV ).scrollLeft( scrollH );
1846
+ }
1847
+
1848
+ this.open(opts);
1849
+ },
1850
+
1851
+ onUpdate : function() {
1852
+ if (!this.fixed) {
1853
+ this.update();
1854
+ }
1855
+ },
1856
+
1857
+ afterClose: function (opts) {
1858
+ // Remove overlay if exists and fancyBox is not opening
1859
+ // (e.g., it is not being open using afterClose callback)
1860
+ //if (this.overlay && !F.isActive) {
1861
+ if (this.overlay && !F.coming) {
1862
+ this.overlay.fadeOut(opts.speedOut, $.proxy( this.close, this ));
1863
+ }
1864
+ }
1865
+ };
1866
+
1867
+ /*
1868
+ * Title helper
1869
+ */
1870
+
1871
+ F.helpers.title = {
1872
+ defaults : {
1873
+ type : 'float', // 'float', 'inside', 'outside' or 'over',
1874
+ position : 'bottom' // 'top' or 'bottom'
1875
+ },
1876
+
1877
+ beforeShow: function (opts) {
1878
+ var current = F.current,
1879
+ text = current.title,
1880
+ type = opts.type,
1881
+ title,
1882
+ target;
1883
+
1884
+ if ($.isFunction(text)) {
1885
+ text = text.call(current.element, current);
1886
+ }
1887
+
1888
+ if (!isString(text) || $.trim(text) === '') {
1889
+ return;
1890
+ }
1891
+
1892
+ title = $('<div class="fancybox-title fancybox-title-' + type + '-wrap">' + text + '</div>');
1893
+
1894
+ switch (type) {
1895
+ case 'inside':
1896
+ target = F.skin;
1897
+ break;
1898
+
1899
+ case 'outside':
1900
+ target = F.wrap;
1901
+ break;
1902
+
1903
+ case 'over':
1904
+ target = F.inner;
1905
+ break;
1906
+
1907
+ default: // 'float'
1908
+ target = F.skin;
1909
+
1910
+ title.appendTo('body');
1911
+
1912
+ if (IE) {
1913
+ title.width( title.width() );
1914
+ }
1915
+
1916
+ title.wrapInner('<span class="child"></span>');
1917
+
1918
+ //Increase bottom margin so this title will also fit into viewport
1919
+ F.current.margin[2] += Math.abs( getScalar(title.css('margin-bottom')) );
1920
+ break;
1921
+ }
1922
+
1923
+ title[ (opts.position === 'top' ? 'prependTo' : 'appendTo') ](target);
1924
+ }
1925
+ };
1926
+
1927
+ // jQuery plugin initialization
1928
+ $.fn.fancybox = function (options) {
1929
+ var index,
1930
+ that = $(this),
1931
+ selector = this.selector || '',
1932
+ run = function(e) {
1933
+ var what = $(this).blur(), idx = index, relType, relVal;
1934
+
1935
+ if (!(e.ctrlKey || e.altKey || e.shiftKey || e.metaKey) && !what.is('.fancybox-wrap')) {
1936
+ relType = options.groupAttr || 'data-fancybox-group';
1937
+ relVal = what.attr(relType);
1938
+
1939
+ if (!relVal) {
1940
+ relType = 'rel';
1941
+ relVal = what.get(0)[ relType ];
1942
+ }
1943
+
1944
+ if (relVal && relVal !== '' && relVal !== 'nofollow') {
1945
+ what = selector.length ? $(selector) : that;
1946
+ what = what.filter('[' + relType + '="' + relVal + '"]');
1947
+ idx = what.index(this);
1948
+ }
1949
+
1950
+ options.index = idx;
1951
+
1952
+ // Stop an event from bubbling if everything is fine
1953
+ if (F.open(what, options) !== false) {
1954
+ e.preventDefault();
1955
+ }
1956
+ }
1957
+ };
1958
+
1959
+ options = options || {};
1960
+ index = options.index || 0;
1961
+
1962
+ if (!selector || options.live === false) {
1963
+ that.unbind('click.fb-start').bind('click.fb-start', run);
1964
+
1965
+ } else {
1966
+ D.undelegate(selector, 'click.fb-start').delegate(selector + ":not('.fancybox-item, .fancybox-nav')", 'click.fb-start', run);
1967
+ }
1968
+
1969
+ this.filter('[data-fancybox-start=1]').trigger('click');
1970
+
1971
+ return this;
1972
+ };
1973
+
1974
+ // Tests that need a body at doc ready
1975
+ D.ready(function() {
1976
+ var w1, w2;
1977
+
1978
+ if ( $.scrollbarWidth === undefined ) {
1979
+ // http://benalman.com/projects/jquery-misc-plugins/#scrollbarwidth
1980
+ $.scrollbarWidth = function() {
1981
+ var parent = $('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo('body'),
1982
+ child = parent.children(),
1983
+ width = child.innerWidth() - child.height( 99 ).innerWidth();
1984
+
1985
+ parent.remove();
1986
+
1987
+ return width;
1988
+ };
1989
+ }
1990
+
1991
+ if ( $.support.fixedPosition === undefined ) {
1992
+ $.support.fixedPosition = (function() {
1993
+ var elem = $('<div style="position:fixed;top:20px;"></div>').appendTo('body'),
1994
+ fixed = ( elem[0].offsetTop === 20 || elem[0].offsetTop === 15 );
1995
+
1996
+ elem.remove();
1997
+
1998
+ return fixed;
1999
+ }());
2000
+ }
2001
+
2002
+ $.extend(F.defaults, {
2003
+ scrollbarWidth : $.scrollbarWidth(),
2004
+ fixed : $.support.fixedPosition,
2005
+ parent : $('body')
2006
+ });
2007
+
2008
+ //Get real width of page scroll-bar
2009
+ w1 = $(window).width();
2010
+
2011
+ H.addClass('fancybox-lock-test');
2012
+
2013
+ w2 = $(window).width();
2014
+
2015
+ H.removeClass('fancybox-lock-test');
2016
+
2017
+ $("<style type='text/css'>.fancybox-margin{margin-right:" + (w2 - w1) + "px;}</style>").appendTo("head");
2018
+ });
2019
+
2020
+ }(window, document, jQuery));
js/jquery/jquery-1.9.0.min.js ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ /*! jQuery v1.9.0 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license */(function(e,t){"use strict";function n(e){var t=e.length,n=st.type(e);return st.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}function r(e){var t=Tt[e]={};return st.each(e.match(lt)||[],function(e,n){t[n]=!0}),t}function i(e,n,r,i){if(st.acceptData(e)){var o,a,s=st.expando,u="string"==typeof n,l=e.nodeType,c=l?st.cache:e,f=l?e[s]:e[s]&&s;if(f&&c[f]&&(i||c[f].data)||!u||r!==t)return f||(l?e[s]=f=K.pop()||st.guid++:f=s),c[f]||(c[f]={},l||(c[f].toJSON=st.noop)),("object"==typeof n||"function"==typeof n)&&(i?c[f]=st.extend(c[f],n):c[f].data=st.extend(c[f].data,n)),o=c[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[st.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[st.camelCase(n)])):a=o,a}}function o(e,t,n){if(st.acceptData(e)){var r,i,o,a=e.nodeType,u=a?st.cache:e,l=a?e[st.expando]:st.expando;if(u[l]){if(t&&(r=n?u[l]:u[l].data)){st.isArray(t)?t=t.concat(st.map(t,st.camelCase)):t in r?t=[t]:(t=st.camelCase(t),t=t in r?[t]:t.split(" "));for(i=0,o=t.length;o>i;i++)delete r[t[i]];if(!(n?s:st.isEmptyObject)(r))return}(n||(delete u[l].data,s(u[l])))&&(a?st.cleanData([e],!0):st.support.deleteExpando||u!=u.window?delete u[l]:u[l]=null)}}}function a(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(Nt,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:wt.test(r)?st.parseJSON(r):r}catch(o){}st.data(e,n,r)}else r=t}return r}function s(e){var t;for(t in e)if(("data"!==t||!st.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function u(){return!0}function l(){return!1}function c(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}function f(e,t,n){if(t=t||0,st.isFunction(t))return st.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return st.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=st.grep(e,function(e){return 1===e.nodeType});if(Wt.test(t))return st.filter(t,r,!n);t=st.filter(t,r)}return st.grep(e,function(e){return st.inArray(e,t)>=0===n})}function p(e){var t=zt.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function d(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function h(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function g(e){var t=nn.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function m(e,t){for(var n,r=0;null!=(n=e[r]);r++)st._data(n,"globalEval",!t||st._data(t[r],"globalEval"))}function y(e,t){if(1===t.nodeType&&st.hasData(e)){var n,r,i,o=st._data(e),a=st._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)st.event.add(t,n,s[n][r])}a.data&&(a.data=st.extend({},a.data))}}function v(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!st.support.noCloneEvent&&t[st.expando]){r=st._data(t);for(i in r.events)st.removeEvent(t,i,r.handle);t.removeAttribute(st.expando)}"script"===n&&t.text!==e.text?(h(t).text=e.text,g(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),st.support.html5Clone&&e.innerHTML&&!st.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Zt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}function b(e,n){var r,i,o=0,a=e.getElementsByTagName!==t?e.getElementsByTagName(n||"*"):e.querySelectorAll!==t?e.querySelectorAll(n||"*"):t;if(!a)for(a=[],r=e.childNodes||e;null!=(i=r[o]);o++)!n||st.nodeName(i,n)?a.push(i):st.merge(a,b(i,n));return n===t||n&&st.nodeName(e,n)?st.merge([e],a):a}function x(e){Zt.test(e.type)&&(e.defaultChecked=e.checked)}function T(e,t){if(t in e)return t;for(var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=Nn.length;i--;)if(t=Nn[i]+n,t in e)return t;return r}function w(e,t){return e=t||e,"none"===st.css(e,"display")||!st.contains(e.ownerDocument,e)}function N(e,t){for(var n,r=[],i=0,o=e.length;o>i;i++)n=e[i],n.style&&(r[i]=st._data(n,"olddisplay"),t?(r[i]||"none"!==n.style.display||(n.style.display=""),""===n.style.display&&w(n)&&(r[i]=st._data(n,"olddisplay",S(n.nodeName)))):r[i]||w(n)||st._data(n,"olddisplay",st.css(n,"display")));for(i=0;o>i;i++)n=e[i],n.style&&(t&&"none"!==n.style.display&&""!==n.style.display||(n.style.display=t?r[i]||"":"none"));return e}function C(e,t,n){var r=mn.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function k(e,t,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;4>o;o+=2)"margin"===n&&(a+=st.css(e,n+wn[o],!0,i)),r?("content"===n&&(a-=st.css(e,"padding"+wn[o],!0,i)),"margin"!==n&&(a-=st.css(e,"border"+wn[o]+"Width",!0,i))):(a+=st.css(e,"padding"+wn[o],!0,i),"padding"!==n&&(a+=st.css(e,"border"+wn[o]+"Width",!0,i)));return a}function E(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=ln(e),a=st.support.boxSizing&&"border-box"===st.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=un(e,t,o),(0>i||null==i)&&(i=e.style[t]),yn.test(i))return i;r=a&&(st.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+k(e,t,n||(a?"border":"content"),r,o)+"px"}function S(e){var t=V,n=bn[e];return n||(n=A(e,t),"none"!==n&&n||(cn=(cn||st("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(cn[0].contentWindow||cn[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=A(e,t),cn.detach()),bn[e]=n),n}function A(e,t){var n=st(t.createElement(e)).appendTo(t.body),r=st.css(n[0],"display");return n.remove(),r}function j(e,t,n,r){var i;if(st.isArray(t))st.each(t,function(t,i){n||kn.test(e)?r(e,i):j(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==st.type(t))r(e,t);else for(i in t)j(e+"["+i+"]",t[i],n,r)}function D(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(lt)||[];if(st.isFunction(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function L(e,n,r,i){function o(u){var l;return a[u]=!0,st.each(e[u]||[],function(e,u){var c=u(n,r,i);return"string"!=typeof c||s||a[c]?s?!(l=c):t:(n.dataTypes.unshift(c),o(c),!1)}),l}var a={},s=e===$n;return o(n.dataTypes[0])||!a["*"]&&o("*")}function H(e,n){var r,i,o=st.ajaxSettings.flatOptions||{};for(r in n)n[r]!==t&&((o[r]?e:i||(i={}))[r]=n[r]);return i&&st.extend(!0,e,i),e}function M(e,n,r){var i,o,a,s,u=e.contents,l=e.dataTypes,c=e.responseFields;for(o in c)o in r&&(n[c[o]]=r[o]);for(;"*"===l[0];)l.shift(),i===t&&(i=e.mimeType||n.getResponseHeader("Content-Type"));if(i)for(o in u)if(u[o]&&u[o].test(i)){l.unshift(o);break}if(l[0]in r)a=l[0];else{for(o in r){if(!l[0]||e.converters[o+" "+l[0]]){a=o;break}s||(s=o)}a=a||s}return a?(a!==l[0]&&l.unshift(a),r[a]):t}function q(e,t){var n,r,i,o,a={},s=0,u=e.dataTypes.slice(),l=u[0];if(e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u[1])for(n in e.converters)a[n.toLowerCase()]=e.converters[n];for(;i=u[++s];)if("*"!==i){if("*"!==l&&l!==i){if(n=a[l+" "+i]||a["* "+i],!n)for(r in a)if(o=r.split(" "),o[1]===i&&(n=a[l+" "+o[0]]||a["* "+o[0]])){n===!0?n=a[r]:a[r]!==!0&&(i=o[0],u.splice(s--,0,i));break}if(n!==!0)if(n&&e["throws"])t=n(t);else try{t=n(t)}catch(c){return{state:"parsererror",error:n?c:"No conversion from "+l+" to "+i}}}l=i}return{state:"success",data:t}}function _(){try{return new e.XMLHttpRequest}catch(t){}}function F(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}function O(){return setTimeout(function(){Qn=t}),Qn=st.now()}function B(e,t){st.each(t,function(t,n){for(var r=(rr[t]||[]).concat(rr["*"]),i=0,o=r.length;o>i;i++)if(r[i].call(e,t,n))return})}function P(e,t,n){var r,i,o=0,a=nr.length,s=st.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;for(var t=Qn||O(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,a=0,u=l.tweens.length;u>a;a++)l.tweens[a].run(o);return s.notifyWith(e,[l,o,n]),1>o&&u?n:(s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:st.extend({},t),opts:st.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Qn||O(),duration:n.duration,tweens:[],createTween:function(t,n){var r=st.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?s.resolveWith(e,[l,t]):s.rejectWith(e,[l,t]),this}}),c=l.props;for(R(c,l.opts.specialEasing);a>o;o++)if(r=nr[o].call(l,e,c,l.opts))return r;return B(l,c),st.isFunction(l.opts.start)&&l.opts.start.call(e,l),st.fx.timer(st.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function R(e,t){var n,r,i,o,a;for(n in e)if(r=st.camelCase(n),i=t[r],o=e[n],st.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),a=st.cssHooks[r],a&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}function W(e,t,n){var r,i,o,a,s,u,l,c,f,p=this,d=e.style,h={},g=[],m=e.nodeType&&w(e);n.queue||(c=st._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,f=c.empty.fire,c.empty.fire=function(){c.unqueued||f()}),c.unqueued++,p.always(function(){p.always(function(){c.unqueued--,st.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],"inline"===st.css(e,"display")&&"none"===st.css(e,"float")&&(st.support.inlineBlockNeedsLayout&&"inline"!==S(e.nodeName)?d.zoom=1:d.display="inline-block")),n.overflow&&(d.overflow="hidden",st.support.shrinkWrapBlocks||p.done(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}));for(r in t)if(o=t[r],Zn.exec(o)){if(delete t[r],u=u||"toggle"===o,o===(m?"hide":"show"))continue;g.push(r)}if(a=g.length){s=st._data(e,"fxshow")||st._data(e,"fxshow",{}),"hidden"in s&&(m=s.hidden),u&&(s.hidden=!m),m?st(e).show():p.done(function(){st(e).hide()}),p.done(function(){var t;st._removeData(e,"fxshow");for(t in h)st.style(e,t,h[t])});for(r=0;a>r;r++)i=g[r],l=p.createTween(i,m?s[i]:0),h[i]=s[i]||st.style(e,i),i in s||(s[i]=l.start,m&&(l.end=l.start,l.start="width"===i||"height"===i?1:0))}}function $(e,t,n,r,i){return new $.prototype.init(e,t,n,r,i)}function I(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=wn[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}function z(e){return st.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}var X,U,V=e.document,Y=e.location,J=e.jQuery,G=e.$,Q={},K=[],Z="1.9.0",et=K.concat,tt=K.push,nt=K.slice,rt=K.indexOf,it=Q.toString,ot=Q.hasOwnProperty,at=Z.trim,st=function(e,t){return new st.fn.init(e,t,X)},ut=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,lt=/\S+/g,ct=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,ft=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,pt=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,dt=/^[\],:{}\s]*$/,ht=/(?:^|:|,)(?:\s*\[)+/g,gt=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,mt=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,yt=/^-ms-/,vt=/-([\da-z])/gi,bt=function(e,t){return t.toUpperCase()},xt=function(){V.addEventListener?(V.removeEventListener("DOMContentLoaded",xt,!1),st.ready()):"complete"===V.readyState&&(V.detachEvent("onreadystatechange",xt),st.ready())};st.fn=st.prototype={jquery:Z,constructor:st,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:ft.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof st?n[0]:n,st.merge(this,st.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:V,!0)),pt.test(i[1])&&st.isPlainObject(n))for(i in n)st.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=V.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=V,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):st.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),st.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return nt.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=st.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return st.each(this,e,t)},ready:function(e){return st.ready.promise().done(e),this},slice:function(){return this.pushStack(nt.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(st.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:tt,sort:[].sort,splice:[].splice},st.fn.init.prototype=st.fn,st.extend=st.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||st.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(e=arguments[u]))for(n in e)r=s[n],i=e[n],s!==i&&(c&&i&&(st.isPlainObject(i)||(o=st.isArray(i)))?(o?(o=!1,a=r&&st.isArray(r)?r:[]):a=r&&st.isPlainObject(r)?r:{},s[n]=st.extend(c,a,i)):i!==t&&(s[n]=i));return s},st.extend({noConflict:function(t){return e.$===st&&(e.$=G),t&&e.jQuery===st&&(e.jQuery=J),st},isReady:!1,readyWait:1,holdReady:function(e){e?st.readyWait++:st.ready(!0)},ready:function(e){if(e===!0?!--st.readyWait:!st.isReady){if(!V.body)return setTimeout(st.ready);st.isReady=!0,e!==!0&&--st.readyWait>0||(U.resolveWith(V,[st]),st.fn.trigger&&st(V).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===st.type(e)},isArray:Array.isArray||function(e){return"array"===st.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?Q[it.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==st.type(e)||e.nodeType||st.isWindow(e))return!1;try{if(e.constructor&&!ot.call(e,"constructor")&&!ot.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||ot.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||V;var r=pt.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=st.buildFragment([e],t,i),i&&st(i).remove(),st.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=st.trim(n),n&&dt.test(n.replace(gt,"@").replace(mt,"]").replace(ht,"")))?Function("return "+n)():(st.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||st.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&st.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(yt,"ms-").replace(vt,bt)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,r){var i,o=0,a=e.length,s=n(e);if(r){if(s)for(;a>o&&(i=t.apply(e[o],r),i!==!1);o++);else for(o in e)if(i=t.apply(e[o],r),i===!1)break}else if(s)for(;a>o&&(i=t.call(e[o],o,e[o]),i!==!1);o++);else for(o in e)if(i=t.call(e[o],o,e[o]),i===!1)break;return e},trim:at&&!at.call("\ufeff\u00a0")?function(e){return null==e?"":at.call(e)}:function(e){return null==e?"":(e+"").replace(ct,"")},makeArray:function(e,t){var r=t||[];return null!=e&&(n(Object(e))?st.merge(r,"string"==typeof e?[e]:e):tt.call(r,e)),r},inArray:function(e,t,n){var r;if(t){if(rt)return rt.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else for(;n[o]!==t;)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,r){var i,o=0,a=e.length,s=n(e),u=[];if(s)for(;a>o;o++)i=t(e[o],o,r),null!=i&&(u[u.length]=i);else for(o in e)i=t(e[o],o,r),null!=i&&(u[u.length]=i);return et.apply([],u)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(r=e[n],n=e,e=r),st.isFunction(e)?(i=nt.call(arguments,2),o=function(){return e.apply(n||this,i.concat(nt.call(arguments)))},o.guid=e.guid=e.guid||st.guid++,o):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===st.type(r)){o=!0;for(u in r)st.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,st.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(st(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),st.ready.promise=function(t){if(!U)if(U=st.Deferred(),"complete"===V.readyState)setTimeout(st.ready);else if(V.addEventListener)V.addEventListener("DOMContentLoaded",xt,!1),e.addEventListener("load",st.ready,!1);else{V.attachEvent("onreadystatechange",xt),e.attachEvent("onload",st.ready);var n=!1;try{n=null==e.frameElement&&V.documentElement}catch(r){}n&&n.doScroll&&function i(){if(!st.isReady){try{n.doScroll("left")}catch(e){return setTimeout(i,50)}st.ready()}}()}return U.promise(t)},st.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){Q["[object "+t+"]"]=t.toLowerCase()}),X=st(V);var Tt={};st.Callbacks=function(e){e="string"==typeof e?Tt[e]||r(e):st.extend({},e);var n,i,o,a,s,u,l=[],c=!e.once&&[],f=function(t){for(n=e.memory&&t,i=!0,u=a||0,a=0,s=l.length,o=!0;l&&s>u;u++)if(l[u].apply(t[0],t[1])===!1&&e.stopOnFalse){n=!1;break}o=!1,l&&(c?c.length&&f(c.shift()):n?l=[]:p.disable())},p={add:function(){if(l){var t=l.length;(function r(t){st.each(t,function(t,n){var i=st.type(n);"function"===i?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==i&&r(n)})})(arguments),o?s=l.length:n&&(a=t,f(n))}return this},remove:function(){return l&&st.each(arguments,function(e,t){for(var n;(n=st.inArray(t,l,n))>-1;)l.splice(n,1),o&&(s>=n&&s--,u>=n&&u--)}),this},has:function(e){return st.inArray(e,l)>-1},empty:function(){return l=[],this},disable:function(){return l=c=n=t,this},disabled:function(){return!l},lock:function(){return c=t,n||p.disable(),this},locked:function(){return!c},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!l||i&&!c||(o?c.push(t):f(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},st.extend({Deferred:function(e){var t=[["resolve","done",st.Callbacks("once memory"),"resolved"],["reject","fail",st.Callbacks("once memory"),"rejected"],["notify","progress",st.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return st.Deferred(function(n){st.each(t,function(t,o){var a=o[0],s=st.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&st.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?st.extend(e,r):r}},i={};return r.pipe=r.then,st.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t,n,r,i=0,o=nt.call(arguments),a=o.length,s=1!==a||e&&st.isFunction(e.promise)?a:0,u=1===s?e:st.Deferred(),l=function(e,n,r){return function(i){n[e]=this,r[e]=arguments.length>1?nt.call(arguments):i,r===t?u.notifyWith(n,r):--s||u.resolveWith(n,r)}};if(a>1)for(t=Array(a),n=Array(a),r=Array(a);a>i;i++)o[i]&&st.isFunction(o[i].promise)?o[i].promise().done(l(i,r,o)).fail(u.reject).progress(l(i,n,t)):--s;return s||u.resolveWith(r,o),u.promise()}}),st.support=function(){var n,r,i,o,a,s,u,l,c,f,p=V.createElement("div");if(p.setAttribute("className","t"),p.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",r=p.getElementsByTagName("*"),i=p.getElementsByTagName("a")[0],!r||!i||!r.length)return{};o=V.createElement("select"),a=o.appendChild(V.createElement("option")),s=p.getElementsByTagName("input")[0],i.style.cssText="top:1px;float:left;opacity:.5",n={getSetAttribute:"t"!==p.className,leadingWhitespace:3===p.firstChild.nodeType,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(i.getAttribute("style")),hrefNormalized:"/a"===i.getAttribute("href"),opacity:/^0.5/.test(i.style.opacity),cssFloat:!!i.style.cssFloat,checkOn:!!s.value,optSelected:a.selected,enctype:!!V.createElement("form").enctype,html5Clone:"<:nav></:nav>"!==V.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===V.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},s.checked=!0,n.noCloneChecked=s.cloneNode(!0).checked,o.disabled=!0,n.optDisabled=!a.disabled;try{delete p.test}catch(d){n.deleteExpando=!1}s=V.createElement("input"),s.setAttribute("value",""),n.input=""===s.getAttribute("value"),s.value="t",s.setAttribute("type","radio"),n.radioValue="t"===s.value,s.setAttribute("checked","t"),s.setAttribute("name","t"),u=V.createDocumentFragment(),u.appendChild(s),n.appendChecked=s.checked,n.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,p.attachEvent&&(p.attachEvent("onclick",function(){n.noCloneEvent=!1}),p.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})p.setAttribute(l="on"+f,"t"),n[f+"Bubbles"]=l in e||p.attributes[l].expando===!1;return p.style.backgroundClip="content-box",p.cloneNode(!0).style.backgroundClip="",n.clearCloneStyle="content-box"===p.style.backgroundClip,st(function(){var r,i,o,a="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",s=V.getElementsByTagName("body")[0];s&&(r=V.createElement("div"),r.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",s.appendChild(r).appendChild(p),p.innerHTML="<table><tr><td></td><td>t</td></tr></table>",o=p.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",c=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",n.reliableHiddenOffsets=c&&0===o[0].offsetHeight,p.innerHTML="",p.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",n.boxSizing=4===p.offsetWidth,n.doesNotIncludeMarginInBodyOffset=1!==s.offsetTop,e.getComputedStyle&&(n.pixelPosition="1%"!==(e.getComputedStyle(p,null)||{}).top,n.boxSizingReliable="4px"===(e.getComputedStyle(p,null)||{width:"4px"}).width,i=p.appendChild(V.createElement("div")),i.style.cssText=p.style.cssText=a,i.style.marginRight=i.style.width="0",p.style.width="1px",n.reliableMarginRight=!parseFloat((e.getComputedStyle(i,null)||{}).marginRight)),p.style.zoom!==t&&(p.innerHTML="",p.style.cssText=a+"width:1px;padding:1px;display:inline;zoom:1",n.inlineBlockNeedsLayout=3===p.offsetWidth,p.style.display="block",p.innerHTML="<div></div>",p.firstChild.style.width="5px",n.shrinkWrapBlocks=3!==p.offsetWidth,s.style.zoom=1),s.removeChild(r),r=p=o=i=null)}),r=o=u=a=i=s=null,n}();var wt=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,Nt=/([A-Z])/g;st.extend({cache:{},expando:"jQuery"+(Z+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?st.cache[e[st.expando]]:e[st.expando],!!e&&!s(e)},data:function(e,t,n){return i(e,t,n,!1)},removeData:function(e,t){return o(e,t,!1)},_data:function(e,t,n){return i(e,t,n,!0)},_removeData:function(e,t){return o(e,t,!0)},acceptData:function(e){var t=e.nodeName&&st.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),st.fn.extend({data:function(e,n){var r,i,o=this[0],s=0,u=null;if(e===t){if(this.length&&(u=st.data(o),1===o.nodeType&&!st._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>s;s++)i=r[s].name,i.indexOf("data-")||(i=st.camelCase(i.substring(5)),a(o,i,u[i]));st._data(o,"parsedAttrs",!0)}return u}return"object"==typeof e?this.each(function(){st.data(this,e)}):st.access(this,function(n){return n===t?o?a(o,e,st.data(o,e)):null:(this.each(function(){st.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){st.removeData(this,e)})}}),st.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=st._data(e,n),r&&(!i||st.isArray(r)?i=st._data(e,n,st.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=st.queue(e,t),r=n.length,i=n.shift(),o=st._queueHooks(e,t),a=function(){st.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return st._data(e,n)||st._data(e,n,{empty:st.Callbacks("once memory").add(function(){st._removeData(e,t+"queue"),st._removeData(e,n)})})}}),st.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?st.queue(this[0],e):n===t?this:this.each(function(){var t=st.queue(this,e,n);st._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&st.dequeue(this,e)})},dequeue:function(e){return this.each(function(){st.dequeue(this,e)})},delay:function(e,t){return e=st.fx?st.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=st.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};for("string"!=typeof e&&(n=e,e=t),e=e||"fx";s--;)r=st._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var Ct,kt,Et=/[\t\r\n]/g,St=/\r/g,At=/^(?:input|select|textarea|button|object)$/i,jt=/^(?:a|area)$/i,Dt=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,Lt=/^(?:checked|selected)$/i,Ht=st.support.getSetAttribute,Mt=st.support.input;st.fn.extend({attr:function(e,t){return st.access(this,st.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){st.removeAttr(this,e)})},prop:function(e,t){return st.access(this,st.prop,e,t,arguments.length>1)},removeProp:function(e){return e=st.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(st.isFunction(e))return this.each(function(t){st(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(lt)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Et," "):" ")){for(o=0;i=t[o++];)0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=st.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(st.isFunction(e))return this.each(function(t){st(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(lt)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Et," "):"")){for(o=0;i=t[o++];)for(;r.indexOf(" "+i+" ")>=0;)r=r.replace(" "+i+" "," ");n.className=e?st.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return st.isFunction(e)?this.each(function(n){st(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n)for(var i,o=0,a=st(this),s=t,u=e.match(lt)||[];i=u[o++];)s=r?s:!a.hasClass(i),a[s?"addClass":"removeClass"](i);else("undefined"===n||"boolean"===n)&&(this.className&&st._data(this,"__className__",this.className),this.className=this.className||e===!1?"":st._data(this,"__className__")||"")})},hasClass:function(e){for(var t=" "+e+" ",n=0,r=this.length;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(Et," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=st.isFunction(e),this.each(function(r){var o,a=st(this);1===this.nodeType&&(o=i?e.call(this,r,a.val()):e,null==o?o="":"number"==typeof o?o+="":st.isArray(o)&&(o=st.map(o,function(e){return null==e?"":e+""})),n=st.valHooks[this.type]||st.valHooks[this.nodeName.toLowerCase()],n&&"set"in n&&n.set(this,o,"value")!==t||(this.value=o))});if(o)return n=st.valHooks[o.type]||st.valHooks[o.nodeName.toLowerCase()],n&&"get"in n&&(r=n.get(o,"value"))!==t?r:(r=o.value,"string"==typeof r?r.replace(St,""):null==r?"":r)}}}),st.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){for(var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(st.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&st.nodeName(n.parentNode,"optgroup"))){if(t=st(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=st.makeArray(t);return st(e).find("option").each(function(){this.selected=st.inArray(st(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return e.getAttribute===t?st.prop(e,n,r):(a=1!==s||!st.isXMLDoc(e),a&&(n=n.toLowerCase(),o=st.attrHooks[n]||(Dt.test(n)?kt:Ct)),r===t?o&&a&&"get"in o&&null!==(i=o.get(e,n))?i:(e.getAttribute!==t&&(i=e.getAttribute(n)),null==i?t:i):null!==r?o&&a&&"set"in o&&(i=o.set(e,r,n))!==t?i:(e.setAttribute(n,r+""),r):(st.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(lt);if(o&&1===e.nodeType)for(;n=o[i++];)r=st.propFix[n]||n,Dt.test(n)?!Ht&&Lt.test(n)?e[st.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:st.attr(e,n,""),e.removeAttribute(Ht?n:r)},attrHooks:{type:{set:function(e,t){if(!st.support.radioValue&&"radio"===t&&st.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!st.isXMLDoc(e),a&&(n=st.propFix[n]||n,o=st.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):At.test(e.nodeName)||jt.test(e.nodeName)&&e.href?0:t}}}}),kt={get:function(e,n){var r=st.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?Mt&&Ht?null!=i:Lt.test(n)?e[st.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?st.removeAttr(e,n):Mt&&Ht||!Lt.test(n)?e.setAttribute(!Ht&&st.propFix[n]||n,n):e[st.camelCase("default-"+n)]=e[n]=!0,n}},Mt&&Ht||(st.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return st.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t
2
+ },set:function(e,n,r){return st.nodeName(e,"input")?(e.defaultValue=n,t):Ct&&Ct.set(e,n,r)}}),Ht||(Ct=st.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},st.attrHooks.contenteditable={get:Ct.get,set:function(e,t,n){Ct.set(e,""===t?!1:t,n)}},st.each(["width","height"],function(e,n){st.attrHooks[n]=st.extend(st.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),st.support.hrefNormalized||(st.each(["href","src","width","height"],function(e,n){st.attrHooks[n]=st.extend(st.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),st.each(["href","src"],function(e,t){st.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),st.support.style||(st.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),st.support.optSelected||(st.propHooks.selected=st.extend(st.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),st.support.enctype||(st.propFix.enctype="encoding"),st.support.checkOn||st.each(["radio","checkbox"],function(){st.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),st.each(["radio","checkbox"],function(){st.valHooks[this]=st.extend(st.valHooks[this],{set:function(e,n){return st.isArray(n)?e.checked=st.inArray(st(e).val(),n)>=0:t}})});var qt=/^(?:input|select|textarea)$/i,_t=/^key/,Ft=/^(?:mouse|contextmenu)|click/,Ot=/^(?:focusinfocus|focusoutblur)$/,Bt=/^([^.]*)(?:\.(.+)|)$/;st.event={global:{},add:function(e,n,r,i,o){var a,s,u,l,c,f,p,d,h,g,m,y=3!==e.nodeType&&8!==e.nodeType&&st._data(e);if(y){for(r.handler&&(a=r,r=a.handler,o=a.selector),r.guid||(r.guid=st.guid++),(l=y.events)||(l=y.events={}),(s=y.handle)||(s=y.handle=function(e){return st===t||e&&st.event.triggered===e.type?t:st.event.dispatch.apply(s.elem,arguments)},s.elem=e),n=(n||"").match(lt)||[""],c=n.length;c--;)u=Bt.exec(n[c])||[],h=m=u[1],g=(u[2]||"").split(".").sort(),p=st.event.special[h]||{},h=(o?p.delegateType:p.bindType)||h,p=st.event.special[h]||{},f=st.extend({type:h,origType:m,data:i,handler:r,guid:r.guid,selector:o,needsContext:o&&st.expr.match.needsContext.test(o),namespace:g.join(".")},a),(d=l[h])||(d=l[h]=[],d.delegateCount=0,p.setup&&p.setup.call(e,i,g,s)!==!1||(e.addEventListener?e.addEventListener(h,s,!1):e.attachEvent&&e.attachEvent("on"+h,s))),p.add&&(p.add.call(e,f),f.handler.guid||(f.handler.guid=r.guid)),o?d.splice(d.delegateCount++,0,f):d.push(f),st.event.global[h]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,m=st.hasData(e)&&st._data(e);if(m&&(u=m.events)){for(t=(t||"").match(lt)||[""],l=t.length;l--;)if(s=Bt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){for(f=st.event.special[d]||{},d=(r?f.delegateType:f.bindType)||d,p=u[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;o--;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&f.teardown.call(e,h,m.handle)!==!1||st.removeEvent(e,d,m.handle),delete u[d])}else for(d in u)st.event.remove(e,d+t[l],n,r,!0);st.isEmptyObject(u)&&(delete m.handle,st._removeData(e,"events"))}},trigger:function(n,r,i,o){var a,s,u,l,c,f,p,d=[i||V],h=n.type||n,g=n.namespace?n.namespace.split("."):[];if(s=u=i=i||V,3!==i.nodeType&&8!==i.nodeType&&!Ot.test(h+st.event.triggered)&&(h.indexOf(".")>=0&&(g=h.split("."),h=g.shift(),g.sort()),c=0>h.indexOf(":")&&"on"+h,n=n[st.expando]?n:new st.Event(h,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=g.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:st.makeArray(r,[n]),p=st.event.special[h]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!st.isWindow(i)){for(l=p.delegateType||h,Ot.test(l+h)||(s=s.parentNode);s;s=s.parentNode)d.push(s),u=s;u===(i.ownerDocument||V)&&d.push(u.defaultView||u.parentWindow||e)}for(a=0;(s=d[a++])&&!n.isPropagationStopped();)n.type=a>1?l:p.bindType||h,f=(st._data(s,"events")||{})[n.type]&&st._data(s,"handle"),f&&f.apply(s,r),f=c&&s[c],f&&st.acceptData(s)&&f.apply&&f.apply(s,r)===!1&&n.preventDefault();if(n.type=h,!(o||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===h&&st.nodeName(i,"a")||!st.acceptData(i)||!c||!i[h]||st.isWindow(i))){u=i[c],u&&(i[c]=null),st.event.triggered=h;try{i[h]()}catch(m){}st.event.triggered=t,u&&(i[c]=u)}return n.result}},dispatch:function(e){e=st.event.fix(e);var n,r,i,o,a,s=[],u=nt.call(arguments),l=(st._data(this,"events")||{})[e.type]||[],c=st.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){for(s=st.event.handlers.call(this,e,l),n=0;(o=s[n++])&&!e.isPropagationStopped();)for(e.currentTarget=o.elem,r=0;(a=o.handlers[r++])&&!e.isImmediatePropagationStopped();)(!e.namespace_re||e.namespace_re.test(a.namespace))&&(e.handleObj=a,e.data=a.data,i=((st.event.special[a.origType]||{}).handle||a.handler).apply(o.elem,u),i!==t&&(e.result=i)===!1&&(e.preventDefault(),e.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(l.disabled!==!0||"click"!==e.type){for(i=[],r=0;u>r;r++)a=n[r],o=a.selector+" ",i[o]===t&&(i[o]=a.needsContext?st(o,this).index(l)>=0:st.find(o,this,null,[l]).length),i[o]&&i.push(a);i.length&&s.push({elem:l,handlers:i})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[st.expando])return e;var t,n,r=e,i=st.event.fixHooks[e.type]||{},o=i.props?this.props.concat(i.props):this.props;for(e=new st.Event(r),t=o.length;t--;)n=o[t],e[n]=r[n];return e.target||(e.target=r.srcElement||V),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,i.filter?i.filter(e,r):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,a=n.button,s=n.fromElement;return null==e.pageX&&null!=n.clientX&&(r=e.target.ownerDocument||V,i=r.documentElement,o=r.body,e.pageX=n.clientX+(i&&i.scrollLeft||o&&o.scrollLeft||0)-(i&&i.clientLeft||o&&o.clientLeft||0),e.pageY=n.clientY+(i&&i.scrollTop||o&&o.scrollTop||0)-(i&&i.clientTop||o&&o.clientTop||0)),!e.relatedTarget&&s&&(e.relatedTarget=s===e.target?n.toElement:s),e.which||a===t||(e.which=1&a?1:2&a?3:4&a?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return st.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==V.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===V.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=st.extend(new st.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?st.event.trigger(i,null,t):st.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},st.removeEvent=V.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,n,r){var i="on"+n;e.detachEvent&&(e[i]===t&&(e[i]=null),e.detachEvent(i,r))},st.Event=function(e,n){return this instanceof st.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?u:l):this.type=e,n&&st.extend(this,n),this.timeStamp=e&&e.timeStamp||st.now(),this[st.expando]=!0,t):new st.Event(e,n)},st.Event.prototype={isDefaultPrevented:l,isPropagationStopped:l,isImmediatePropagationStopped:l,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=u,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=u,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u,this.stopPropagation()}},st.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){st.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!st.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),st.support.submitBubbles||(st.event.special.submit={setup:function(){return st.nodeName(this,"form")?!1:(st.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=st.nodeName(n,"input")||st.nodeName(n,"button")?n.form:t;r&&!st._data(r,"submitBubbles")&&(st.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),st._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&st.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return st.nodeName(this,"form")?!1:(st.event.remove(this,"._submit"),t)}}),st.support.changeBubbles||(st.event.special.change={setup:function(){return qt.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(st.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),st.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),st.event.simulate("change",this,e,!0)})),!1):(st.event.add(this,"beforeactivate._change",function(e){var t=e.target;qt.test(t.nodeName)&&!st._data(t,"changeBubbles")&&(st.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||st.event.simulate("change",this.parentNode,e,!0)}),st._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return st.event.remove(this,"._change"),!qt.test(this.nodeName)}}),st.support.focusinBubbles||st.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){st.event.simulate(t,e.target,st.event.fix(e),!0)};st.event.special[t]={setup:function(){0===n++&&V.addEventListener(e,r,!0)},teardown:function(){0===--n&&V.removeEventListener(e,r,!0)}}}),st.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(s in e)this.on(s,n,r,e[s],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=l;else if(!i)return this;return 1===o&&(a=i,i=function(e){return st().off(e),a.apply(this,arguments)},i.guid=a.guid||(a.guid=st.guid++)),this.each(function(){st.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,st(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=l),this.each(function(){st.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){st.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?st.event.trigger(e,n,r,!0):t},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),st.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){st.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)},_t.test(t)&&(st.event.fixHooks[t]=st.event.keyHooks),Ft.test(t)&&(st.event.fixHooks[t]=st.event.mouseHooks)}),function(e,t){function n(e){return ht.test(e+"")}function r(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>C.cacheLength&&delete e[t.shift()],e[n]=r}}function i(e){return e[P]=!0,e}function o(e){var t=L.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function a(e,t,n,r){var i,o,a,s,u,l,c,d,h,g;if((t?t.ownerDocument||t:R)!==L&&D(t),t=t||L,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!M&&!r){if(i=gt.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&O(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return Q.apply(n,K.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&W.getByClassName&&t.getElementsByClassName)return Q.apply(n,K.call(t.getElementsByClassName(a),0)),n}if(W.qsa&&!q.test(e)){if(c=!0,d=P,h=t,g=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){for(l=f(e),(c=t.getAttribute("id"))?d=c.replace(vt,"\\$&"):t.setAttribute("id",d),d="[id='"+d+"'] ",u=l.length;u--;)l[u]=d+p(l[u]);h=dt.test(e)&&t.parentNode||t,g=l.join(",")}if(g)try{return Q.apply(n,K.call(h.querySelectorAll(g),0)),n}catch(m){}finally{c||t.removeAttribute("id")}}}return x(e.replace(at,"$1"),t,n,r)}function s(e,t){for(var n=e&&t&&e.nextSibling;n;n=n.nextSibling)if(n===t)return-1;return e?1:-1}function u(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function l(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function c(e){return i(function(t){return t=+t,i(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function f(e,t){var n,r,i,o,s,u,l,c=X[e+" "];if(c)return t?0:c.slice(0);for(s=e,u=[],l=C.preFilter;s;){(!n||(r=ut.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(i=[])),n=!1,(r=lt.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(at," ")}),s=s.slice(n.length));for(o in C.filter)!(r=pt[o].exec(s))||l[o]&&!(r=l[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?a.error(e):X(e,u).slice(0)}function p(e){for(var t=0,n=e.length,r="";n>t;t++)r+=e[t].value;return r}function d(e,t,n){var r=t.dir,i=n&&"parentNode"===t.dir,o=I++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||i)return e(t,n,o)}:function(t,n,a){var s,u,l,c=$+" "+o;if(a){for(;t=t[r];)if((1===t.nodeType||i)&&e(t,n,a))return!0}else for(;t=t[r];)if(1===t.nodeType||i)if(l=t[P]||(t[P]={}),(u=l[r])&&u[0]===c){if((s=u[1])===!0||s===N)return s===!0}else if(u=l[r]=[c],u[1]=e(t,n,a)||N,u[1]===!0)return!0}}function h(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function g(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function m(e,t,n,r,o,a){return r&&!r[P]&&(r=m(r)),o&&!o[P]&&(o=m(o,a)),i(function(i,a,s,u){var l,c,f,p=[],d=[],h=a.length,m=i||b(t||"*",s.nodeType?[s]:s,[]),y=!e||!i&&t?m:g(m,p,e,s,u),v=n?o||(i?e:h||r)?[]:a:y;if(n&&n(y,v,s,u),r)for(l=g(v,d),r(l,[],s,u),c=l.length;c--;)(f=l[c])&&(v[d[c]]=!(y[d[c]]=f));if(i){if(o||e){if(o){for(l=[],c=v.length;c--;)(f=v[c])&&l.push(y[c]=f);o(null,v=[],l,u)}for(c=v.length;c--;)(f=v[c])&&(l=o?Z.call(i,f):p[c])>-1&&(i[l]=!(a[l]=f))}}else v=g(v===a?v.splice(h,v.length):v),o?o(null,a,v,u):Q.apply(a,v)})}function y(e){for(var t,n,r,i=e.length,o=C.relative[e[0].type],a=o||C.relative[" "],s=o?1:0,u=d(function(e){return e===t},a,!0),l=d(function(e){return Z.call(t,e)>-1},a,!0),c=[function(e,n,r){return!o&&(r||n!==j)||((t=n).nodeType?u(e,n,r):l(e,n,r))}];i>s;s++)if(n=C.relative[e[s].type])c=[d(h(c),n)];else{if(n=C.filter[e[s].type].apply(null,e[s].matches),n[P]){for(r=++s;i>r&&!C.relative[e[r].type];r++);return m(s>1&&h(c),s>1&&p(e.slice(0,s-1)).replace(at,"$1"),n,r>s&&y(e.slice(s,r)),i>r&&y(e=e.slice(r)),i>r&&p(e))}c.push(n)}return h(c)}function v(e,t){var n=0,r=t.length>0,o=e.length>0,s=function(i,s,u,l,c){var f,p,d,h=[],m=0,y="0",v=i&&[],b=null!=c,x=j,T=i||o&&C.find.TAG("*",c&&s.parentNode||s),w=$+=null==x?1:Math.E;for(b&&(j=s!==L&&s,N=n);null!=(f=T[y]);y++){if(o&&f){for(p=0;d=e[p];p++)if(d(f,s,u)){l.push(f);break}b&&($=w,N=++n)}r&&((f=!d&&f)&&m--,i&&v.push(f))}if(m+=y,r&&y!==m){for(p=0;d=t[p];p++)d(v,h,s,u);if(i){if(m>0)for(;y--;)v[y]||h[y]||(h[y]=G.call(l));h=g(h)}Q.apply(l,h),b&&!i&&h.length>0&&m+t.length>1&&a.uniqueSort(l)}return b&&($=w,j=x),v};return r?i(s):s}function b(e,t,n){for(var r=0,i=t.length;i>r;r++)a(e,t[r],n);return n}function x(e,t,n,r){var i,o,a,s,u,l=f(e);if(!r&&1===l.length){if(o=l[0]=l[0].slice(0),o.length>2&&"ID"===(a=o[0]).type&&9===t.nodeType&&!M&&C.relative[o[1].type]){if(t=C.find.ID(a.matches[0].replace(xt,Tt),t)[0],!t)return n;e=e.slice(o.shift().value.length)}for(i=pt.needsContext.test(e)?-1:o.length-1;i>=0&&(a=o[i],!C.relative[s=a.type]);i--)if((u=C.find[s])&&(r=u(a.matches[0].replace(xt,Tt),dt.test(o[0].type)&&t.parentNode||t))){if(o.splice(i,1),e=r.length&&p(o),!e)return Q.apply(n,K.call(r,0)),n;break}}return S(e,l)(r,t,M,n,dt.test(e)),n}function T(){}var w,N,C,k,E,S,A,j,D,L,H,M,q,_,F,O,B,P="sizzle"+-new Date,R=e.document,W={},$=0,I=0,z=r(),X=r(),U=r(),V=typeof t,Y=1<<31,J=[],G=J.pop,Q=J.push,K=J.slice,Z=J.indexOf||function(e){for(var t=0,n=this.length;n>t;t++)if(this[t]===e)return t;return-1},et="[\\x20\\t\\r\\n\\f]",tt="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",nt=tt.replace("w","w#"),rt="([*^$|!~]?=)",it="\\["+et+"*("+tt+")"+et+"*(?:"+rt+et+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+nt+")|)|)"+et+"*\\]",ot=":("+tt+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+it.replace(3,8)+")*)|.*)\\)|)",at=RegExp("^"+et+"+|((?:^|[^\\\\])(?:\\\\.)*)"+et+"+$","g"),ut=RegExp("^"+et+"*,"+et+"*"),lt=RegExp("^"+et+"*([\\x20\\t\\r\\n\\f>+~])"+et+"*"),ct=RegExp(ot),ft=RegExp("^"+nt+"$"),pt={ID:RegExp("^#("+tt+")"),CLASS:RegExp("^\\.("+tt+")"),NAME:RegExp("^\\[name=['\"]?("+tt+")['\"]?\\]"),TAG:RegExp("^("+tt.replace("w","w*")+")"),ATTR:RegExp("^"+it),PSEUDO:RegExp("^"+ot),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+et+"*(even|odd|(([+-]|)(\\d*)n|)"+et+"*(?:([+-]|)"+et+"*(\\d+)|))"+et+"*\\)|)","i"),needsContext:RegExp("^"+et+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+et+"*((?:-\\d)?\\d*)"+et+"*\\)|)(?=[^-]|$)","i")},dt=/[\x20\t\r\n\f]*[+~]/,ht=/\{\s*\[native code\]\s*\}/,gt=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,mt=/^(?:input|select|textarea|button)$/i,yt=/^h\d$/i,vt=/'|\\/g,bt=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,xt=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,Tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{K.call(H.childNodes,0)[0].nodeType}catch(wt){K=function(e){for(var t,n=[];t=this[e];e++)n.push(t);return n}}E=a.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},D=a.setDocument=function(e){var r=e?e.ownerDocument||e:R;return r!==L&&9===r.nodeType&&r.documentElement?(L=r,H=r.documentElement,M=E(r),W.tagNameNoComments=o(function(e){return e.appendChild(r.createComment("")),!e.getElementsByTagName("*").length}),W.attributes=o(function(e){e.innerHTML="<select></select>";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),W.getByClassName=o(function(e){return e.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),W.getByName=o(function(e){e.id=P+0,e.innerHTML="<a name='"+P+"'></a><div name='"+P+"'></div>",H.insertBefore(e,H.firstChild);var t=r.getElementsByName&&r.getElementsByName(P).length===2+r.getElementsByName(P+0).length;return W.getIdNotName=!r.getElementById(P),H.removeChild(e),t}),C.attrHandle=o(function(e){return e.innerHTML="<a href='#'></a>",e.firstChild&&typeof e.firstChild.getAttribute!==V&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},W.getIdNotName?(C.find.ID=function(e,t){if(typeof t.getElementById!==V&&!M){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},C.filter.ID=function(e){var t=e.replace(xt,Tt);return function(e){return e.getAttribute("id")===t}}):(C.find.ID=function(e,n){if(typeof n.getElementById!==V&&!M){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==V&&r.getAttributeNode("id").value===e?[r]:t:[]}},C.filter.ID=function(e){var t=e.replace(xt,Tt);return function(e){var n=typeof e.getAttributeNode!==V&&e.getAttributeNode("id");return n&&n.value===t}}),C.find.TAG=W.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==V?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i];i++)1===n.nodeType&&r.push(n);return r}return o},C.find.NAME=W.getByName&&function(e,n){return typeof n.getElementsByName!==V?n.getElementsByName(name):t},C.find.CLASS=W.getByClassName&&function(e,n){return typeof n.getElementsByClassName===V||M?t:n.getElementsByClassName(e)},_=[],q=[":focus"],(W.qsa=n(r.querySelectorAll))&&(o(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||q.push("\\["+et+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||q.push(":checked")}),o(function(e){e.innerHTML="<input type='hidden' i=''/>",e.querySelectorAll("[i^='']").length&&q.push("[*^$]="+et+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),q.push(",.*:")})),(W.matchesSelector=n(F=H.matchesSelector||H.mozMatchesSelector||H.webkitMatchesSelector||H.oMatchesSelector||H.msMatchesSelector))&&o(function(e){W.disconnectedMatch=F.call(e,"div"),F.call(e,"[s!='']:x"),_.push("!=",ot)}),q=RegExp(q.join("|")),_=RegExp(_.join("|")),O=n(H.contains)||H.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},B=H.compareDocumentPosition?function(e,t){var n;return e===t?(A=!0,0):(n=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&n||e.parentNode&&11===e.parentNode.nodeType?e===r||O(R,e)?-1:t===r||O(R,t)?1:0:4&n?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var n,i=0,o=e.parentNode,a=t.parentNode,u=[e],l=[t];if(e===t)return A=!0,0;if(e.sourceIndex&&t.sourceIndex)return(~t.sourceIndex||Y)-(O(R,e)&&~e.sourceIndex||Y);if(!o||!a)return e===r?-1:t===r?1:o?-1:a?1:0;if(o===a)return s(e,t);for(n=e;n=n.parentNode;)u.unshift(n);for(n=t;n=n.parentNode;)l.unshift(n);for(;u[i]===l[i];)i++;return i?s(u[i],l[i]):u[i]===R?-1:l[i]===R?1:0},A=!1,[0,0].sort(B),W.detectDuplicates=A,L):L},a.matches=function(e,t){return a(e,null,null,t)},a.matchesSelector=function(e,t){if((e.ownerDocument||e)!==L&&D(e),t=t.replace(bt,"='$1']"),!(!W.matchesSelector||M||_&&_.test(t)||q.test(t)))try{var n=F.call(e,t);if(n||W.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return a(t,L,null,[e]).length>0},a.contains=function(e,t){return(e.ownerDocument||e)!==L&&D(e),O(e,t)},a.attr=function(e,t){var n;return(e.ownerDocument||e)!==L&&D(e),M||(t=t.toLowerCase()),(n=C.attrHandle[t])?n(e):M||W.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},a.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},a.uniqueSort=function(e){var t,n=[],r=1,i=0;if(A=!W.detectDuplicates,e.sort(B),A){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));for(;i--;)e.splice(n[i],1)}return e},k=a.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=k(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=k(t);return n},C=a.selectors={cacheLength:50,createPseudo:i,match:pt,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(xt,Tt),e[3]=(e[4]||e[5]||"").replace(xt,Tt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||a.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&a.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return pt.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&ct.test(n)&&(t=f(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(xt,Tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=z[e+" "];return t||(t=RegExp("(^|"+et+")"+e+"("+et+"|$)"))&&z(e,function(e){return t.test(e.className||typeof e.getAttribute!==V&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=a.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.substr(i.length-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.substr(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){for(;g;){for(f=t;f=f[g];)if(s?f.nodeName.toLowerCase()===y:1===f.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){for(c=m[P]||(m[P]={}),l=c[e]||[],d=l[0]===$&&l[1],p=l[0]===$&&l[2],f=d&&m.childNodes[d];f=++d&&f&&f[g]||(p=d=0)||h.pop();)if(1===f.nodeType&&++p&&f===t){c[e]=[$,d,p];break}}else if(v&&(l=(t[P]||(t[P]={}))[e])&&l[0]===$)p=l[1];else for(;(f=++d&&f&&f[g]||(p=d=0)||h.pop())&&((s?f.nodeName.toLowerCase()!==y:1!==f.nodeType)||!++p||(v&&((f[P]||(f[P]={}))[e]=[$,p]),f!==t)););return p-=i,p===r||0===p%r&&p/r>=0}}},PSEUDO:function(e,t){var n,r=C.pseudos[e]||C.setFilters[e.toLowerCase()]||a.error("unsupported pseudo: "+e);return r[P]?r(t):r.length>1?(n=[e,e,"",t],C.setFilters.hasOwnProperty(e.toLowerCase())?i(function(e,n){for(var i,o=r(e,t),a=o.length;a--;)i=Z.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:i(function(e){var t=[],n=[],r=S(e.replace(at,"$1"));return r[P]?i(function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:i(function(e){return function(t){return a(e,t).length>0}}),contains:i(function(e){return function(t){return(t.textContent||t.innerText||k(t)).indexOf(e)>-1}}),lang:i(function(e){return ft.test(e||"")||a.error("unsupported lang: "+e),e=e.replace(xt,Tt).toLowerCase(),function(t){var n;do if(n=M?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===H},focus:function(e){return e===L.activeElement&&(!L.hasFocus||L.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!C.pseudos.empty(e)},header:function(e){return yt.test(e.nodeName)},input:function(e){return mt.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:c(function(){return[0]}),last:c(function(e,t){return[t-1]}),eq:c(function(e,t,n){return[0>n?n+t:n]}),even:c(function(e,t){for(var n=0;t>n;n+=2)e.push(n);return e}),odd:c(function(e,t){for(var n=1;t>n;n+=2)e.push(n);return e}),lt:c(function(e,t,n){for(var r=0>n?n+t:n;--r>=0;)e.push(r);return e}),gt:c(function(e,t,n){for(var r=0>n?n+t:n;t>++r;)e.push(r);return e})}};for(w in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})C.pseudos[w]=u(w);for(w in{submit:!0,reset:!0})C.pseudos[w]=l(w);S=a.compile=function(e,t){var n,r=[],i=[],o=U[e+" "];if(!o){for(t||(t=f(e)),n=t.length;n--;)o=y(t[n]),o[P]?r.push(o):i.push(o);o=U(e,v(i,r))}return o},C.pseudos.nth=C.pseudos.eq,C.filters=T.prototype=C.pseudos,C.setFilters=new T,D(),a.attr=st.attr,st.find=a,st.expr=a.selectors,st.expr[":"]=st.expr.pseudos,st.unique=a.uniqueSort,st.text=a.getText,st.isXMLDoc=a.isXML,st.contains=a.contains}(e);var Pt=/Until$/,Rt=/^(?:parents|prev(?:Until|All))/,Wt=/^.[^:#\[\.,]*$/,$t=st.expr.match.needsContext,It={children:!0,contents:!0,next:!0,prev:!0};st.fn.extend({find:function(e){var t,n,r;if("string"!=typeof e)return r=this,this.pushStack(st(e).filter(function(){for(t=0;r.length>t;t++)if(st.contains(r[t],this))return!0}));for(n=[],t=0;this.length>t;t++)st.find(e,this[t],n);return n=this.pushStack(st.unique(n)),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=st(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(st.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(f(this,e,!1))},filter:function(e){return this.pushStack(f(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?$t.test(e)?st(e,this.context).index(this[0])>=0:st.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){for(var n,r=0,i=this.length,o=[],a=$t.test(e)||"string"!=typeof e?st(e,t||this.context):0;i>r;r++)for(n=this[r];n&&n.ownerDocument&&n!==t&&11!==n.nodeType;){if(a?a.index(n)>-1:st.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}return this.pushStack(o.length>1?st.unique(o):o)},index:function(e){return e?"string"==typeof e?st.inArray(this[0],st(e)):st.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?st(e,t):st.makeArray(e&&e.nodeType?[e]:e),r=st.merge(this.get(),n);return this.pushStack(st.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),st.fn.andSelf=st.fn.addBack,st.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return st.dir(e,"parentNode")},parentsUntil:function(e,t,n){return st.dir(e,"parentNode",n)},next:function(e){return c(e,"nextSibling")},prev:function(e){return c(e,"previousSibling")
3
+ },nextAll:function(e){return st.dir(e,"nextSibling")},prevAll:function(e){return st.dir(e,"previousSibling")},nextUntil:function(e,t,n){return st.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return st.dir(e,"previousSibling",n)},siblings:function(e){return st.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return st.sibling(e.firstChild)},contents:function(e){return st.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:st.merge([],e.childNodes)}},function(e,t){st.fn[e]=function(n,r){var i=st.map(this,t,n);return Pt.test(e)||(r=n),r&&"string"==typeof r&&(i=st.filter(r,i)),i=this.length>1&&!It[e]?st.unique(i):i,this.length>1&&Rt.test(e)&&(i=i.reverse()),this.pushStack(i)}}),st.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?st.find.matchesSelector(t[0],e)?[t[0]]:[]:st.find.matches(e,t)},dir:function(e,n,r){for(var i=[],o=e[n];o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!st(o).is(r));)1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});var zt="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",Xt=/ jQuery\d+="(?:null|\d+)"/g,Ut=RegExp("<(?:"+zt+")[\\s/>]","i"),Vt=/^\s+/,Yt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,Jt=/<([\w:]+)/,Gt=/<tbody/i,Qt=/<|&#?\w+;/,Kt=/<(?:script|style|link)/i,Zt=/^(?:checkbox|radio)$/i,en=/checked\s*(?:[^=]|=\s*.checked.)/i,tn=/^$|\/(?:java|ecma)script/i,nn=/^true\/(.*)/,rn=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,on={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:st.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},an=p(V),sn=an.appendChild(V.createElement("div"));on.optgroup=on.option,on.tbody=on.tfoot=on.colgroup=on.caption=on.thead,on.th=on.td,st.fn.extend({text:function(e){return st.access(this,function(e){return e===t?st.text(this):this.empty().append((this[0]&&this[0].ownerDocument||V).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(st.isFunction(e))return this.each(function(t){st(this).wrapAll(e.call(this,t))});if(this[0]){var t=st(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstChild&&1===e.firstChild.nodeType;)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return st.isFunction(e)?this.each(function(t){st(this).wrapInner(e.call(this,t))}):this.each(function(){var t=st(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=st.isFunction(e);return this.each(function(n){st(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){st.nodeName(this,"body")||st(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){for(var n,r=0;null!=(n=this[r]);r++)(!e||st.filter(e,[n]).length>0)&&(t||1!==n.nodeType||st.cleanData(b(n)),n.parentNode&&(t&&st.contains(n.ownerDocument,n)&&m(b(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&&st.cleanData(b(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&&st.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return st.clone(this,e,t)})},html:function(e){return st.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(Xt,""):t;if(!("string"!=typeof e||Kt.test(e)||!st.support.htmlSerialize&&Ut.test(e)||!st.support.leadingWhitespace&&Vt.test(e)||on[(Jt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(Yt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(st.cleanData(b(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=st.isFunction(e);return t||"string"==typeof e||(e=st(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;(n&&1===this.nodeType||11===this.nodeType)&&(st(this).remove(),t?t.parentNode.insertBefore(e,t):n.appendChild(e))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=et.apply([],e);var i,o,a,s,u,l,c=0,f=this.length,p=this,m=f-1,y=e[0],v=st.isFunction(y);if(v||!(1>=f||"string"!=typeof y||st.support.checkClone)&&en.test(y))return this.each(function(i){var o=p.eq(i);v&&(e[0]=y.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(f&&(i=st.buildFragment(e,this[0].ownerDocument,!1,this),o=i.firstChild,1===i.childNodes.length&&(i=o),o)){for(n=n&&st.nodeName(o,"tr"),a=st.map(b(i,"script"),h),s=a.length;f>c;c++)u=i,c!==m&&(u=st.clone(u,!0,!0),s&&st.merge(a,b(u,"script"))),r.call(n&&st.nodeName(this[c],"table")?d(this[c],"tbody"):this[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,st.map(a,g),c=0;s>c;c++)u=a[c],tn.test(u.type||"")&&!st._data(u,"globalEval")&&st.contains(l,u)&&(u.src?st.ajax({url:u.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):st.globalEval((u.text||u.textContent||u.innerHTML||"").replace(rn,"")));i=o=null}return this}}),st.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){st.fn[e]=function(e){for(var n,r=0,i=[],o=st(e),a=o.length-1;a>=r;r++)n=r===a?this:this.clone(!0),st(o[r])[t](n),tt.apply(i,n.get());return this.pushStack(i)}}),st.extend({clone:function(e,t,n){var r,i,o,a,s,u=st.contains(e.ownerDocument,e);if(st.support.html5Clone||st.isXMLDoc(e)||!Ut.test("<"+e.nodeName+">")?s=e.cloneNode(!0):(sn.innerHTML=e.outerHTML,sn.removeChild(s=sn.firstChild)),!(st.support.noCloneEvent&&st.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||st.isXMLDoc(e)))for(r=b(s),i=b(e),a=0;null!=(o=i[a]);++a)r[a]&&v(o,r[a]);if(t)if(n)for(i=i||b(e),r=r||b(s),a=0;null!=(o=i[a]);a++)y(o,r[a]);else y(e,s);return r=b(s,"script"),r.length>0&&m(r,!u&&b(e,"script")),r=i=o=null,s},buildFragment:function(e,t,n,r){for(var i,o,a,s,u,l,c,f=e.length,d=p(t),h=[],g=0;f>g;g++)if(o=e[g],o||0===o)if("object"===st.type(o))st.merge(h,o.nodeType?[o]:o);else if(Qt.test(o)){for(s=s||d.appendChild(t.createElement("div")),a=(Jt.exec(o)||["",""])[1].toLowerCase(),u=on[a]||on._default,s.innerHTML=u[1]+o.replace(Yt,"<$1></$2>")+u[2],c=u[0];c--;)s=s.lastChild;if(!st.support.leadingWhitespace&&Vt.test(o)&&h.push(t.createTextNode(Vt.exec(o)[0])),!st.support.tbody)for(o="table"!==a||Gt.test(o)?"<table>"!==u[1]||Gt.test(o)?0:s:s.firstChild,c=o&&o.childNodes.length;c--;)st.nodeName(l=o.childNodes[c],"tbody")&&!l.childNodes.length&&o.removeChild(l);for(st.merge(h,s.childNodes),s.textContent="";s.firstChild;)s.removeChild(s.firstChild);s=d.lastChild}else h.push(t.createTextNode(o));for(s&&d.removeChild(s),st.support.appendChecked||st.grep(b(h,"input"),x),g=0;o=h[g++];)if((!r||-1===st.inArray(o,r))&&(i=st.contains(o.ownerDocument,o),s=b(d.appendChild(o),"script"),i&&m(s),n))for(c=0;o=s[c++];)tn.test(o.type||"")&&n.push(o);return s=null,d},cleanData:function(e,n){for(var r,i,o,a,s=0,u=st.expando,l=st.cache,c=st.support.deleteExpando,f=st.event.special;null!=(o=e[s]);s++)if((n||st.acceptData(o))&&(i=o[u],r=i&&l[i])){if(r.events)for(a in r.events)f[a]?st.event.remove(o,a):st.removeEvent(o,a,r.handle);l[i]&&(delete l[i],c?delete o[u]:o.removeAttribute!==t?o.removeAttribute(u):o[u]=null,K.push(i))}}});var un,ln,cn,fn=/alpha\([^)]*\)/i,pn=/opacity\s*=\s*([^)]*)/,dn=/^(top|right|bottom|left)$/,hn=/^(none|table(?!-c[ea]).+)/,gn=/^margin/,mn=RegExp("^("+ut+")(.*)$","i"),yn=RegExp("^("+ut+")(?!px)[a-z%]+$","i"),vn=RegExp("^([+-])=("+ut+")","i"),bn={BODY:"block"},xn={position:"absolute",visibility:"hidden",display:"block"},Tn={letterSpacing:0,fontWeight:400},wn=["Top","Right","Bottom","Left"],Nn=["Webkit","O","Moz","ms"];st.fn.extend({css:function(e,n){return st.access(this,function(e,n,r){var i,o,a={},s=0;if(st.isArray(n)){for(i=ln(e),o=n.length;o>s;s++)a[n[s]]=st.css(e,n[s],!1,i);return a}return r!==t?st.style(e,n,r):st.css(e,n)},e,n,arguments.length>1)},show:function(){return N(this,!0)},hide:function(){return N(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:w(this))?st(this).show():st(this).hide()})}}),st.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=un(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":st.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=st.camelCase(n),l=e.style;if(n=st.cssProps[u]||(st.cssProps[u]=T(l,u)),s=st.cssHooks[n]||st.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=vn.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(st.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||st.cssNumber[u]||(r+="px"),st.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=st.camelCase(n);return n=st.cssProps[u]||(st.cssProps[u]=T(e.style,u)),s=st.cssHooks[n]||st.cssHooks[u],s&&"get"in s&&(o=s.get(e,!0,r)),o===t&&(o=un(e,n,i)),"normal"===o&&n in Tn&&(o=Tn[n]),r?(a=parseFloat(o),r===!0||st.isNumeric(a)?a||0:o):o},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(ln=function(t){return e.getComputedStyle(t,null)},un=function(e,n,r){var i,o,a,s=r||ln(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||st.contains(e.ownerDocument,e)||(u=st.style(e,n)),yn.test(u)&&gn.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):V.documentElement.currentStyle&&(ln=function(e){return e.currentStyle},un=function(e,n,r){var i,o,a,s=r||ln(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),yn.test(u)&&!dn.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u}),st.each(["height","width"],function(e,n){st.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&hn.test(st.css(e,"display"))?st.swap(e,xn,function(){return E(e,n,i)}):E(e,n,i):t},set:function(e,t,r){var i=r&&ln(e);return C(e,t,r?k(e,n,r,st.support.boxSizing&&"border-box"===st.css(e,"boxSizing",!1,i),i):0)}}}),st.support.opacity||(st.cssHooks.opacity={get:function(e,t){return pn.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=st.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===st.trim(o.replace(fn,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=fn.test(o)?o.replace(fn,i):o+" "+i)}}),st(function(){st.support.reliableMarginRight||(st.cssHooks.marginRight={get:function(e,n){return n?st.swap(e,{display:"inline-block"},un,[e,"marginRight"]):t}}),!st.support.pixelPosition&&st.fn.position&&st.each(["top","left"],function(e,n){st.cssHooks[n]={get:function(e,r){return r?(r=un(e,n),yn.test(r)?st(e).position()[n]+"px":r):t}}})}),st.expr&&st.expr.filters&&(st.expr.filters.hidden=function(e){return 0===e.offsetWidth&&0===e.offsetHeight||!st.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||st.css(e,"display"))},st.expr.filters.visible=function(e){return!st.expr.filters.hidden(e)}),st.each({margin:"",padding:"",border:"Width"},function(e,t){st.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];4>r;r++)i[e+wn[r]+t]=o[r]||o[r-2]||o[0];return i}},gn.test(e)||(st.cssHooks[e+t].set=C)});var Cn=/%20/g,kn=/\[\]$/,En=/\r?\n/g,Sn=/^(?:submit|button|image|reset)$/i,An=/^(?:input|select|textarea|keygen)/i;st.fn.extend({serialize:function(){return st.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=st.prop(this,"elements");return e?st.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!st(this).is(":disabled")&&An.test(this.nodeName)&&!Sn.test(e)&&(this.checked||!Zt.test(e))}).map(function(e,t){var n=st(this).val();return null==n?null:st.isArray(n)?st.map(n,function(e){return{name:t.name,value:e.replace(En,"\r\n")}}):{name:t.name,value:n.replace(En,"\r\n")}}).get()}}),st.param=function(e,n){var r,i=[],o=function(e,t){t=st.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=st.ajaxSettings&&st.ajaxSettings.traditional),st.isArray(e)||e.jquery&&!st.isPlainObject(e))st.each(e,function(){o(this.name,this.value)});else for(r in e)j(r,e[r],n,o);return i.join("&").replace(Cn,"+")};var jn,Dn,Ln=st.now(),Hn=/\?/,Mn=/#.*$/,qn=/([?&])_=[^&]*/,_n=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Fn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,On=/^(?:GET|HEAD)$/,Bn=/^\/\//,Pn=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Rn=st.fn.load,Wn={},$n={},In="*/".concat("*");try{Dn=Y.href}catch(zn){Dn=V.createElement("a"),Dn.href="",Dn=Dn.href}jn=Pn.exec(Dn.toLowerCase())||[],st.fn.load=function(e,n,r){if("string"!=typeof e&&Rn)return Rn.apply(this,arguments);var i,o,a,s=this,u=e.indexOf(" ");return u>=0&&(i=e.slice(u,e.length),e=e.slice(0,u)),st.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(o="POST"),s.length>0&&st.ajax({url:e,type:o,dataType:"html",data:n}).done(function(e){a=arguments,s.html(i?st("<div>").append(st.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,a||[e.responseText,t,e])}),this},st.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){st.fn[t]=function(e){return this.on(t,e)}}),st.each(["get","post"],function(e,n){st[n]=function(e,r,i,o){return st.isFunction(r)&&(o=o||i,i=r,r=t),st.ajax({url:e,type:n,dataType:o,data:r,success:i})}}),st.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Dn,type:"GET",isLocal:Fn.test(jn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":In,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":st.parseJSON,"text xml":st.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?H(H(e,st.ajaxSettings),t):H(st.ajaxSettings,e)},ajaxPrefilter:D(Wn),ajaxTransport:D($n),ajax:function(e,n){function r(e,n,r,s){var l,f,v,b,T,N=n;2!==x&&(x=2,u&&clearTimeout(u),i=t,a=s||"",w.readyState=e>0?4:0,r&&(b=M(p,w,r)),e>=200&&300>e||304===e?(p.ifModified&&(T=w.getResponseHeader("Last-Modified"),T&&(st.lastModified[o]=T),T=w.getResponseHeader("etag"),T&&(st.etag[o]=T)),304===e?(l=!0,N="notmodified"):(l=q(p,b),N=l.state,f=l.data,v=l.error,l=!v)):(v=N,(e||!N)&&(N="error",0>e&&(e=0))),w.status=e,w.statusText=(n||N)+"",l?g.resolveWith(d,[f,N,w]):g.rejectWith(d,[w,N,v]),w.statusCode(y),y=t,c&&h.trigger(l?"ajaxSuccess":"ajaxError",[w,p,l?f:v]),m.fireWith(d,[w,N]),c&&(h.trigger("ajaxComplete",[w,p]),--st.active||st.event.trigger("ajaxStop")))}"object"==typeof e&&(n=e,e=t),n=n||{};var i,o,a,s,u,l,c,f,p=st.ajaxSetup({},n),d=p.context||p,h=p.context&&(d.nodeType||d.jquery)?st(d):st.event,g=st.Deferred(),m=st.Callbacks("once memory"),y=p.statusCode||{},v={},b={},x=0,T="canceled",w={readyState:0,getResponseHeader:function(e){var t;if(2===x){if(!s)for(s={};t=_n.exec(a);)s[t[1].toLowerCase()]=t[2];t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===x?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return x||(e=b[n]=b[n]||e,v[e]=t),this},overrideMimeType:function(e){return x||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>x)for(t in e)y[t]=[y[t],e[t]];else w.always(e[w.status]);return this},abort:function(e){var t=e||T;return i&&i.abort(t),r(0,t),this}};if(g.promise(w).complete=m.add,w.success=w.done,w.error=w.fail,p.url=((e||p.url||Dn)+"").replace(Mn,"").replace(Bn,jn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=st.trim(p.dataType||"*").toLowerCase().match(lt)||[""],null==p.crossDomain&&(l=Pn.exec(p.url.toLowerCase()),p.crossDomain=!(!l||l[1]===jn[1]&&l[2]===jn[2]&&(l[3]||("http:"===l[1]?80:443))==(jn[3]||("http:"===jn[1]?80:443)))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=st.param(p.data,p.traditional)),L(Wn,p,n,w),2===x)return w;c=p.global,c&&0===st.active++&&st.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!On.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(Hn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=qn.test(o)?o.replace(qn,"$1_="+Ln++):o+(Hn.test(o)?"&":"?")+"_="+Ln++)),p.ifModified&&(st.lastModified[o]&&w.setRequestHeader("If-Modified-Since",st.lastModified[o]),st.etag[o]&&w.setRequestHeader("If-None-Match",st.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&w.setRequestHeader("Content-Type",p.contentType),w.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+In+"; q=0.01":""):p.accepts["*"]);for(f in p.headers)w.setRequestHeader(f,p.headers[f]);if(p.beforeSend&&(p.beforeSend.call(d,w,p)===!1||2===x))return w.abort();T="abort";for(f in{success:1,error:1,complete:1})w[f](p[f]);if(i=L($n,p,n,w)){w.readyState=1,c&&h.trigger("ajaxSend",[w,p]),p.async&&p.timeout>0&&(u=setTimeout(function(){w.abort("timeout")},p.timeout));try{x=1,i.send(v,r)}catch(N){if(!(2>x))throw N;r(-1,N)}}else r(-1,"No Transport");return w},getScript:function(e,n){return st.get(e,t,n,"script")},getJSON:function(e,t,n){return st.get(e,t,n,"json")}}),st.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return st.globalEval(e),e}}}),st.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),st.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=V.head||st("head")[0]||V.documentElement;return{send:function(t,i){n=V.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var Xn=[],Un=/(=)\?(?=&|$)|\?\?/;st.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xn.pop()||st.expando+"_"+Ln++;return this[e]=!0,e}}),st.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,u=n.jsonp!==!1&&(Un.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Un.test(n.data)&&"data");return u||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=st.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,u?n[u]=n[u].replace(Un,"$1"+o):n.jsonp!==!1&&(n.url+=(Hn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||st.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,Xn.push(o)),s&&st.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Vn,Yn,Jn=0,Gn=e.ActiveXObject&&function(){var e;for(e in Vn)Vn[e](t,!0)};st.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&_()||F()}:_,Yn=st.ajaxSettings.xhr(),st.support.cors=!!Yn&&"withCredentials"in Yn,Yn=st.support.ajax=!!Yn,Yn&&st.ajaxTransport(function(n){if(!n.crossDomain||st.support.cors){var r;return{send:function(i,o){var a,s,u=n.xhr();if(n.username?u.open(n.type,n.url,n.async,n.username,n.password):u.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)u[s]=n.xhrFields[s];n.mimeType&&u.overrideMimeType&&u.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)u.setRequestHeader(s,i[s])}catch(l){}u.send(n.hasContent&&n.data||null),r=function(e,i){var s,l,c,f,p;try{if(r&&(i||4===u.readyState))if(r=t,a&&(u.onreadystatechange=st.noop,Gn&&delete Vn[a]),i)4!==u.readyState&&u.abort();else{f={},s=u.status,p=u.responseXML,c=u.getAllResponseHeaders(),p&&p.documentElement&&(f.xml=p),"string"==typeof u.responseText&&(f.text=u.responseText);try{l=u.statusText}catch(d){l=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=f.text?200:404}}catch(h){i||o(-1,h)}f&&o(s,l,f,c)},n.async?4===u.readyState?setTimeout(r):(a=++Jn,Gn&&(Vn||(Vn={},st(e).unload(Gn)),Vn[a]=r),u.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Qn,Kn,Zn=/^(?:toggle|show|hide)$/,er=RegExp("^(?:([+-])=|)("+ut+")([a-z%]*)$","i"),tr=/queueHooks$/,nr=[W],rr={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=er.exec(t),a=i.cur(),s=+a||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(st.cssNumber[e]?"":"px"),"px"!==r&&s){s=st.css(i.elem,e,!0)||n||1;do u=u||".5",s/=u,st.style(i.elem,e,s+r);while(u!==(u=i.cur()/a)&&1!==u&&--l)}i.unit=r,i.start=s,i.end=o[1]?s+(o[1]+1)*n:n}return i}]};st.Animation=st.extend(P,{tweener:function(e,t){st.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");for(var n,r=0,i=e.length;i>r;r++)n=e[r],rr[n]=rr[n]||[],rr[n].unshift(t)},prefilter:function(e,t){t?nr.unshift(e):nr.push(e)}}),st.Tween=$,$.prototype={constructor:$,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(st.cssNumber[n]?"":"px")},cur:function(){var e=$.propHooks[this.prop];return e&&e.get?e.get(this):$.propHooks._default.get(this)},run:function(e){var t,n=$.propHooks[this.prop];return this.pos=t=this.options.duration?st.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):$.propHooks._default.set(this),this}},$.prototype.init.prototype=$.prototype,$.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=st.css(e.elem,e.prop,"auto"),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){st.fx.step[e.prop]?st.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[st.cssProps[e.prop]]||st.cssHooks[e.prop])?st.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},$.propHooks.scrollTop=$.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},st.each(["toggle","show","hide"],function(e,t){var n=st.fn[t];st.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(I(t,!0),e,r,i)}}),st.fn.extend({fadeTo:function(e,t,n,r){return this.filter(w).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=st.isEmptyObject(e),o=st.speed(t,n,r),a=function(){var t=P(this,st.extend({},e),o);a.finish=function(){t.stop(!0)},(i||st._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=st.timers,a=st._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&tr.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&st.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=st._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=st.timers,a=r?r.length:0;for(n.finish=!0,st.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),st.each({slideDown:I("show"),slideUp:I("hide"),slideToggle:I("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){st.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),st.speed=function(e,t,n){var r=e&&"object"==typeof e?st.extend({},e):{complete:n||!n&&t||st.isFunction(e)&&e,duration:e,easing:n&&t||t&&!st.isFunction(t)&&t};return r.duration=st.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in st.fx.speeds?st.fx.speeds[r.duration]:st.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){st.isFunction(r.old)&&r.old.call(this),r.queue&&st.dequeue(this,r.queue)},r},st.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},st.timers=[],st.fx=$.prototype.init,st.fx.tick=function(){var e,n=st.timers,r=0;for(Qn=st.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||st.fx.stop(),Qn=t},st.fx.timer=function(e){e()&&st.timers.push(e)&&st.fx.start()},st.fx.interval=13,st.fx.start=function(){Kn||(Kn=setInterval(st.fx.tick,st.fx.interval))},st.fx.stop=function(){clearInterval(Kn),Kn=null},st.fx.speeds={slow:600,fast:200,_default:400},st.fx.step={},st.expr&&st.expr.filters&&(st.expr.filters.animated=function(e){return st.grep(st.timers,function(t){return e===t.elem}).length}),st.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){st.offset.setOffset(this,e,t)});var n,r,i={top:0,left:0},o=this[0],a=o&&o.ownerDocument;if(a)return n=a.documentElement,st.contains(n,o)?(o.getBoundingClientRect!==t&&(i=o.getBoundingClientRect()),r=z(a),{top:i.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:i.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):i},st.offset={setOffset:function(e,t,n){var r=st.css(e,"position");"static"===r&&(e.style.position="relative");var i,o,a=st(e),s=a.offset(),u=st.css(e,"top"),l=st.css(e,"left"),c=("absolute"===r||"fixed"===r)&&st.inArray("auto",[u,l])>-1,f={},p={};c?(p=a.position(),i=p.top,o=p.left):(i=parseFloat(u)||0,o=parseFloat(l)||0),st.isFunction(t)&&(t=t.call(e,n,s)),null!=t.top&&(f.top=t.top-s.top+i),null!=t.left&&(f.left=t.left-s.left+o),"using"in t?t.using.call(e,f):a.css(f)}},st.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===st.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),st.nodeName(e[0],"html")||(n=e.offset()),n.top+=st.css(e[0],"borderTopWidth",!0),n.left+=st.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-st.css(r,"marginTop",!0),left:t.left-n.left-st.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent||V.documentElement;e&&!st.nodeName(e,"html")&&"static"===st.css(e,"position");)e=e.offsetParent;return e||V.documentElement})}}),st.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);st.fn[e]=function(i){return st.access(this,function(e,i,o){var a=z(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?st(a).scrollLeft():o,r?o:st(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}}),st.each({Height:"height",Width:"width"},function(e,n){st.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){st.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return st.access(this,function(n,r,i){var o;return st.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?st.css(n,r,s):st.style(n,r,i,s)},n,a?i:t,a,null)}})}),e.jQuery=e.$=st,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return st})})(window);
4
+ //@ sourceMappingURL=jquery.min.map
js/santander/santander.js ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery.noConflict();
2
+ jQuery(document).ready(function($) {
3
+ jQuery("a#repayment").fancybox({
4
+ 'transitionIn' : 'elastic',
5
+ 'transitionOut' : 'elastic',
6
+ 'speedIn' : 600,
7
+ 'speedOut' : 200,
8
+ 'overlayShow' : true,
9
+ 'maxWidth' : 400
10
+ });
11
+
12
+ });
package.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>Indiegroup_Santander</name>
4
+ <version>1.0.0</version>
5
+ <stability>stable</stability>
6
+ <license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Indiegroup_Santander</summary>
10
+ <description>Indiegroup_Santander</description>
11
+ <notes>Indiegroup_Santander</notes>
12
+ <authors><author><name>IndieGroup</name><user>alexanderhuyghebaert</user><email>alexander@indiegroup.be</email></author></authors>
13
+ <date>2014-06-20</date>
14
+ <time>08:17:40</time>
15
+ <contents><target name="magelocal"><dir name="Indiegroup"><dir name="Santander"><dir name="Block"><dir name="Adminhtml"><file name="Santanderbackend.php" hash="5c9f9da18ab195144e90104b3df338cb"/><file name="Test.php" hash="ff40f17dfc1a2c91eff6a669b6b49c77"/></dir><file name="Index.php" hash="819deb06657a1dd12d5202f541ab1b25"/><dir name="Product"><file name="List.php" hash="f43144799029f46f5d690dd8fdc86ed7"/></dir><file name="Reclamepromo.php" hash="792d9dda143a170003b4ee13aa9a2d85"/><file name="Reclamerentevoet.php" hash="90d768f238704361d1db8e05f205534e"/><file name="Santanderprice.php" hash="6eb35f7e7075e750d59c36a64982a121"/><file name="Tax.php" hash="af246567e74016934ec35205734329ef"/><file name=".DS_Store" hash="b3556e92dc3e1ff9f92b17b29265f74b"/></dir><dir name="Helper"><file name="Data.php" hash="90178a568594ea0cdf61223709b96559"/></dir><dir name="Model"><file name="Cron.php" hash="4c63b2d6a3de91384bf85de5d3d37b64"/><file name="Observer.php" hash="c4e350394023af78a3a05b249994c81d"/><file name="Recurring.php" hash="7cd27aaefa058c8d378b766915d914b7"/><file name="Standard.php" hash="240f65109ea94e1d10d806b6cd039c13"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SantanderbackendController.php" hash="07163b97455640372864a2fbfb7025d4"/><file name="TestController.php" hash="56fad90d59f5086642489e3a5d60dd0a"/></dir><file name="IndexController.php" hash="2242f3e3d3079fc746e9b0837428986a"/><file name="PaymentController.php" hash="5ba8259d14fd20ce17590e796a147756"/><file name=".DS_Store" hash="b3556e92dc3e1ff9f92b17b29265f74b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="54ae27a826e3077d9ba36b0e2fad359d"/><file name="config.xml" hash="0b1ffa57b951907b13cb78cb81dbe149"/><file name="system.xml" hash="d41bc6116df3000a5bf79814f22adbe6"/></dir><dir name="sql"><dir name="customerattribute_setup"><file name="mysql4-install-0.1.0.php" hash="9ba7960a2608e8831078d10f8b55015b"/></dir><dir name="order_status_setup"><file name="mysql4-install-0.1.0.php" hash="4fd4997b797cdd4330e357549d55e77a"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="f140302fad4c57a7fd593b21ab6e4f5c"/><file name="mysql4-upgrade-0.2.0-0.3.0.php" hash="004fded7dd56b8475b63071984b18b6b"/></dir><dir name="productattribute_setup"><file name="mysql4-install-0.1.0.php" hash="f681f88cd6241c9d415878644cc177eb"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="62e2f641fefa47847cfc4cd33c478a17"/><file name="mysql4-upgrade-0.2.0-0.3.0.php" hash="f865d2f3d053990f069c0cbec79ef3f1"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="salesattribute1380031596_setup"><file name="mysql4-install-0.1.0.php" hash="29f3a0757afef4da03b79f49d4fc5057"/><file name="mysql4-upgrade-0.5.0-0.6.0.php" hash="68abe79be3cc0b7460712a1f062d66b9"/><file name="mysql4-upgrade-0.6.0-0.7.0.php" hash="f0978acff00e8e3241c94ea6b6517a36"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="b8aa5a1c450918294532f4778f014862"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="329682125019f02a89791173478d2947"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="e5267e96444cd9d11f7638fbbe508403"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="3464577e02535f405f20cb4c085ef0f8"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="362a914093a9392fa511a049bf161eef"/></dir><file name=".DS_Store" hash="075c00fdae3ef3f9f81b16d65f96146b"/></dir><file name=".DS_Store" hash="f44fffdd6550a26e162518bea931b0ef"/></dir><file name=".DS_Store" hash="d247e64ddcc6b74e0826f4f9439f2bb0"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="santander.xml" hash="e5e7a5f6fe6b0e02f4f36997256cae98"/></dir><dir name="template"><dir name="santander"><file name="santanderbackend.phtml" hash="2d98e1e278ef2820c0175584db42df94"/><file name="test.phtml" hash="1282efe6cc22d7d86edd69dfb16eb0d1"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="santander.xml" hash="f66128b427d69f14ed359f0d871fc808"/></dir><dir name="template"><dir name="santander"><dir name="catalog"><dir name="product"><dir name="view"><file name=".DS_Store" hash="5a09e868d0ac6fbb6510f02eea34d21f"/></dir><file name=".DS_Store" hash="7f55ec6e468fd95ab67fc8c8c1db4385"/></dir><file name=".DS_Store" hash="379f4114909a56bca58c7bd6ca4fc246"/></dir><file name="index.phtml" hash="48d6a10f93b6c188784d6a57d655c33d"/><file name="list.phtml" hash="a7eb9c108797ca2a6ffe621c82c0f5f8"/><file name="reclamepromo.phtml" hash="f7aa9b34a188ec4a1687195322577600"/><file name="reclamerentevoet.phtml" hash="fc05d4d04d2892d30c3f3e5f157bc12d"/><file name="redirect.phtml" hash="f3241c6096d96762042a344d9c4eee91"/><file name="santanderprice.phtml" hash="b2c90c41b2ce19ab64b43d9fe2ef72c1"/><dir name="tax"><file name="grandtotal.phtml" hash="a56e1c60a3a47cccaea8cbe79f924a9b"/></dir><file name=".DS_Store" hash="ce2f3c099b5383e7d982440055903551"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Indiegroup_Santander.xml" hash="fe2696748ab055708076e8f1b64ea81b"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Indiegroup_Santander.csv" hash="97407a6b6ff4db03e7bcf12468445437"/></dir><dir name="fr_FR"><file name="Indiegroup_Santander.csv" hash="2b9c70f9bcd9813c062fd8bec73afe4b"/></dir><dir name="nl_NL"><file name="Indiegroup_Santander.csv" hash="b56322bf38aba32015f4849d334085e2"/></dir></dir></target><target name="mage"><dir name="js"><dir name="fancybox"><file name="jquery.fancybox.js" hash="921e9cb04ad6e2559869ec845c5be39b"/></dir><dir name="jquery"><file name="jquery-1.9.0.min.js" hash="0652da382b6fceb033dfe2b6c06d4d11"/></dir><dir name="santander"><file name="santander.js" hash="7db156a2051d2630a4c5d44e34408e36"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><file name="config.rb" hash="fa2484cc0d71d1f7400892657375ef75"/><dir name="css"><file name="jquery.fancybox.css" hash="1ceaf04dfd36c5d2b32ebe8b8148321a"/><file name="santander.css" hash="b82ef1d4043dc8959b0e1c8061f0a000"/></dir><dir name="images"><dir name="fancybox"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="close.png" hash="e5618d56e362a9791dcaaf0b082e2183"/><file name="close@2x.png" hash="e13da634d7799c117f410a124e0e4815"/><file name="fancybox_loading.gif" hash="328cc0f6c78211485058d460e80f4fa8"/><file name="fancybox_loading@2x.gif" hash="f92938639fa894a0e8ded1c3368abe98"/><file name="fancybox_overlay.png" hash="77aeaa52715b898b73c74d68c630330e"/><file name="fancybox_sprite.png" hash="783d4031fe50c3d83c960911e1fbc705"/><file name="fancybox_sprite@2x.png" hash="ed9970ce22242421e66ff150aa97fe5f"/></dir></dir></dir></dir></dir></target></contents>
16
+ <compatible/>
17
+ <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.7</min><max>1.8.1.0</max></package></required></dependencies>
18
+ </package>
skin/frontend/base/default/config.rb ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Require any additional compass plugins here.
2
+
3
+ # Set this to the root of your project when deployed:
4
+ http_path = "/"
5
+ css_dir = "css"
6
+ sass_dir = "sass"
7
+ images_dir = "images"
8
+ javascripts_dir = "js"
9
+
10
+ # You can select your preferred output style here (can be overridden via the command line):
11
+ # output_style = :expanded or :nested or :compact or :compressed
12
+
13
+ # To enable relative paths to assets via compass helper functions. Uncomment:
14
+ relative_assets = true
15
+
16
+ # To disable debugging comments that display the original location of your selectors. Uncomment:
17
+ # line_comments = false
18
+
19
+
20
+ # If you prefer the indented syntax, you might want to regenerate this
21
+ # project again passing --syntax sass, or you can uncomment this:
22
+ # preferred_syntax = :sass
23
+ # and then run:
24
+ # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
skin/frontend/base/default/css/jquery.fancybox.css ADDED
@@ -0,0 +1,274 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
2
+ .fancybox-wrap,
3
+ .fancybox-skin,
4
+ .fancybox-outer,
5
+ .fancybox-inner,
6
+ .fancybox-image,
7
+ .fancybox-wrap iframe,
8
+ .fancybox-wrap object,
9
+ .fancybox-nav,
10
+ .fancybox-nav span,
11
+ .fancybox-tmp
12
+ {
13
+ padding: 0;
14
+ margin: 0;
15
+ border: 0;
16
+ outline: none;
17
+ vertical-align: top;
18
+ }
19
+
20
+ .fancybox-wrap {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ z-index: 8020;
25
+ }
26
+
27
+ .fancybox-skin {
28
+ position: relative;
29
+ background: #f9f9f9;
30
+ color: #444;
31
+ text-shadow: none;
32
+ -webkit-border-radius: 4px;
33
+ -moz-border-radius: 4px;
34
+ border-radius: 4px;
35
+ }
36
+
37
+ .fancybox-opened {
38
+ z-index: 8030;
39
+ }
40
+
41
+ .fancybox-opened .fancybox-skin {
42
+ -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
43
+ -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
44
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
45
+ }
46
+
47
+ .fancybox-outer, .fancybox-inner {
48
+ position: relative;
49
+ }
50
+
51
+ .fancybox-inner {
52
+ overflow: hidden;
53
+ }
54
+
55
+ .fancybox-type-iframe .fancybox-inner {
56
+ -webkit-overflow-scrolling: touch;
57
+ }
58
+
59
+ .fancybox-error {
60
+ color: #444;
61
+ font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
62
+ margin: 0;
63
+ padding: 15px;
64
+ white-space: nowrap;
65
+ }
66
+
67
+ .fancybox-image, .fancybox-iframe {
68
+ display: block;
69
+ width: 100%;
70
+ height: 100%;
71
+ }
72
+
73
+ .fancybox-image {
74
+ max-width: 100%;
75
+ max-height: 100%;
76
+ }
77
+
78
+ #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
79
+ background-image: url('../images/fancybox/fancybox_sprite.png');
80
+ }
81
+
82
+ #fancybox-loading {
83
+ position: fixed;
84
+ top: 50%;
85
+ left: 50%;
86
+ margin-top: -22px;
87
+ margin-left: -22px;
88
+ background-position: 0 -108px;
89
+ opacity: 0.8;
90
+ cursor: pointer;
91
+ z-index: 8060;
92
+ }
93
+
94
+ #fancybox-loading div {
95
+ width: 44px;
96
+ height: 44px;
97
+ background: url('../images/fancybox/fancybox_loading.gif') center center no-repeat;
98
+ }
99
+
100
+ .fancybox-close {
101
+ position: absolute;
102
+ top: -18px;
103
+ right: -18px;
104
+ width: 36px;
105
+ height: 36px;
106
+ cursor: pointer;
107
+ z-index: 8040;
108
+ }
109
+
110
+ .fancybox-nav {
111
+ position: absolute;
112
+ top: 0;
113
+ width: 40%;
114
+ height: 100%;
115
+ cursor: pointer;
116
+ text-decoration: none;
117
+ background: transparent url('../images/fancybox/blank.gif'); /* helps IE */
118
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
119
+ z-index: 8040;
120
+ }
121
+
122
+ .fancybox-prev {
123
+ left: 0;
124
+ }
125
+
126
+ .fancybox-next {
127
+ right: 0;
128
+ }
129
+
130
+ .fancybox-nav span {
131
+ position: absolute;
132
+ top: 50%;
133
+ width: 36px;
134
+ height: 34px;
135
+ margin-top: -18px;
136
+ cursor: pointer;
137
+ z-index: 8040;
138
+ visibility: hidden;
139
+ }
140
+
141
+ .fancybox-prev span {
142
+ left: 10px;
143
+ background-position: 0 -36px;
144
+ }
145
+
146
+ .fancybox-next span {
147
+ right: 10px;
148
+ background-position: 0 -72px;
149
+ }
150
+
151
+ .fancybox-nav:hover span {
152
+ visibility: visible;
153
+ }
154
+
155
+ .fancybox-tmp {
156
+ position: absolute;
157
+ top: -99999px;
158
+ left: -99999px;
159
+ visibility: hidden;
160
+ max-width: 99999px;
161
+ max-height: 99999px;
162
+ overflow: visible !important;
163
+ }
164
+
165
+ /* Overlay helper */
166
+
167
+ .fancybox-lock {
168
+ overflow: hidden !important;
169
+ width: auto;
170
+ }
171
+
172
+ .fancybox-lock body {
173
+ overflow: hidden !important;
174
+ }
175
+
176
+ .fancybox-lock-test {
177
+ overflow-y: hidden !important;
178
+ }
179
+
180
+ .fancybox-overlay {
181
+ position: absolute;
182
+ top: 0;
183
+ left: 0;
184
+ overflow: hidden;
185
+ display: none;
186
+ z-index: 8010;
187
+ background: url('../images/fancybox/fancybox_overlay.png');
188
+ }
189
+
190
+ .fancybox-overlay-fixed {
191
+ position: fixed;
192
+ bottom: 0;
193
+ right: 0;
194
+ }
195
+
196
+ .fancybox-lock .fancybox-overlay {
197
+ overflow: auto;
198
+ overflow-y: scroll;
199
+ }
200
+
201
+ /* Title helper */
202
+
203
+ .fancybox-title {
204
+ visibility: hidden;
205
+ font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
206
+ position: relative;
207
+ text-shadow: none;
208
+ z-index: 8050;
209
+ }
210
+
211
+ .fancybox-opened .fancybox-title {
212
+ visibility: visible;
213
+ }
214
+
215
+ .fancybox-title-float-wrap {
216
+ position: absolute;
217
+ bottom: 0;
218
+ right: 50%;
219
+ margin-bottom: -35px;
220
+ z-index: 8050;
221
+ text-align: center;
222
+ }
223
+
224
+ .fancybox-title-float-wrap .child {
225
+ display: inline-block;
226
+ margin-right: -100%;
227
+ padding: 2px 20px;
228
+ background: transparent; /* Fallback for web browsers that doesn't support RGBa */
229
+ background: rgba(0, 0, 0, 0.8);
230
+ -webkit-border-radius: 15px;
231
+ -moz-border-radius: 15px;
232
+ border-radius: 15px;
233
+ text-shadow: 0 1px 2px #222;
234
+ color: #FFF;
235
+ font-weight: bold;
236
+ line-height: 24px;
237
+ white-space: nowrap;
238
+ }
239
+
240
+ .fancybox-title-outside-wrap {
241
+ position: relative;
242
+ margin-top: 10px;
243
+ color: #fff;
244
+ }
245
+
246
+ .fancybox-title-inside-wrap {
247
+ padding-top: 10px;
248
+ }
249
+
250
+ .fancybox-title-over-wrap {
251
+ position: absolute;
252
+ bottom: 0;
253
+ left: 0;
254
+ color: #fff;
255
+ padding: 10px;
256
+ background: #000;
257
+ background: rgba(0, 0, 0, .8);
258
+ }
259
+
260
+ /*Retina graphics!*/
261
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
262
+ only screen and (min--moz-device-pixel-ratio: 1.5),
263
+ only screen and (min-device-pixel-ratio: 1.5){
264
+
265
+ #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
266
+ background-image: url('../images/fancybox/fancybox_sprite@2x.png');
267
+ background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
268
+ }
269
+
270
+ #fancybox-loading div {
271
+ background-image: url('../images/fancybox/fancybox_loading@2x.gif');
272
+ background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
273
+ }
274
+ }
skin/frontend/base/default/css/santander.css ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Welcome to Compass.
2
+ * In this file you should write your main styles. (or centralize your imports)
3
+ * Import this file using the following HTML or equivalent:
4
+ * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
5
+ /* line 32, ../sass/santander.scss */
6
+ .fancybox-opened .fancybox-skin {
7
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) !important;
8
+ border-radius: 0 !important;
9
+ padding: 20px 25px 20px 25px !important;
10
+ border: 3px solid #cfcfcf;
11
+ }
12
+
13
+ /* line 38, ../sass/santander.scss */
14
+ .fancybox-close {
15
+ background-repeat: no-repeat !important;
16
+ background-position: 50% 50% !important;
17
+ background-color: #db0067 !important;
18
+ background-image: url("../images/fancybox/close.png") !important;
19
+ background-size: 14px 14px !important;
20
+ cursor: pointer;
21
+ height: 32px !important;
22
+ width: 32px !important;
23
+ right: -35px !important;
24
+ top: -3px !important;
25
+ width: 36px;
26
+ z-index: 8040;
27
+ -webkit-transition: background-color 400ms ease-in-out;
28
+ -moz-transition: background-color 400ms ease-in-out;
29
+ -ms-transition: background-color 400ms ease-in-out;
30
+ -o-transition: background-color 400ms ease-in-out;
31
+ transition: background-color 400ms ease-in-out;
32
+ }
33
+ @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
34
+ /* line 17, ../sass/santander.scss */
35
+ .fancybox-close {
36
+ background-image: url("../images/fancybox/close@2x.png") !important;
37
+ -webkit-background-size: 14px 14px;
38
+ -moz-background-size: 14px 14px;
39
+ -o-background-size: 14px 14px;
40
+ background-size: 14px 14px;
41
+ }
42
+ }
43
+ /* line 52, ../sass/santander.scss */
44
+ .fancybox-close:hover {
45
+ background-color: #c2005b !important;
46
+ }
47
+
48
+ /* line 57, ../sass/santander.scss */
49
+ #santander_information {
50
+ text-align: left;
51
+ }
52
+ /* line 59, ../sass/santander.scss */
53
+ #santander_information h3 {
54
+ margin-bottom: 10px;
55
+ color: #189dba;
56
+ font: 18px/1.2em "trebuchet ms", sans-serif;
57
+ font-weight: normal;
58
+ }
59
+ /* line 65, ../sass/santander.scss */
60
+ #santander_information p {
61
+ margin-bottom: 10px;
62
+ }
63
+ /* line 68, ../sass/santander.scss */
64
+ #santander_information table {
65
+ margin-bottom: 10px;
66
+ }
67
+ /* line 2, ../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.scss */
68
+ #santander_information table th {
69
+ text-align: center;
70
+ font-weight: bold;
71
+ }
72
+ /* line 6, ../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.scss */
73
+ #santander_information table td,
74
+ #santander_information table th {
75
+ padding: 2px;
76
+ }
77
+ /* line 8, ../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.scss */
78
+ #santander_information table td.numeric,
79
+ #santander_information table th.numeric {
80
+ text-align: right;
81
+ }
82
+ /* line 71, ../sass/santander.scss */
83
+ #santander_information table th:first-child {
84
+ text-align: left;
85
+ }
skin/frontend/base/default/images/fancybox/blank.gif ADDED
Binary file
skin/frontend/base/default/images/fancybox/close.png ADDED
Binary file
skin/frontend/base/default/images/fancybox/close@2x.png ADDED
Binary file
skin/frontend/base/default/images/fancybox/fancybox_loading.gif ADDED
Binary file
skin/frontend/base/default/images/fancybox/fancybox_loading@2x.gif ADDED
Binary file
skin/frontend/base/default/images/fancybox/fancybox_overlay.png ADDED
Binary file
skin/frontend/base/default/images/fancybox/fancybox_sprite.png ADDED
Binary file
skin/frontend/base/default/images/fancybox/fancybox_sprite@2x.png ADDED
Binary file