materio_subscriptions.strongarm.inc 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184
  1. <?php
  2. /**
  3. * @file
  4. * materio_subscriptions.strongarm.inc
  5. */
  6. /**
  7. * Implements hook_strongarm().
  8. */
  9. function materio_subscriptions_strongarm() {
  10. $export = array();
  11. $strongarm = new stdClass();
  12. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  13. $strongarm->api_version = 1;
  14. $strongarm->name = 'uc_address_fields';
  15. $strongarm->value = array(
  16. 'first_name' => 1,
  17. 'last_name' => 1,
  18. 'company' => 1,
  19. 'street1' => 1,
  20. 'street2' => 1,
  21. 'city' => 1,
  22. 'zone' => 1,
  23. 'country' => 1,
  24. 'postal_code' => 1,
  25. 'phone' => 1,
  26. );
  27. $export['uc_address_fields'] = $strongarm;
  28. $strongarm = new stdClass();
  29. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  30. $strongarm->api_version = 1;
  31. $strongarm->name = 'uc_address_fields_required';
  32. $strongarm->value = array(
  33. 'first_name' => 1,
  34. 'last_name' => 1,
  35. 'street1' => 1,
  36. 'city' => 1,
  37. 'country' => 1,
  38. 'postal_code' => 1,
  39. 'phone' => 1,
  40. );
  41. $export['uc_address_fields_required'] = $strongarm;
  42. $strongarm = new stdClass();
  43. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  44. $strongarm->api_version = 1;
  45. $strongarm->name = 'uc_address_fields_weight';
  46. $strongarm->value = array(
  47. 'first_name' => '-10',
  48. 'last_name' => '-9',
  49. 'company' => '-8',
  50. 'street1' => '-7',
  51. 'street2' => '-6',
  52. 'city' => '-4',
  53. 'zone' => '-3',
  54. 'country' => '-2',
  55. 'postal_code' => '-5',
  56. 'phone' => '-1',
  57. );
  58. $export['uc_address_fields_weight'] = $strongarm;
  59. $strongarm = new stdClass();
  60. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  61. $strongarm->api_version = 1;
  62. $strongarm->name = 'uc_address_format_124';
  63. $strongarm->value = '!company
  64. !first_name !last_name
  65. !street1
  66. !street2
  67. !city, !postal_code
  68. !zone_name, !country_name';
  69. $export['uc_address_format_124'] = $strongarm;
  70. $strongarm = new stdClass();
  71. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  72. $strongarm->api_version = 1;
  73. $strongarm->name = 'uc_address_format_250';
  74. $strongarm->value = '!company
  75. !first_name !last_name
  76. !street1
  77. !street2
  78. !postal_code !city
  79. !country_name_if';
  80. $export['uc_address_format_250'] = $strongarm;
  81. $strongarm = new stdClass();
  82. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  83. $strongarm->api_version = 1;
  84. $strongarm->name = 'uc_address_format_840';
  85. $strongarm->value = '!company
  86. !first_name !last_name
  87. !street1
  88. !street2
  89. !city, !zone_code !postal_code
  90. !country_name_if';
  91. $export['uc_address_format_840'] = $strongarm;
  92. $strongarm = new stdClass();
  93. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  94. $strongarm->api_version = 1;
  95. $strongarm->name = 'uc_add_item_redirect';
  96. $strongarm->value = 'cart/checkout';
  97. $export['uc_add_item_redirect'] = $strongarm;
  98. $strongarm = new stdClass();
  99. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  100. $strongarm->api_version = 1;
  101. $strongarm->name = 'uc_attribute_option_price_format';
  102. $strongarm->value = 'total';
  103. $export['uc_attribute_option_price_format'] = $strongarm;
  104. $strongarm = new stdClass();
  105. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  106. $strongarm->api_version = 1;
  107. $strongarm->name = 'uc_cap_cart_form_enabled';
  108. $strongarm->value = 1;
  109. $export['uc_cap_cart_form_enabled'] = $strongarm;
  110. $strongarm = new stdClass();
  111. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  112. $strongarm->api_version = 1;
  113. $strongarm->name = 'uc_cap_cart_form_weight';
  114. $strongarm->value = '0';
  115. $export['uc_cap_cart_form_weight'] = $strongarm;
  116. $strongarm = new stdClass();
  117. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  118. $strongarm->api_version = 1;
  119. $strongarm->name = 'uc_cap_coupon_auto_enabled';
  120. $strongarm->value = 1;
  121. $export['uc_cap_coupon_auto_enabled'] = $strongarm;
  122. $strongarm = new stdClass();
  123. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  124. $strongarm->api_version = 1;
  125. $strongarm->name = 'uc_cap_coupon_auto_weight';
  126. $strongarm->value = '1';
  127. $export['uc_cap_coupon_auto_weight'] = $strongarm;
  128. $strongarm = new stdClass();
  129. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  130. $strongarm->api_version = 1;
  131. $strongarm->name = 'uc_cap_coupon_enabled';
  132. $strongarm->value = 1;
  133. $export['uc_cap_coupon_enabled'] = $strongarm;
  134. $strongarm = new stdClass();
  135. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  136. $strongarm->api_version = 1;
  137. $strongarm->name = 'uc_cap_coupon_weight';
  138. $strongarm->value = '1';
  139. $export['uc_cap_coupon_weight'] = $strongarm;
  140. $strongarm = new stdClass();
  141. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  142. $strongarm->api_version = 1;
  143. $strongarm->name = 'uc_cap_uc_termsofservice_agreement_cart_enabled';
  144. $strongarm->value = 1;
  145. $export['uc_cap_uc_termsofservice_agreement_cart_enabled'] = $strongarm;
  146. $strongarm = new stdClass();
  147. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  148. $strongarm->api_version = 1;
  149. $strongarm->name = 'uc_cap_uc_termsofservice_agreement_cart_weight';
  150. $strongarm->value = '6';
  151. $export['uc_cap_uc_termsofservice_agreement_cart_weight'] = $strongarm;
  152. $strongarm = new stdClass();
  153. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  154. $strongarm->api_version = 1;
  155. $strongarm->name = 'uc_cart_add_item_msg';
  156. $strongarm->value = 1;
  157. $export['uc_cart_add_item_msg'] = $strongarm;
  158. $strongarm = new stdClass();
  159. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  160. $strongarm->api_version = 1;
  161. $strongarm->name = 'uc_cart_anon_duration';
  162. $strongarm->value = '4';
  163. $export['uc_cart_anon_duration'] = $strongarm;
  164. $strongarm = new stdClass();
  165. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  166. $strongarm->api_version = 1;
  167. $strongarm->name = 'uc_cart_anon_unit';
  168. $strongarm->value = 'hours';
  169. $export['uc_cart_anon_unit'] = $strongarm;
  170. $strongarm = new stdClass();
  171. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  172. $strongarm->api_version = 1;
  173. $strongarm->name = 'uc_cart_auth_duration';
  174. $strongarm->value = '2';
  175. $export['uc_cart_auth_duration'] = $strongarm;
  176. $strongarm = new stdClass();
  177. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  178. $strongarm->api_version = 1;
  179. $strongarm->name = 'uc_cart_auth_unit';
  180. $strongarm->value = 'weeks';
  181. $export['uc_cart_auth_unit'] = $strongarm;
  182. $strongarm = new stdClass();
  183. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  184. $strongarm->api_version = 1;
  185. $strongarm->name = 'uc_cart_breadcrumb_text';
  186. $strongarm->value = '';
  187. $export['uc_cart_breadcrumb_text'] = $strongarm;
  188. $strongarm = new stdClass();
  189. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  190. $strongarm->api_version = 1;
  191. $strongarm->name = 'uc_cart_breadcrumb_url';
  192. $strongarm->value = '';
  193. $export['uc_cart_breadcrumb_url'] = $strongarm;
  194. $strongarm = new stdClass();
  195. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  196. $strongarm->api_version = 1;
  197. $strongarm->name = 'uc_cart_checkout_complete_page';
  198. $strongarm->value = '';
  199. $export['uc_cart_checkout_complete_page'] = $strongarm;
  200. $strongarm = new stdClass();
  201. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  202. $strongarm->api_version = 1;
  203. $strongarm->name = 'uc_cart_delivery_not_shippable';
  204. $strongarm->value = 1;
  205. $export['uc_cart_delivery_not_shippable'] = $strongarm;
  206. $strongarm = new stdClass();
  207. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  208. $strongarm->api_version = 1;
  209. $strongarm->name = 'uc_cart_email_validation';
  210. $strongarm->value = 1;
  211. $export['uc_cart_email_validation'] = $strongarm;
  212. $strongarm = new stdClass();
  213. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  214. $strongarm->api_version = 1;
  215. $strongarm->name = 'uc_cart_mail_existing';
  216. $strongarm->value = 1;
  217. $export['uc_cart_mail_existing'] = $strongarm;
  218. $strongarm = new stdClass();
  219. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  220. $strongarm->api_version = 1;
  221. $strongarm->name = 'uc_cart_new_account_details';
  222. $strongarm->value = '<b>Optional.</b> New customers may supply custom account details.<br />We will create these for you if no values are entered.';
  223. $export['uc_cart_new_account_details'] = $strongarm;
  224. $strongarm = new stdClass();
  225. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  226. $strongarm->api_version = 1;
  227. $strongarm->name = 'uc_cart_new_account_name';
  228. $strongarm->value = 0;
  229. $export['uc_cart_new_account_name'] = $strongarm;
  230. $strongarm = new stdClass();
  231. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  232. $strongarm->api_version = 1;
  233. $strongarm->name = 'uc_cart_new_account_password';
  234. $strongarm->value = 0;
  235. $export['uc_cart_new_account_password'] = $strongarm;
  236. $strongarm = new stdClass();
  237. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  238. $strongarm->api_version = 1;
  239. $strongarm->name = 'uc_checkout_anonymous';
  240. $strongarm->value = 1;
  241. $export['uc_checkout_anonymous'] = $strongarm;
  242. $strongarm = new stdClass();
  243. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  244. $strongarm->api_version = 1;
  245. $strongarm->name = 'uc_checkout_enabled';
  246. $strongarm->value = 1;
  247. $export['uc_checkout_enabled'] = $strongarm;
  248. $strongarm = new stdClass();
  249. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  250. $strongarm->api_version = 1;
  251. $strongarm->name = 'uc_checkout_instructions';
  252. $strongarm->value = '';
  253. $export['uc_checkout_instructions'] = $strongarm;
  254. $strongarm = new stdClass();
  255. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  256. $strongarm->api_version = 1;
  257. $strongarm->name = 'uc_checkout_review_instructions';
  258. $strongarm->value = 'Your order is almost complete. Please review the details below and click \'Submit order\' if all the information is correct. You may use the \'Back\' button to make changes to your order if necessary.';
  259. $export['uc_checkout_review_instructions'] = $strongarm;
  260. $strongarm = new stdClass();
  261. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  262. $strongarm->api_version = 1;
  263. $strongarm->name = 'uc_collapse_current_pane';
  264. $strongarm->value = 0;
  265. $export['uc_collapse_current_pane'] = $strongarm;
  266. $strongarm = new stdClass();
  267. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  268. $strongarm->api_version = 1;
  269. $strongarm->name = 'uc_continue_shopping_text';
  270. $strongarm->value = '';
  271. $export['uc_continue_shopping_text'] = $strongarm;
  272. $strongarm = new stdClass();
  273. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  274. $strongarm->api_version = 1;
  275. $strongarm->name = 'uc_continue_shopping_type';
  276. $strongarm->value = 'none';
  277. $export['uc_continue_shopping_type'] = $strongarm;
  278. $strongarm = new stdClass();
  279. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  280. $strongarm->api_version = 1;
  281. $strongarm->name = 'uc_continue_shopping_url';
  282. $strongarm->value = '';
  283. $export['uc_continue_shopping_url'] = $strongarm;
  284. $strongarm = new stdClass();
  285. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  286. $strongarm->api_version = 1;
  287. $strongarm->name = 'uc_continue_shopping_use_last_url';
  288. $strongarm->value = 1;
  289. $export['uc_continue_shopping_use_last_url'] = $strongarm;
  290. $strongarm = new stdClass();
  291. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  292. $strongarm->api_version = 1;
  293. $strongarm->name = 'uc_coupon_collapse_pane';
  294. $strongarm->value = 0;
  295. $export['uc_coupon_collapse_pane'] = $strongarm;
  296. $strongarm = new stdClass();
  297. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  298. $strongarm->api_version = 1;
  299. $strongarm->name = 'uc_coupon_pane_description';
  300. $strongarm->value = 'Enter a coupon code for this order.';
  301. $export['uc_coupon_pane_description'] = $strongarm;
  302. $strongarm = new stdClass();
  303. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  304. $strongarm->api_version = 1;
  305. $strongarm->name = 'uc_credit_accepted_types';
  306. $strongarm->value = 'Visa
  307. Mastercard
  308. Discover
  309. American Express';
  310. $export['uc_credit_accepted_types'] = $strongarm;
  311. $strongarm = new stdClass();
  312. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  313. $strongarm->api_version = 1;
  314. $strongarm->name = 'uc_credit_amex';
  315. $strongarm->value = 1;
  316. $export['uc_credit_amex'] = $strongarm;
  317. $strongarm = new stdClass();
  318. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  319. $strongarm->api_version = 1;
  320. $strongarm->name = 'uc_credit_bank_enabled';
  321. $strongarm->value = 0;
  322. $export['uc_credit_bank_enabled'] = $strongarm;
  323. $strongarm = new stdClass();
  324. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  325. $strongarm->api_version = 1;
  326. $strongarm->name = 'uc_credit_cvv_enabled';
  327. $strongarm->value = 1;
  328. $export['uc_credit_cvv_enabled'] = $strongarm;
  329. $strongarm = new stdClass();
  330. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  331. $strongarm->api_version = 1;
  332. $strongarm->name = 'uc_credit_discover';
  333. $strongarm->value = 1;
  334. $export['uc_credit_discover'] = $strongarm;
  335. $strongarm = new stdClass();
  336. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  337. $strongarm->api_version = 1;
  338. $strongarm->name = 'uc_credit_encryption_path';
  339. $strongarm->value = '/Users/bachir/Sites/materio/encrypt';
  340. $export['uc_credit_encryption_path'] = $strongarm;
  341. $strongarm = new stdClass();
  342. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  343. $strongarm->api_version = 1;
  344. $strongarm->name = 'uc_credit_fail_message';
  345. $strongarm->value = 'We were unable to process your credit card payment. Please verify your details and try again. If the problem persists, contact us to complete your order.';
  346. $export['uc_credit_fail_message'] = $strongarm;
  347. $strongarm = new stdClass();
  348. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  349. $strongarm->api_version = 1;
  350. $strongarm->name = 'uc_credit_issue_enabled';
  351. $strongarm->value = 1;
  352. $export['uc_credit_issue_enabled'] = $strongarm;
  353. $strongarm = new stdClass();
  354. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  355. $strongarm->api_version = 1;
  356. $strongarm->name = 'uc_credit_mastercard';
  357. $strongarm->value = 1;
  358. $export['uc_credit_mastercard'] = $strongarm;
  359. $strongarm = new stdClass();
  360. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  361. $strongarm->api_version = 1;
  362. $strongarm->name = 'uc_credit_owner_enabled';
  363. $strongarm->value = 1;
  364. $export['uc_credit_owner_enabled'] = $strongarm;
  365. $strongarm = new stdClass();
  366. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  367. $strongarm->api_version = 1;
  368. $strongarm->name = 'uc_credit_policy';
  369. $strongarm->value = 'Your billing information must match the billing address for the credit card entered below or we will be unable to process your payment.';
  370. $export['uc_credit_policy'] = $strongarm;
  371. $strongarm = new stdClass();
  372. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  373. $strongarm->api_version = 1;
  374. $strongarm->name = 'uc_credit_start_enabled';
  375. $strongarm->value = 1;
  376. $export['uc_credit_start_enabled'] = $strongarm;
  377. $strongarm = new stdClass();
  378. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  379. $strongarm->api_version = 1;
  380. $strongarm->name = 'uc_credit_type_enabled';
  381. $strongarm->value = 1;
  382. $export['uc_credit_type_enabled'] = $strongarm;
  383. $strongarm = new stdClass();
  384. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  385. $strongarm->api_version = 1;
  386. $strongarm->name = 'uc_credit_validate_numbers';
  387. $strongarm->value = 1;
  388. $export['uc_credit_validate_numbers'] = $strongarm;
  389. $strongarm = new stdClass();
  390. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  391. $strongarm->api_version = 1;
  392. $strongarm->name = 'uc_credit_visa';
  393. $strongarm->value = 1;
  394. $export['uc_credit_visa'] = $strongarm;
  395. $strongarm = new stdClass();
  396. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  397. $strongarm->api_version = 1;
  398. $strongarm->name = 'uc_credit__active_tab';
  399. $strongarm->value = 'edit-test-gateway';
  400. $export['uc_credit__active_tab'] = $strongarm;
  401. $strongarm = new stdClass();
  402. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  403. $strongarm->api_version = 1;
  404. $strongarm->name = 'uc_currency_code';
  405. $strongarm->value = 'EUR';
  406. $export['uc_currency_code'] = $strongarm;
  407. $strongarm = new stdClass();
  408. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  409. $strongarm->api_version = 1;
  410. $strongarm->name = 'uc_currency_dec';
  411. $strongarm->value = '.';
  412. $export['uc_currency_dec'] = $strongarm;
  413. $strongarm = new stdClass();
  414. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  415. $strongarm->api_version = 1;
  416. $strongarm->name = 'uc_currency_prec';
  417. $strongarm->value = '2';
  418. $export['uc_currency_prec'] = $strongarm;
  419. $strongarm = new stdClass();
  420. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  421. $strongarm->api_version = 1;
  422. $strongarm->name = 'uc_currency_sign';
  423. $strongarm->value = '€';
  424. $export['uc_currency_sign'] = $strongarm;
  425. $strongarm = new stdClass();
  426. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  427. $strongarm->api_version = 1;
  428. $strongarm->name = 'uc_currency_thou';
  429. $strongarm->value = ',';
  430. $export['uc_currency_thou'] = $strongarm;
  431. $strongarm = new stdClass();
  432. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  433. $strongarm->api_version = 1;
  434. $strongarm->name = 'uc_customer_list_address';
  435. $strongarm->value = 'billing';
  436. $export['uc_customer_list_address'] = $strongarm;
  437. $strongarm = new stdClass();
  438. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  439. $strongarm->api_version = 1;
  440. $strongarm->name = 'uc_field_city';
  441. $strongarm->value = 'City';
  442. $export['uc_field_city'] = $strongarm;
  443. $strongarm = new stdClass();
  444. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  445. $strongarm->api_version = 1;
  446. $strongarm->name = 'uc_field_company';
  447. $strongarm->value = 'Company';
  448. $export['uc_field_company'] = $strongarm;
  449. $strongarm = new stdClass();
  450. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  451. $strongarm->api_version = 1;
  452. $strongarm->name = 'uc_field_country';
  453. $strongarm->value = 'Pays';
  454. $export['uc_field_country'] = $strongarm;
  455. $strongarm = new stdClass();
  456. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  457. $strongarm->api_version = 1;
  458. $strongarm->name = 'uc_field_first_name';
  459. $strongarm->value = 'First name';
  460. $export['uc_field_first_name'] = $strongarm;
  461. $strongarm = new stdClass();
  462. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  463. $strongarm->api_version = 1;
  464. $strongarm->name = 'uc_field_last_name';
  465. $strongarm->value = 'Last name';
  466. $export['uc_field_last_name'] = $strongarm;
  467. $strongarm = new stdClass();
  468. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  469. $strongarm->api_version = 1;
  470. $strongarm->name = 'uc_field_phone';
  471. $strongarm->value = 'Phone number';
  472. $export['uc_field_phone'] = $strongarm;
  473. $strongarm = new stdClass();
  474. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  475. $strongarm->api_version = 1;
  476. $strongarm->name = 'uc_field_postal_code';
  477. $strongarm->value = 'Postal code';
  478. $export['uc_field_postal_code'] = $strongarm;
  479. $strongarm = new stdClass();
  480. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  481. $strongarm->api_version = 1;
  482. $strongarm->name = 'uc_field_street1';
  483. $strongarm->value = 'Street address';
  484. $export['uc_field_street1'] = $strongarm;
  485. $strongarm = new stdClass();
  486. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  487. $strongarm->api_version = 1;
  488. $strongarm->name = 'uc_field_street2';
  489. $strongarm->value = '';
  490. $export['uc_field_street2'] = $strongarm;
  491. $strongarm = new stdClass();
  492. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  493. $strongarm->api_version = 1;
  494. $strongarm->name = 'uc_field_zone';
  495. $strongarm->value = 'State/Province';
  496. $export['uc_field_zone'] = $strongarm;
  497. $strongarm = new stdClass();
  498. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  499. $strongarm->api_version = 1;
  500. $strongarm->name = 'uc_footer_message';
  501. $strongarm->value = 'none';
  502. $export['uc_footer_message'] = $strongarm;
  503. $strongarm = new stdClass();
  504. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  505. $strongarm->api_version = 1;
  506. $strongarm->name = 'uc_image_product';
  507. $strongarm->value = 'uc_product_image';
  508. $export['uc_image_product'] = $strongarm;
  509. $strongarm = new stdClass();
  510. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  511. $strongarm->api_version = 1;
  512. $strongarm->name = 'uc_length_format_cm';
  513. $strongarm->value = '!value cm';
  514. $export['uc_length_format_cm'] = $strongarm;
  515. $strongarm = new stdClass();
  516. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  517. $strongarm->api_version = 1;
  518. $strongarm->name = 'uc_length_format_ft';
  519. $strongarm->value = '!value ft';
  520. $export['uc_length_format_ft'] = $strongarm;
  521. $strongarm = new stdClass();
  522. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  523. $strongarm->api_version = 1;
  524. $strongarm->name = 'uc_length_format_in';
  525. $strongarm->value = '!value in';
  526. $export['uc_length_format_in'] = $strongarm;
  527. $strongarm = new stdClass();
  528. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  529. $strongarm->api_version = 1;
  530. $strongarm->name = 'uc_length_format_mm';
  531. $strongarm->value = '!value mm';
  532. $export['uc_length_format_mm'] = $strongarm;
  533. $strongarm = new stdClass();
  534. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  535. $strongarm->api_version = 1;
  536. $strongarm->name = 'uc_length_unit';
  537. $strongarm->value = 'cm';
  538. $export['uc_length_unit'] = $strongarm;
  539. $strongarm = new stdClass();
  540. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  541. $strongarm->api_version = 1;
  542. $strongarm->name = 'uc_minimum_subtotal';
  543. $strongarm->value = '1.00';
  544. $export['uc_minimum_subtotal'] = $strongarm;
  545. $strongarm = new stdClass();
  546. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  547. $strongarm->api_version = 1;
  548. $strongarm->name = 'uc_msg_continue_shopping';
  549. $strongarm->value = '<a href="[site:url]">Return to the front page.</a>';
  550. $export['uc_msg_continue_shopping'] = $strongarm;
  551. $strongarm = new stdClass();
  552. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  553. $strongarm->api_version = 1;
  554. $strongarm->name = 'uc_msg_order_existing_user';
  555. $strongarm->value = 'Thank you for shopping at [store:name]. Your current order has been attached to the account we found matching your e-mail address.
  556. <a href="/fr/user">Login</a> to view your current order status and order history. Remember to login when you make your next purchase for a faster checkout experience!';
  557. $export['uc_msg_order_existing_user'] = $strongarm;
  558. $strongarm = new stdClass();
  559. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  560. $strongarm->api_version = 1;
  561. $strongarm->name = 'uc_msg_order_logged_in';
  562. $strongarm->value = 'Thank you for shopping at [store:name]. While logged in, you may continue shopping or <a href="[uc_order:url]">view your current order status</a> and order history.';
  563. $export['uc_msg_order_logged_in'] = $strongarm;
  564. $strongarm = new stdClass();
  565. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  566. $strongarm->api_version = 1;
  567. $strongarm->name = 'uc_msg_order_new_user';
  568. $strongarm->value = 'Thank you for shopping at [store:name]. A new account has been created for you here that you may use to view your current order status.
  569. <a href="/fr/user">Login</a> to your new account using the following information:
  570. <strong>Username:</strong> !new_username
  571. <strong>Password:</strong> !new_password';
  572. $export['uc_msg_order_new_user'] = $strongarm;
  573. $strongarm = new stdClass();
  574. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  575. $strongarm->api_version = 1;
  576. $strongarm->name = 'uc_msg_order_new_user_logged_in';
  577. $strongarm->value = 'Thank you for shopping at [store:name]. A new account has been created for you here that you may use to view your current order status.
  578. Your password and further instructions have been sent to your e-mail address.
  579. For your convenience, you are already logged in with your newly created account.';
  580. $export['uc_msg_order_new_user_logged_in'] = $strongarm;
  581. $strongarm = new stdClass();
  582. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  583. $strongarm->api_version = 1;
  584. $strongarm->name = 'uc_msg_order_submit';
  585. $strongarm->value = 'Your order is complete! Your order number is [uc_order:order-number].';
  586. $export['uc_msg_order_submit'] = $strongarm;
  587. $strongarm = new stdClass();
  588. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  589. $strongarm->api_version = 1;
  590. $strongarm->name = 'uc_new_customer_email';
  591. $strongarm->value = 1;
  592. $export['uc_new_customer_email'] = $strongarm;
  593. $strongarm = new stdClass();
  594. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  595. $strongarm->api_version = 1;
  596. $strongarm->name = 'uc_new_customer_login';
  597. $strongarm->value = 1;
  598. $export['uc_new_customer_login'] = $strongarm;
  599. $strongarm = new stdClass();
  600. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  601. $strongarm->api_version = 1;
  602. $strongarm->name = 'uc_new_customer_status_active';
  603. $strongarm->value = 1;
  604. $export['uc_new_customer_status_active'] = $strongarm;
  605. $strongarm = new stdClass();
  606. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  607. $strongarm->api_version = 1;
  608. $strongarm->name = 'uc_order_capitalize_addresses';
  609. $strongarm->value = 1;
  610. $export['uc_order_capitalize_addresses'] = $strongarm;
  611. $strongarm = new stdClass();
  612. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  613. $strongarm->api_version = 1;
  614. $strongarm->name = 'uc_pane_billing_enabled';
  615. $strongarm->value = 1;
  616. $export['uc_pane_billing_enabled'] = $strongarm;
  617. $strongarm = new stdClass();
  618. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  619. $strongarm->api_version = 1;
  620. $strongarm->name = 'uc_pane_billing_weight';
  621. $strongarm->value = '4';
  622. $export['uc_pane_billing_weight'] = $strongarm;
  623. $strongarm = new stdClass();
  624. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  625. $strongarm->api_version = 1;
  626. $strongarm->name = 'uc_pane_cart_enabled';
  627. $strongarm->value = 1;
  628. $export['uc_pane_cart_enabled'] = $strongarm;
  629. $strongarm = new stdClass();
  630. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  631. $strongarm->api_version = 1;
  632. $strongarm->name = 'uc_pane_cart_weight';
  633. $strongarm->value = '1';
  634. $export['uc_pane_cart_weight'] = $strongarm;
  635. $strongarm = new stdClass();
  636. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  637. $strongarm->api_version = 1;
  638. $strongarm->name = 'uc_pane_comments_enabled';
  639. $strongarm->value = 0;
  640. $export['uc_pane_comments_enabled'] = $strongarm;
  641. $strongarm = new stdClass();
  642. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  643. $strongarm->api_version = 1;
  644. $strongarm->name = 'uc_pane_comments_weight';
  645. $strongarm->value = '7';
  646. $export['uc_pane_comments_weight'] = $strongarm;
  647. $strongarm = new stdClass();
  648. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  649. $strongarm->api_version = 1;
  650. $strongarm->name = 'uc_pane_coupon_automatic_enabled';
  651. $strongarm->value = 1;
  652. $export['uc_pane_coupon_automatic_enabled'] = $strongarm;
  653. $strongarm = new stdClass();
  654. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  655. $strongarm->api_version = 1;
  656. $strongarm->name = 'uc_pane_coupon_automatic_weight';
  657. $strongarm->value = '5';
  658. $export['uc_pane_coupon_automatic_weight'] = $strongarm;
  659. $strongarm = new stdClass();
  660. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  661. $strongarm->api_version = 1;
  662. $strongarm->name = 'uc_pane_coupon_enabled';
  663. $strongarm->value = 1;
  664. $export['uc_pane_coupon_enabled'] = $strongarm;
  665. $strongarm = new stdClass();
  666. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  667. $strongarm->api_version = 1;
  668. $strongarm->name = 'uc_pane_coupon_weight';
  669. $strongarm->value = '5';
  670. $export['uc_pane_coupon_weight'] = $strongarm;
  671. $strongarm = new stdClass();
  672. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  673. $strongarm->api_version = 1;
  674. $strongarm->name = 'uc_pane_customer_enabled';
  675. $strongarm->value = 1;
  676. $export['uc_pane_customer_enabled'] = $strongarm;
  677. $strongarm = new stdClass();
  678. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  679. $strongarm->api_version = 1;
  680. $strongarm->name = 'uc_pane_customer_weight';
  681. $strongarm->value = '2';
  682. $export['uc_pane_customer_weight'] = $strongarm;
  683. $strongarm = new stdClass();
  684. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  685. $strongarm->api_version = 1;
  686. $strongarm->name = 'uc_pane_delivery_enabled';
  687. $strongarm->value = 0;
  688. $export['uc_pane_delivery_enabled'] = $strongarm;
  689. $strongarm = new stdClass();
  690. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  691. $strongarm->api_version = 1;
  692. $strongarm->name = 'uc_pane_delivery_weight';
  693. $strongarm->value = '3';
  694. $export['uc_pane_delivery_weight'] = $strongarm;
  695. $strongarm = new stdClass();
  696. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  697. $strongarm->api_version = 1;
  698. $strongarm->name = 'uc_pane_payment_enabled';
  699. $strongarm->value = 1;
  700. $export['uc_pane_payment_enabled'] = $strongarm;
  701. $strongarm = new stdClass();
  702. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  703. $strongarm->api_version = 1;
  704. $strongarm->name = 'uc_pane_payment_weight';
  705. $strongarm->value = '6';
  706. $export['uc_pane_payment_weight'] = $strongarm;
  707. $strongarm = new stdClass();
  708. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  709. $strongarm->api_version = 1;
  710. $strongarm->name = 'uc_pane_uc_termsofservice_agreement_checkout_enabled';
  711. $strongarm->value = 1;
  712. $export['uc_pane_uc_termsofservice_agreement_checkout_enabled'] = $strongarm;
  713. $strongarm = new stdClass();
  714. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  715. $strongarm->api_version = 1;
  716. $strongarm->name = 'uc_pane_uc_termsofservice_agreement_checkout_weight';
  717. $strongarm->value = '6';
  718. $export['uc_pane_uc_termsofservice_agreement_checkout_weight'] = $strongarm;
  719. $strongarm = new stdClass();
  720. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  721. $strongarm->api_version = 1;
  722. $strongarm->name = 'uc_payment_credit_gateway';
  723. $strongarm->value = 'test_gateway';
  724. $export['uc_payment_credit_gateway'] = $strongarm;
  725. $strongarm = new stdClass();
  726. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  727. $strongarm->api_version = 1;
  728. $strongarm->name = 'uc_payment_show_order_total_preview';
  729. $strongarm->value = 1;
  730. $export['uc_payment_show_order_total_preview'] = $strongarm;
  731. $strongarm = new stdClass();
  732. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  733. $strongarm->api_version = 1;
  734. $strongarm->name = 'uc_pg_test_gateway_cc_txn_type';
  735. $strongarm->value = 'auth_capture';
  736. $export['uc_pg_test_gateway_cc_txn_type'] = $strongarm;
  737. $strongarm = new stdClass();
  738. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  739. $strongarm->api_version = 1;
  740. $strongarm->name = 'uc_pg_test_gateway_enabled';
  741. $strongarm->value = 1;
  742. $export['uc_pg_test_gateway_enabled'] = $strongarm;
  743. $strongarm = new stdClass();
  744. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  745. $strongarm->api_version = 1;
  746. $strongarm->name = 'uc_product_add_to_cart_qty';
  747. $strongarm->value = 0;
  748. $export['uc_product_add_to_cart_qty'] = $strongarm;
  749. $strongarm = new stdClass();
  750. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  751. $strongarm->api_version = 1;
  752. $strongarm->name = 'uc_product_image_widget';
  753. $strongarm->value = '';
  754. $export['uc_product_image_widget'] = $strongarm;
  755. $strongarm = new stdClass();
  756. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  757. $strongarm->api_version = 1;
  758. $strongarm->name = 'uc_product_update_node_view';
  759. $strongarm->value = 0;
  760. $export['uc_product_update_node_view'] = $strongarm;
  761. $strongarm = new stdClass();
  762. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  763. $strongarm->api_version = 1;
  764. $strongarm->name = 'uc_reports_reported_statuses';
  765. $strongarm->value = array(
  766. 'abandoned' => 'abandoned',
  767. 'canceled' => 'canceled',
  768. 'in_checkout' => 'in_checkout',
  769. 'pending' => 'pending',
  770. 'processing' => 'processing',
  771. 'payment_received' => 'payment_received',
  772. 'completed' => 'completed',
  773. );
  774. $export['uc_reports_reported_statuses'] = $strongarm;
  775. $strongarm = new stdClass();
  776. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  777. $strongarm->api_version = 1;
  778. $strongarm->name = 'uc_reports_table_size';
  779. $strongarm->value = '30';
  780. $export['uc_reports_table_size'] = $strongarm;
  781. $strongarm = new stdClass();
  782. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  783. $strongarm->api_version = 1;
  784. $strongarm->name = 'uc_roles_default_by_quantity';
  785. $strongarm->value = 0;
  786. $export['uc_roles_default_by_quantity'] = $strongarm;
  787. $strongarm = new stdClass();
  788. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  789. $strongarm->api_version = 1;
  790. $strongarm->name = 'uc_roles_default_end_expiration';
  791. $strongarm->value = 'rel';
  792. $export['uc_roles_default_end_expiration'] = $strongarm;
  793. $strongarm = new stdClass();
  794. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  795. $strongarm->api_version = 1;
  796. $strongarm->name = 'uc_roles_default_end_time';
  797. $strongarm->value = array(
  798. 'month' => '12',
  799. 'day' => '5',
  800. 'year' => '2012',
  801. );
  802. $export['uc_roles_default_end_time'] = $strongarm;
  803. $strongarm = new stdClass();
  804. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  805. $strongarm->api_version = 1;
  806. $strongarm->name = 'uc_roles_default_expiration_header';
  807. $strongarm->value = 'Expiring roles';
  808. $export['uc_roles_default_expiration_header'] = $strongarm;
  809. $strongarm = new stdClass();
  810. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  811. $strongarm->api_version = 1;
  812. $strongarm->name = 'uc_roles_default_expiration_message';
  813. $strongarm->value = 'This role will expire on !date';
  814. $export['uc_roles_default_expiration_message'] = $strongarm;
  815. $strongarm = new stdClass();
  816. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  817. $strongarm->api_version = 1;
  818. $strongarm->name = 'uc_roles_default_expiration_title';
  819. $strongarm->value = '!role_name';
  820. $export['uc_roles_default_expiration_title'] = $strongarm;
  821. $strongarm = new stdClass();
  822. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  823. $strongarm->api_version = 1;
  824. $strongarm->name = 'uc_roles_default_granularity';
  825. $strongarm->value = 'never';
  826. $export['uc_roles_default_granularity'] = $strongarm;
  827. $strongarm = new stdClass();
  828. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  829. $strongarm->api_version = 1;
  830. $strongarm->name = 'uc_roles_default_length';
  831. $strongarm->value = '';
  832. $export['uc_roles_default_length'] = $strongarm;
  833. $strongarm = new stdClass();
  834. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  835. $strongarm->api_version = 1;
  836. $strongarm->name = 'uc_roles_default_role';
  837. $strongarm->value = '6';
  838. $export['uc_roles_default_role'] = $strongarm;
  839. $strongarm = new stdClass();
  840. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  841. $strongarm->api_version = 1;
  842. $strongarm->name = 'uc_roles_default_role_choices';
  843. $strongarm->value = array(
  844. 6 => '6',
  845. 8 => '8',
  846. 7 => 0,
  847. 5 => 0,
  848. 3 => 0,
  849. 4 => 0,
  850. );
  851. $export['uc_roles_default_role_choices'] = $strongarm;
  852. $strongarm = new stdClass();
  853. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  854. $strongarm->api_version = 1;
  855. $strongarm->name = 'uc_roles_default_show_expiration';
  856. $strongarm->value = 1;
  857. $export['uc_roles_default_show_expiration'] = $strongarm;
  858. $strongarm = new stdClass();
  859. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  860. $strongarm->api_version = 1;
  861. $strongarm->name = 'uc_roles_reminder_granularity';
  862. $strongarm->value = 'month';
  863. $export['uc_roles_reminder_granularity'] = $strongarm;
  864. $strongarm = new stdClass();
  865. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  866. $strongarm->api_version = 1;
  867. $strongarm->name = 'uc_roles_reminder_length';
  868. $strongarm->value = '1';
  869. $export['uc_roles_reminder_length'] = $strongarm;
  870. $strongarm = new stdClass();
  871. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  872. $strongarm->api_version = 1;
  873. $strongarm->name = 'uc_sign_after_amount';
  874. $strongarm->value = 1;
  875. $export['uc_sign_after_amount'] = $strongarm;
  876. $strongarm = new stdClass();
  877. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  878. $strongarm->api_version = 1;
  879. $strongarm->name = 'uc_store_city';
  880. $strongarm->value = '';
  881. $export['uc_store_city'] = $strongarm;
  882. $strongarm = new stdClass();
  883. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  884. $strongarm->api_version = 1;
  885. $strongarm->name = 'uc_store_country';
  886. $strongarm->value = '840';
  887. $export['uc_store_country'] = $strongarm;
  888. $strongarm = new stdClass();
  889. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  890. $strongarm->api_version = 1;
  891. $strongarm->name = 'uc_store_email';
  892. $strongarm->value = 'materio@g-u-i.net';
  893. $export['uc_store_email'] = $strongarm;
  894. $strongarm = new stdClass();
  895. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  896. $strongarm->api_version = 1;
  897. $strongarm->name = 'uc_store_email_include_name';
  898. $strongarm->value = 1;
  899. $export['uc_store_email_include_name'] = $strongarm;
  900. $strongarm = new stdClass();
  901. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  902. $strongarm->api_version = 1;
  903. $strongarm->name = 'uc_store_fax';
  904. $strongarm->value = '';
  905. $export['uc_store_fax'] = $strongarm;
  906. $strongarm = new stdClass();
  907. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  908. $strongarm->api_version = 1;
  909. $strongarm->name = 'uc_store_help_page';
  910. $strongarm->value = '';
  911. $export['uc_store_help_page'] = $strongarm;
  912. $strongarm = new stdClass();
  913. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  914. $strongarm->api_version = 1;
  915. $strongarm->name = 'uc_store_name';
  916. $strongarm->value = 'materiO’';
  917. $export['uc_store_name'] = $strongarm;
  918. $strongarm = new stdClass();
  919. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  920. $strongarm->api_version = 1;
  921. $strongarm->name = 'uc_store_owner';
  922. $strongarm->value = '';
  923. $export['uc_store_owner'] = $strongarm;
  924. $strongarm = new stdClass();
  925. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  926. $strongarm->api_version = 1;
  927. $strongarm->name = 'uc_store_phone';
  928. $strongarm->value = '';
  929. $export['uc_store_phone'] = $strongarm;
  930. $strongarm = new stdClass();
  931. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  932. $strongarm->api_version = 1;
  933. $strongarm->name = 'uc_store_postal_code';
  934. $strongarm->value = '';
  935. $export['uc_store_postal_code'] = $strongarm;
  936. $strongarm = new stdClass();
  937. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  938. $strongarm->api_version = 1;
  939. $strongarm->name = 'uc_store_street1';
  940. $strongarm->value = '';
  941. $export['uc_store_street1'] = $strongarm;
  942. $strongarm = new stdClass();
  943. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  944. $strongarm->api_version = 1;
  945. $strongarm->name = 'uc_store_street2';
  946. $strongarm->value = '';
  947. $export['uc_store_street2'] = $strongarm;
  948. $strongarm = new stdClass();
  949. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  950. $strongarm->api_version = 1;
  951. $strongarm->name = 'uc_store_zone';
  952. $strongarm->value = 0;
  953. $export['uc_store_zone'] = $strongarm;
  954. $strongarm = new stdClass();
  955. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  956. $strongarm->api_version = 1;
  957. $strongarm->name = 'uc_termsofservice_checkout_display';
  958. $strongarm->value = 'teaser';
  959. $export['uc_termsofservice_checkout_display'] = $strongarm;
  960. $strongarm = new stdClass();
  961. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  962. $strongarm->api_version = 1;
  963. $strongarm->name = 'uc_termsofservice_checkout_node';
  964. $strongarm->value = '';
  965. $export['uc_termsofservice_checkout_node'] = $strongarm;
  966. $strongarm = new stdClass();
  967. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  968. $strongarm->api_version = 1;
  969. $strongarm->name = 'uc_termsofservice_checkout_required';
  970. $strongarm->value = 0;
  971. $export['uc_termsofservice_checkout_required'] = $strongarm;
  972. $strongarm = new stdClass();
  973. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  974. $strongarm->api_version = 1;
  975. $strongarm->name = 'uc_termsofservice_checkout_rules';
  976. $strongarm->value = 0;
  977. $export['uc_termsofservice_checkout_rules'] = $strongarm;
  978. $strongarm = new stdClass();
  979. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  980. $strongarm->api_version = 1;
  981. $strongarm->name = 'uc_termsofservice_checkout_title';
  982. $strongarm->value = '1';
  983. $export['uc_termsofservice_checkout_title'] = $strongarm;
  984. $strongarm = new stdClass();
  985. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  986. $strongarm->api_version = 1;
  987. $strongarm->name = 'uc_use_next_buttons';
  988. $strongarm->value = 0;
  989. $export['uc_use_next_buttons'] = $strongarm;
  990. $strongarm = new stdClass();
  991. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  992. $strongarm->api_version = 1;
  993. $strongarm->name = 'uc_weight_format_g';
  994. $strongarm->value = '!value g';
  995. $export['uc_weight_format_g'] = $strongarm;
  996. $strongarm = new stdClass();
  997. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  998. $strongarm->api_version = 1;
  999. $strongarm->name = 'uc_weight_format_kg';
  1000. $strongarm->value = '!value kg';
  1001. $export['uc_weight_format_kg'] = $strongarm;
  1002. $strongarm = new stdClass();
  1003. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1004. $strongarm->api_version = 1;
  1005. $strongarm->name = 'uc_weight_format_lb';
  1006. $strongarm->value = '!value lb';
  1007. $export['uc_weight_format_lb'] = $strongarm;
  1008. $strongarm = new stdClass();
  1009. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1010. $strongarm->api_version = 1;
  1011. $strongarm->name = 'uc_weight_format_oz';
  1012. $strongarm->value = '!value oz';
  1013. $export['uc_weight_format_oz'] = $strongarm;
  1014. $strongarm = new stdClass();
  1015. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1016. $strongarm->api_version = 1;
  1017. $strongarm->name = 'uc_weight_unit';
  1018. $strongarm->value = 'kg';
  1019. $export['uc_weight_unit'] = $strongarm;
  1020. return $export;
  1021. }