materio_subscriptions.strongarm.inc 59 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492
  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_12';
  63. $strongarm->value = '!company
  64. !first_name !last_name
  65. !street1
  66. !street2
  67. !city
  68. !postal_code !zone_code
  69. !country_name_if';
  70. $export['uc_address_format_12'] = $strongarm;
  71. $strongarm = new stdClass();
  72. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  73. $strongarm->api_version = 1;
  74. $strongarm->name = 'uc_address_format_124';
  75. $strongarm->value = '!company
  76. !first_name !last_name
  77. !street1
  78. !street2
  79. !city, !postal_code
  80. !zone_name, !country_name';
  81. $export['uc_address_format_124'] = $strongarm;
  82. $strongarm = new stdClass();
  83. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  84. $strongarm->api_version = 1;
  85. $strongarm->name = 'uc_address_format_16';
  86. $strongarm->value = '!company
  87. !first_name !last_name
  88. !street1
  89. !street2
  90. !city, !postal_code
  91. !country_name_if';
  92. $export['uc_address_format_16'] = $strongarm;
  93. $strongarm = new stdClass();
  94. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  95. $strongarm->api_version = 1;
  96. $strongarm->name = 'uc_address_format_20';
  97. $strongarm->value = '!company
  98. !first_name !last_name
  99. !street1
  100. !street2
  101. !city, !postal_code
  102. !country_name_if';
  103. $export['uc_address_format_20'] = $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_address_format_24';
  108. $strongarm->value = '!company
  109. !first_name !last_name
  110. !street1
  111. !street2
  112. !city, !zone_name !postal_code
  113. !country_name_if';
  114. $export['uc_address_format_24'] = $strongarm;
  115. $strongarm = new stdClass();
  116. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  117. $strongarm->api_version = 1;
  118. $strongarm->name = 'uc_address_format_250';
  119. $strongarm->value = '!company
  120. !first_name !last_name
  121. !street1
  122. !street2
  123. !postal_code !city
  124. !country_name_if';
  125. $export['uc_address_format_250'] = $strongarm;
  126. $strongarm = new stdClass();
  127. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  128. $strongarm->api_version = 1;
  129. $strongarm->name = 'uc_address_format_4';
  130. $strongarm->value = '!company
  131. !first_name !last_name
  132. !street1
  133. !street2
  134. !city, !zone_code !postal_code
  135. !country_name_if';
  136. $export['uc_address_format_4'] = $strongarm;
  137. $strongarm = new stdClass();
  138. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  139. $strongarm->api_version = 1;
  140. $strongarm->name = 'uc_address_format_784';
  141. $strongarm->value = '!company
  142. !first_name !last_name
  143. !street1
  144. !street2
  145. !city, !zone_code
  146. !country_name_if';
  147. $export['uc_address_format_784'] = $strongarm;
  148. $strongarm = new stdClass();
  149. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  150. $strongarm->api_version = 1;
  151. $strongarm->name = 'uc_address_format_795';
  152. $strongarm->value = '!company
  153. !first_name !last_name
  154. !street1
  155. !street2
  156. !city, !zone_name !postal_code
  157. !country_name_if';
  158. $export['uc_address_format_795'] = $strongarm;
  159. $strongarm = new stdClass();
  160. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  161. $strongarm->api_version = 1;
  162. $strongarm->name = 'uc_address_format_796';
  163. $strongarm->value = '!company
  164. !first_name !last_name
  165. !street1
  166. !street2
  167. !city !postal_code
  168. !country_name_if';
  169. $export['uc_address_format_796'] = $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_address_format_798';
  174. $strongarm->value = '!company
  175. !first_name !last_name
  176. !street1
  177. !street2
  178. !city, !zone_name !postal_code
  179. !country_name_if';
  180. $export['uc_address_format_798'] = $strongarm;
  181. $strongarm = new stdClass();
  182. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  183. $strongarm->api_version = 1;
  184. $strongarm->name = 'uc_address_format_8';
  185. $strongarm->value = '!company
  186. !first_name !last_name
  187. !street1
  188. !street2
  189. !city, !zone_name !postal_code
  190. !country_name_if';
  191. $export['uc_address_format_8'] = $strongarm;
  192. $strongarm = new stdClass();
  193. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  194. $strongarm->api_version = 1;
  195. $strongarm->name = 'uc_address_format_800';
  196. $strongarm->value = '!company
  197. !first_name !last_name
  198. !street1
  199. !street2
  200. !city, !zone_name !postal_code
  201. !country_name_if';
  202. $export['uc_address_format_800'] = $strongarm;
  203. $strongarm = new stdClass();
  204. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  205. $strongarm->api_version = 1;
  206. $strongarm->name = 'uc_address_format_804';
  207. $strongarm->value = '!country_name
  208. !zone_name
  209. !city
  210. !postal_code
  211. !street1
  212. !street2
  213. !company
  214. !first_name !last_name';
  215. $export['uc_address_format_804'] = $strongarm;
  216. $strongarm = new stdClass();
  217. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  218. $strongarm->api_version = 1;
  219. $strongarm->name = 'uc_address_format_826';
  220. $strongarm->value = '!first_name !last_name
  221. !company
  222. !street1
  223. !street2
  224. !city
  225. !postal_code
  226. !country_name_if';
  227. $export['uc_address_format_826'] = $strongarm;
  228. $strongarm = new stdClass();
  229. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  230. $strongarm->api_version = 1;
  231. $strongarm->name = 'uc_address_format_840';
  232. $strongarm->value = '!company
  233. !first_name !last_name
  234. !street1
  235. !street2
  236. !city, !zone_code !postal_code
  237. !country_name_if';
  238. $export['uc_address_format_840'] = $strongarm;
  239. $strongarm = new stdClass();
  240. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  241. $strongarm->api_version = 1;
  242. $strongarm->name = 'uc_address_format_894';
  243. $strongarm->value = '!company
  244. !first_name !last_name
  245. !street1
  246. !street2
  247. !city, !zone_name !postal_code
  248. !country_name_if';
  249. $export['uc_address_format_894'] = $strongarm;
  250. $strongarm = new stdClass();
  251. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  252. $strongarm->api_version = 1;
  253. $strongarm->name = 'uc_add_item_redirect';
  254. $strongarm->value = 'cart/checkout';
  255. $export['uc_add_item_redirect'] = $strongarm;
  256. $strongarm = new stdClass();
  257. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  258. $strongarm->api_version = 1;
  259. $strongarm->name = 'uc_attribute_option_price_format';
  260. $strongarm->value = 'total';
  261. $export['uc_attribute_option_price_format'] = $strongarm;
  262. $strongarm = new stdClass();
  263. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  264. $strongarm->api_version = 1;
  265. $strongarm->name = 'uc_cap_cart_form_enabled';
  266. $strongarm->value = 1;
  267. $export['uc_cap_cart_form_enabled'] = $strongarm;
  268. $strongarm = new stdClass();
  269. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  270. $strongarm->api_version = 1;
  271. $strongarm->name = 'uc_cap_cart_form_weight';
  272. $strongarm->value = '0';
  273. $export['uc_cap_cart_form_weight'] = $strongarm;
  274. $strongarm = new stdClass();
  275. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  276. $strongarm->api_version = 1;
  277. $strongarm->name = 'uc_cap_coupon_auto_enabled';
  278. $strongarm->value = 1;
  279. $export['uc_cap_coupon_auto_enabled'] = $strongarm;
  280. $strongarm = new stdClass();
  281. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  282. $strongarm->api_version = 1;
  283. $strongarm->name = 'uc_cap_coupon_auto_weight';
  284. $strongarm->value = '1';
  285. $export['uc_cap_coupon_auto_weight'] = $strongarm;
  286. $strongarm = new stdClass();
  287. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  288. $strongarm->api_version = 1;
  289. $strongarm->name = 'uc_cap_coupon_enabled';
  290. $strongarm->value = 1;
  291. $export['uc_cap_coupon_enabled'] = $strongarm;
  292. $strongarm = new stdClass();
  293. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  294. $strongarm->api_version = 1;
  295. $strongarm->name = 'uc_cap_coupon_weight';
  296. $strongarm->value = '1';
  297. $export['uc_cap_coupon_weight'] = $strongarm;
  298. $strongarm = new stdClass();
  299. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  300. $strongarm->api_version = 1;
  301. $strongarm->name = 'uc_cap_uc_termsofservice_agreement_cart_enabled';
  302. $strongarm->value = 1;
  303. $export['uc_cap_uc_termsofservice_agreement_cart_enabled'] = $strongarm;
  304. $strongarm = new stdClass();
  305. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  306. $strongarm->api_version = 1;
  307. $strongarm->name = 'uc_cap_uc_termsofservice_agreement_cart_weight';
  308. $strongarm->value = '6';
  309. $export['uc_cap_uc_termsofservice_agreement_cart_weight'] = $strongarm;
  310. $strongarm = new stdClass();
  311. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  312. $strongarm->api_version = 1;
  313. $strongarm->name = 'uc_cart_add_item_msg';
  314. $strongarm->value = 1;
  315. $export['uc_cart_add_item_msg'] = $strongarm;
  316. $strongarm = new stdClass();
  317. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  318. $strongarm->api_version = 1;
  319. $strongarm->name = 'uc_cart_anon_duration';
  320. $strongarm->value = '4';
  321. $export['uc_cart_anon_duration'] = $strongarm;
  322. $strongarm = new stdClass();
  323. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  324. $strongarm->api_version = 1;
  325. $strongarm->name = 'uc_cart_anon_unit';
  326. $strongarm->value = 'hours';
  327. $export['uc_cart_anon_unit'] = $strongarm;
  328. $strongarm = new stdClass();
  329. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  330. $strongarm->api_version = 1;
  331. $strongarm->name = 'uc_cart_auth_duration';
  332. $strongarm->value = '2';
  333. $export['uc_cart_auth_duration'] = $strongarm;
  334. $strongarm = new stdClass();
  335. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  336. $strongarm->api_version = 1;
  337. $strongarm->name = 'uc_cart_auth_unit';
  338. $strongarm->value = 'weeks';
  339. $export['uc_cart_auth_unit'] = $strongarm;
  340. $strongarm = new stdClass();
  341. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  342. $strongarm->api_version = 1;
  343. $strongarm->name = 'uc_cart_breadcrumb_text';
  344. $strongarm->value = '';
  345. $export['uc_cart_breadcrumb_text'] = $strongarm;
  346. $strongarm = new stdClass();
  347. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  348. $strongarm->api_version = 1;
  349. $strongarm->name = 'uc_cart_breadcrumb_url';
  350. $strongarm->value = '';
  351. $export['uc_cart_breadcrumb_url'] = $strongarm;
  352. $strongarm = new stdClass();
  353. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  354. $strongarm->api_version = 1;
  355. $strongarm->name = 'uc_cart_checkout_complete_page';
  356. $strongarm->value = '';
  357. $export['uc_cart_checkout_complete_page'] = $strongarm;
  358. $strongarm = new stdClass();
  359. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  360. $strongarm->api_version = 1;
  361. $strongarm->name = 'uc_cart_delivery_not_shippable';
  362. $strongarm->value = 1;
  363. $export['uc_cart_delivery_not_shippable'] = $strongarm;
  364. $strongarm = new stdClass();
  365. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  366. $strongarm->api_version = 1;
  367. $strongarm->name = 'uc_cart_email_validation';
  368. $strongarm->value = 1;
  369. $export['uc_cart_email_validation'] = $strongarm;
  370. $strongarm = new stdClass();
  371. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  372. $strongarm->api_version = 1;
  373. $strongarm->name = 'uc_cart_mail_existing';
  374. $strongarm->value = 1;
  375. $export['uc_cart_mail_existing'] = $strongarm;
  376. $strongarm = new stdClass();
  377. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  378. $strongarm->api_version = 1;
  379. $strongarm->name = 'uc_cart_new_account_details';
  380. $strongarm->value = '<b>Optional.</b> New customers may supply custom account details.<br />We will create these for you if no values are entered.';
  381. $export['uc_cart_new_account_details'] = $strongarm;
  382. $strongarm = new stdClass();
  383. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  384. $strongarm->api_version = 1;
  385. $strongarm->name = 'uc_cart_new_account_name';
  386. $strongarm->value = 0;
  387. $export['uc_cart_new_account_name'] = $strongarm;
  388. $strongarm = new stdClass();
  389. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  390. $strongarm->api_version = 1;
  391. $strongarm->name = 'uc_cart_new_account_password';
  392. $strongarm->value = 0;
  393. $export['uc_cart_new_account_password'] = $strongarm;
  394. $strongarm = new stdClass();
  395. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  396. $strongarm->api_version = 1;
  397. $strongarm->name = 'uc_checkout_anonymous';
  398. $strongarm->value = 1;
  399. $export['uc_checkout_anonymous'] = $strongarm;
  400. $strongarm = new stdClass();
  401. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  402. $strongarm->api_version = 1;
  403. $strongarm->name = 'uc_checkout_enabled';
  404. $strongarm->value = 1;
  405. $export['uc_checkout_enabled'] = $strongarm;
  406. $strongarm = new stdClass();
  407. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  408. $strongarm->api_version = 1;
  409. $strongarm->name = 'uc_checkout_instructions';
  410. $strongarm->value = '';
  411. $export['uc_checkout_instructions'] = $strongarm;
  412. $strongarm = new stdClass();
  413. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  414. $strongarm->api_version = 1;
  415. $strongarm->name = 'uc_checkout_review_instructions';
  416. $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.';
  417. $export['uc_checkout_review_instructions'] = $strongarm;
  418. $strongarm = new stdClass();
  419. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  420. $strongarm->api_version = 1;
  421. $strongarm->name = 'uc_check_address';
  422. $strongarm->value = array(
  423. 'uc_check_mailing_company' => '',
  424. 'uc_check_mailing_street1' => '',
  425. 'uc_check_mailing_street2' => '',
  426. 'uc_check_mailing_city' => '',
  427. 'uc_check_mailing_zone' => '',
  428. 'uc_check_mailing_country' => '124',
  429. 'uc_check_mailing_postal_code' => '',
  430. );
  431. $export['uc_check_address'] = $strongarm;
  432. $strongarm = new stdClass();
  433. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  434. $strongarm->api_version = 1;
  435. $strongarm->name = 'uc_check_mailing_city';
  436. $strongarm->value = 'Paris';
  437. $export['uc_check_mailing_city'] = $strongarm;
  438. $strongarm = new stdClass();
  439. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  440. $strongarm->api_version = 1;
  441. $strongarm->name = 'uc_check_mailing_company';
  442. $strongarm->value = 'materiO\'';
  443. $export['uc_check_mailing_company'] = $strongarm;
  444. $strongarm = new stdClass();
  445. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  446. $strongarm->api_version = 1;
  447. $strongarm->name = 'uc_check_mailing_country';
  448. $strongarm->value = '124';
  449. $export['uc_check_mailing_country'] = $strongarm;
  450. $strongarm = new stdClass();
  451. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  452. $strongarm->api_version = 1;
  453. $strongarm->name = 'uc_check_mailing_name';
  454. $strongarm->value = 'Quentin Hirsinger';
  455. $export['uc_check_mailing_name'] = $strongarm;
  456. $strongarm = new stdClass();
  457. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  458. $strongarm->api_version = 1;
  459. $strongarm->name = 'uc_check_mailing_postal_code';
  460. $strongarm->value = '75012';
  461. $export['uc_check_mailing_postal_code'] = $strongarm;
  462. $strongarm = new stdClass();
  463. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  464. $strongarm->api_version = 1;
  465. $strongarm->name = 'uc_check_mailing_street1';
  466. $strongarm->value = '4 rue du faubourg saint antoine';
  467. $export['uc_check_mailing_street1'] = $strongarm;
  468. $strongarm = new stdClass();
  469. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  470. $strongarm->api_version = 1;
  471. $strongarm->name = 'uc_check_mailing_street2';
  472. $strongarm->value = '';
  473. $export['uc_check_mailing_street2'] = $strongarm;
  474. $strongarm = new stdClass();
  475. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  476. $strongarm->api_version = 1;
  477. $strongarm->name = 'uc_check_mailing_zone';
  478. $strongarm->value = 0;
  479. $export['uc_check_mailing_zone'] = $strongarm;
  480. $strongarm = new stdClass();
  481. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  482. $strongarm->api_version = 1;
  483. $strongarm->name = 'uc_check_policy';
  484. $strongarm->value = 'Les chèques personnels et professionnels sont soumis à un délai d\'acceptation de 10 jours ouvrés avant validation et envoi de la commande.';
  485. $export['uc_check_policy'] = $strongarm;
  486. $strongarm = new stdClass();
  487. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  488. $strongarm->api_version = 1;
  489. $strongarm->name = 'uc_collapse_current_pane';
  490. $strongarm->value = 0;
  491. $export['uc_collapse_current_pane'] = $strongarm;
  492. $strongarm = new stdClass();
  493. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  494. $strongarm->api_version = 1;
  495. $strongarm->name = 'uc_continue_shopping_type';
  496. $strongarm->value = 'none';
  497. $export['uc_continue_shopping_type'] = $strongarm;
  498. $strongarm = new stdClass();
  499. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  500. $strongarm->api_version = 1;
  501. $strongarm->name = 'uc_continue_shopping_url';
  502. $strongarm->value = '';
  503. $export['uc_continue_shopping_url'] = $strongarm;
  504. $strongarm = new stdClass();
  505. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  506. $strongarm->api_version = 1;
  507. $strongarm->name = 'uc_continue_shopping_use_last_url';
  508. $strongarm->value = 1;
  509. $export['uc_continue_shopping_use_last_url'] = $strongarm;
  510. $strongarm = new stdClass();
  511. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  512. $strongarm->api_version = 1;
  513. $strongarm->name = 'uc_coupon_collapse_pane';
  514. $strongarm->value = 0;
  515. $export['uc_coupon_collapse_pane'] = $strongarm;
  516. $strongarm = new stdClass();
  517. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  518. $strongarm->api_version = 1;
  519. $strongarm->name = 'uc_coupon_pane_description';
  520. $strongarm->value = 'Enter a coupon code for this order.';
  521. $export['uc_coupon_pane_description'] = $strongarm;
  522. $strongarm = new stdClass();
  523. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  524. $strongarm->api_version = 1;
  525. $strongarm->name = 'uc_credit_accepted_types';
  526. $strongarm->value = 'Visa
  527. Mastercard
  528. Discover
  529. American Express';
  530. $export['uc_credit_accepted_types'] = $strongarm;
  531. $strongarm = new stdClass();
  532. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  533. $strongarm->api_version = 1;
  534. $strongarm->name = 'uc_credit_amex';
  535. $strongarm->value = 1;
  536. $export['uc_credit_amex'] = $strongarm;
  537. $strongarm = new stdClass();
  538. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  539. $strongarm->api_version = 1;
  540. $strongarm->name = 'uc_credit_bank_enabled';
  541. $strongarm->value = 0;
  542. $export['uc_credit_bank_enabled'] = $strongarm;
  543. $strongarm = new stdClass();
  544. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  545. $strongarm->api_version = 1;
  546. $strongarm->name = 'uc_credit_cvv_enabled';
  547. $strongarm->value = 1;
  548. $export['uc_credit_cvv_enabled'] = $strongarm;
  549. $strongarm = new stdClass();
  550. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  551. $strongarm->api_version = 1;
  552. $strongarm->name = 'uc_credit_discover';
  553. $strongarm->value = 1;
  554. $export['uc_credit_discover'] = $strongarm;
  555. $strongarm = new stdClass();
  556. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  557. $strongarm->api_version = 1;
  558. $strongarm->name = 'uc_credit_encryption_path';
  559. $strongarm->value = '/Users/bachir/Sites/materio/encrypt';
  560. $export['uc_credit_encryption_path'] = $strongarm;
  561. $strongarm = new stdClass();
  562. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  563. $strongarm->api_version = 1;
  564. $strongarm->name = 'uc_credit_fail_message';
  565. $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.';
  566. $export['uc_credit_fail_message'] = $strongarm;
  567. $strongarm = new stdClass();
  568. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  569. $strongarm->api_version = 1;
  570. $strongarm->name = 'uc_credit_issue_enabled';
  571. $strongarm->value = 1;
  572. $export['uc_credit_issue_enabled'] = $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_credit_mastercard';
  577. $strongarm->value = 1;
  578. $export['uc_credit_mastercard'] = $strongarm;
  579. $strongarm = new stdClass();
  580. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  581. $strongarm->api_version = 1;
  582. $strongarm->name = 'uc_credit_owner_enabled';
  583. $strongarm->value = 1;
  584. $export['uc_credit_owner_enabled'] = $strongarm;
  585. $strongarm = new stdClass();
  586. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  587. $strongarm->api_version = 1;
  588. $strongarm->name = 'uc_credit_policy';
  589. $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.';
  590. $export['uc_credit_policy'] = $strongarm;
  591. $strongarm = new stdClass();
  592. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  593. $strongarm->api_version = 1;
  594. $strongarm->name = 'uc_credit_start_enabled';
  595. $strongarm->value = 1;
  596. $export['uc_credit_start_enabled'] = $strongarm;
  597. $strongarm = new stdClass();
  598. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  599. $strongarm->api_version = 1;
  600. $strongarm->name = 'uc_credit_type_enabled';
  601. $strongarm->value = 1;
  602. $export['uc_credit_type_enabled'] = $strongarm;
  603. $strongarm = new stdClass();
  604. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  605. $strongarm->api_version = 1;
  606. $strongarm->name = 'uc_credit_validate_numbers';
  607. $strongarm->value = 1;
  608. $export['uc_credit_validate_numbers'] = $strongarm;
  609. $strongarm = new stdClass();
  610. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  611. $strongarm->api_version = 1;
  612. $strongarm->name = 'uc_credit_visa';
  613. $strongarm->value = 1;
  614. $export['uc_credit_visa'] = $strongarm;
  615. $strongarm = new stdClass();
  616. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  617. $strongarm->api_version = 1;
  618. $strongarm->name = 'uc_credit__active_tab';
  619. $strongarm->value = 'edit-test-gateway';
  620. $export['uc_credit__active_tab'] = $strongarm;
  621. $strongarm = new stdClass();
  622. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  623. $strongarm->api_version = 1;
  624. $strongarm->name = 'uc_currency_code';
  625. $strongarm->value = 'EUR';
  626. $export['uc_currency_code'] = $strongarm;
  627. $strongarm = new stdClass();
  628. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  629. $strongarm->api_version = 1;
  630. $strongarm->name = 'uc_currency_dec';
  631. $strongarm->value = '.';
  632. $export['uc_currency_dec'] = $strongarm;
  633. $strongarm = new stdClass();
  634. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  635. $strongarm->api_version = 1;
  636. $strongarm->name = 'uc_currency_prec';
  637. $strongarm->value = '2';
  638. $export['uc_currency_prec'] = $strongarm;
  639. $strongarm = new stdClass();
  640. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  641. $strongarm->api_version = 1;
  642. $strongarm->name = 'uc_currency_sign';
  643. $strongarm->value = '€';
  644. $export['uc_currency_sign'] = $strongarm;
  645. $strongarm = new stdClass();
  646. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  647. $strongarm->api_version = 1;
  648. $strongarm->name = 'uc_currency_thou';
  649. $strongarm->value = ',';
  650. $export['uc_currency_thou'] = $strongarm;
  651. $strongarm = new stdClass();
  652. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  653. $strongarm->api_version = 1;
  654. $strongarm->name = 'uc_customer_list_address';
  655. $strongarm->value = 'billing';
  656. $export['uc_customer_list_address'] = $strongarm;
  657. $strongarm = new stdClass();
  658. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  659. $strongarm->api_version = 1;
  660. $strongarm->name = 'uc_field_city';
  661. $strongarm->value = 'City';
  662. $export['uc_field_city'] = $strongarm;
  663. $strongarm = new stdClass();
  664. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  665. $strongarm->api_version = 1;
  666. $strongarm->name = 'uc_field_company';
  667. $strongarm->value = 'Company';
  668. $export['uc_field_company'] = $strongarm;
  669. $strongarm = new stdClass();
  670. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  671. $strongarm->api_version = 1;
  672. $strongarm->name = 'uc_field_country';
  673. $strongarm->value = 'Pays';
  674. $export['uc_field_country'] = $strongarm;
  675. $strongarm = new stdClass();
  676. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  677. $strongarm->api_version = 1;
  678. $strongarm->name = 'uc_field_first_name';
  679. $strongarm->value = 'First name';
  680. $export['uc_field_first_name'] = $strongarm;
  681. $strongarm = new stdClass();
  682. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  683. $strongarm->api_version = 1;
  684. $strongarm->name = 'uc_field_last_name';
  685. $strongarm->value = 'Last name';
  686. $export['uc_field_last_name'] = $strongarm;
  687. $strongarm = new stdClass();
  688. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  689. $strongarm->api_version = 1;
  690. $strongarm->name = 'uc_field_phone';
  691. $strongarm->value = 'Phone number';
  692. $export['uc_field_phone'] = $strongarm;
  693. $strongarm = new stdClass();
  694. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  695. $strongarm->api_version = 1;
  696. $strongarm->name = 'uc_field_postal_code';
  697. $strongarm->value = 'Postal code';
  698. $export['uc_field_postal_code'] = $strongarm;
  699. $strongarm = new stdClass();
  700. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  701. $strongarm->api_version = 1;
  702. $strongarm->name = 'uc_field_street1';
  703. $strongarm->value = 'Street address';
  704. $export['uc_field_street1'] = $strongarm;
  705. $strongarm = new stdClass();
  706. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  707. $strongarm->api_version = 1;
  708. $strongarm->name = 'uc_field_street2';
  709. $strongarm->value = '';
  710. $export['uc_field_street2'] = $strongarm;
  711. $strongarm = new stdClass();
  712. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  713. $strongarm->api_version = 1;
  714. $strongarm->name = 'uc_field_zone';
  715. $strongarm->value = 'State/Province';
  716. $export['uc_field_zone'] = $strongarm;
  717. $strongarm = new stdClass();
  718. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  719. $strongarm->api_version = 1;
  720. $strongarm->name = 'uc_footer_message';
  721. $strongarm->value = 'none';
  722. $export['uc_footer_message'] = $strongarm;
  723. $strongarm = new stdClass();
  724. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  725. $strongarm->api_version = 1;
  726. $strongarm->name = 'uc_image_product';
  727. $strongarm->value = 'uc_product_image';
  728. $export['uc_image_product'] = $strongarm;
  729. $strongarm = new stdClass();
  730. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  731. $strongarm->api_version = 1;
  732. $strongarm->name = 'uc_length_format_cm';
  733. $strongarm->value = '!value cm';
  734. $export['uc_length_format_cm'] = $strongarm;
  735. $strongarm = new stdClass();
  736. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  737. $strongarm->api_version = 1;
  738. $strongarm->name = 'uc_length_format_ft';
  739. $strongarm->value = '!value ft';
  740. $export['uc_length_format_ft'] = $strongarm;
  741. $strongarm = new stdClass();
  742. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  743. $strongarm->api_version = 1;
  744. $strongarm->name = 'uc_length_format_in';
  745. $strongarm->value = '!value in';
  746. $export['uc_length_format_in'] = $strongarm;
  747. $strongarm = new stdClass();
  748. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  749. $strongarm->api_version = 1;
  750. $strongarm->name = 'uc_length_format_mm';
  751. $strongarm->value = '!value mm';
  752. $export['uc_length_format_mm'] = $strongarm;
  753. $strongarm = new stdClass();
  754. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  755. $strongarm->api_version = 1;
  756. $strongarm->name = 'uc_length_unit';
  757. $strongarm->value = 'cm';
  758. $export['uc_length_unit'] = $strongarm;
  759. $strongarm = new stdClass();
  760. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  761. $strongarm->api_version = 1;
  762. $strongarm->name = 'uc_minimum_subtotal';
  763. $strongarm->value = '1.00';
  764. $export['uc_minimum_subtotal'] = $strongarm;
  765. $strongarm = new stdClass();
  766. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  767. $strongarm->api_version = 1;
  768. $strongarm->name = 'uc_msg_continue_shopping';
  769. $strongarm->value = '<a href="[site:url]">Return to the front page.</a>';
  770. $export['uc_msg_continue_shopping'] = $strongarm;
  771. $strongarm = new stdClass();
  772. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  773. $strongarm->api_version = 1;
  774. $strongarm->name = 'uc_msg_order_existing_user';
  775. $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.
  776. <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!';
  777. $export['uc_msg_order_existing_user'] = $strongarm;
  778. $strongarm = new stdClass();
  779. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  780. $strongarm->api_version = 1;
  781. $strongarm->name = 'uc_msg_order_logged_in';
  782. $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.';
  783. $export['uc_msg_order_logged_in'] = $strongarm;
  784. $strongarm = new stdClass();
  785. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  786. $strongarm->api_version = 1;
  787. $strongarm->name = 'uc_msg_order_new_user';
  788. $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.
  789. <a href="/fr/user">Login</a> to your new account using the following information:
  790. <strong>Username:</strong> !new_username
  791. <strong>Password:</strong> !new_password';
  792. $export['uc_msg_order_new_user'] = $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_msg_order_new_user_logged_in';
  797. $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.
  798. Your password and further instructions have been sent to your e-mail address.
  799. For your convenience, you are already logged in with your newly created account.';
  800. $export['uc_msg_order_new_user_logged_in'] = $strongarm;
  801. $strongarm = new stdClass();
  802. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  803. $strongarm->api_version = 1;
  804. $strongarm->name = 'uc_msg_order_submit';
  805. $strongarm->value = 'Your order is complete! Your order number is [uc_order:order-number].';
  806. $export['uc_msg_order_submit'] = $strongarm;
  807. $strongarm = new stdClass();
  808. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  809. $strongarm->api_version = 1;
  810. $strongarm->name = 'uc_new_customer_email';
  811. $strongarm->value = 1;
  812. $export['uc_new_customer_email'] = $strongarm;
  813. $strongarm = new stdClass();
  814. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  815. $strongarm->api_version = 1;
  816. $strongarm->name = 'uc_new_customer_login';
  817. $strongarm->value = 1;
  818. $export['uc_new_customer_login'] = $strongarm;
  819. $strongarm = new stdClass();
  820. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  821. $strongarm->api_version = 1;
  822. $strongarm->name = 'uc_new_customer_status_active';
  823. $strongarm->value = 1;
  824. $export['uc_new_customer_status_active'] = $strongarm;
  825. $strongarm = new stdClass();
  826. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  827. $strongarm->api_version = 1;
  828. $strongarm->name = 'uc_order_capitalize_addresses';
  829. $strongarm->value = 1;
  830. $export['uc_order_capitalize_addresses'] = $strongarm;
  831. $strongarm = new stdClass();
  832. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  833. $strongarm->api_version = 1;
  834. $strongarm->name = 'uc_pane_billing_enabled';
  835. $strongarm->value = 1;
  836. $export['uc_pane_billing_enabled'] = $strongarm;
  837. $strongarm = new stdClass();
  838. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  839. $strongarm->api_version = 1;
  840. $strongarm->name = 'uc_pane_billing_weight';
  841. $strongarm->value = '4';
  842. $export['uc_pane_billing_weight'] = $strongarm;
  843. $strongarm = new stdClass();
  844. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  845. $strongarm->api_version = 1;
  846. $strongarm->name = 'uc_pane_cart_enabled';
  847. $strongarm->value = 1;
  848. $export['uc_pane_cart_enabled'] = $strongarm;
  849. $strongarm = new stdClass();
  850. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  851. $strongarm->api_version = 1;
  852. $strongarm->name = 'uc_pane_cart_weight';
  853. $strongarm->value = '1';
  854. $export['uc_pane_cart_weight'] = $strongarm;
  855. $strongarm = new stdClass();
  856. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  857. $strongarm->api_version = 1;
  858. $strongarm->name = 'uc_pane_comments_enabled';
  859. $strongarm->value = 0;
  860. $export['uc_pane_comments_enabled'] = $strongarm;
  861. $strongarm = new stdClass();
  862. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  863. $strongarm->api_version = 1;
  864. $strongarm->name = 'uc_pane_comments_weight';
  865. $strongarm->value = '7';
  866. $export['uc_pane_comments_weight'] = $strongarm;
  867. $strongarm = new stdClass();
  868. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  869. $strongarm->api_version = 1;
  870. $strongarm->name = 'uc_pane_coupon_automatic_enabled';
  871. $strongarm->value = 1;
  872. $export['uc_pane_coupon_automatic_enabled'] = $strongarm;
  873. $strongarm = new stdClass();
  874. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  875. $strongarm->api_version = 1;
  876. $strongarm->name = 'uc_pane_coupon_automatic_weight';
  877. $strongarm->value = '5';
  878. $export['uc_pane_coupon_automatic_weight'] = $strongarm;
  879. $strongarm = new stdClass();
  880. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  881. $strongarm->api_version = 1;
  882. $strongarm->name = 'uc_pane_coupon_enabled';
  883. $strongarm->value = 1;
  884. $export['uc_pane_coupon_enabled'] = $strongarm;
  885. $strongarm = new stdClass();
  886. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  887. $strongarm->api_version = 1;
  888. $strongarm->name = 'uc_pane_coupon_weight';
  889. $strongarm->value = '5';
  890. $export['uc_pane_coupon_weight'] = $strongarm;
  891. $strongarm = new stdClass();
  892. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  893. $strongarm->api_version = 1;
  894. $strongarm->name = 'uc_pane_customer_enabled';
  895. $strongarm->value = 1;
  896. $export['uc_pane_customer_enabled'] = $strongarm;
  897. $strongarm = new stdClass();
  898. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  899. $strongarm->api_version = 1;
  900. $strongarm->name = 'uc_pane_customer_weight';
  901. $strongarm->value = '2';
  902. $export['uc_pane_customer_weight'] = $strongarm;
  903. $strongarm = new stdClass();
  904. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  905. $strongarm->api_version = 1;
  906. $strongarm->name = 'uc_pane_delivery_enabled';
  907. $strongarm->value = 0;
  908. $export['uc_pane_delivery_enabled'] = $strongarm;
  909. $strongarm = new stdClass();
  910. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  911. $strongarm->api_version = 1;
  912. $strongarm->name = 'uc_pane_delivery_weight';
  913. $strongarm->value = '3';
  914. $export['uc_pane_delivery_weight'] = $strongarm;
  915. $strongarm = new stdClass();
  916. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  917. $strongarm->api_version = 1;
  918. $strongarm->name = 'uc_pane_payment_enabled';
  919. $strongarm->value = 1;
  920. $export['uc_pane_payment_enabled'] = $strongarm;
  921. $strongarm = new stdClass();
  922. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  923. $strongarm->api_version = 1;
  924. $strongarm->name = 'uc_pane_payment_weight';
  925. $strongarm->value = '6';
  926. $export['uc_pane_payment_weight'] = $strongarm;
  927. $strongarm = new stdClass();
  928. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  929. $strongarm->api_version = 1;
  930. $strongarm->name = 'uc_pane_uc_termsofservice_agreement_checkout_enabled';
  931. $strongarm->value = 1;
  932. $export['uc_pane_uc_termsofservice_agreement_checkout_enabled'] = $strongarm;
  933. $strongarm = new stdClass();
  934. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  935. $strongarm->api_version = 1;
  936. $strongarm->name = 'uc_pane_uc_termsofservice_agreement_checkout_weight';
  937. $strongarm->value = '6';
  938. $export['uc_pane_uc_termsofservice_agreement_checkout_weight'] = $strongarm;
  939. $strongarm = new stdClass();
  940. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  941. $strongarm->api_version = 1;
  942. $strongarm->name = 'uc_payment_credit_gateway';
  943. $strongarm->value = 'test_gateway';
  944. $export['uc_payment_credit_gateway'] = $strongarm;
  945. $strongarm = new stdClass();
  946. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  947. $strongarm->api_version = 1;
  948. $strongarm->name = 'uc_payment_method_check_checkout';
  949. $strongarm->value = 1;
  950. $export['uc_payment_method_check_checkout'] = $strongarm;
  951. $strongarm = new stdClass();
  952. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  953. $strongarm->api_version = 1;
  954. $strongarm->name = 'uc_payment_method_check_weight';
  955. $strongarm->value = '1';
  956. $export['uc_payment_method_check_weight'] = $strongarm;
  957. $strongarm = new stdClass();
  958. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  959. $strongarm->api_version = 1;
  960. $strongarm->name = 'uc_payment_method_cmcic_checkout';
  961. $strongarm->value = 1;
  962. $export['uc_payment_method_cmcic_checkout'] = $strongarm;
  963. $strongarm = new stdClass();
  964. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  965. $strongarm->api_version = 1;
  966. $strongarm->name = 'uc_payment_method_cmcic_weight';
  967. $strongarm->value = '3';
  968. $export['uc_payment_method_cmcic_weight'] = $strongarm;
  969. $strongarm = new stdClass();
  970. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  971. $strongarm->api_version = 1;
  972. $strongarm->name = 'uc_payment_method_cod_checkout';
  973. $strongarm->value = 0;
  974. $export['uc_payment_method_cod_checkout'] = $strongarm;
  975. $strongarm = new stdClass();
  976. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  977. $strongarm->api_version = 1;
  978. $strongarm->name = 'uc_payment_method_cod_weight';
  979. $strongarm->value = '1';
  980. $export['uc_payment_method_cod_weight'] = $strongarm;
  981. $strongarm = new stdClass();
  982. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  983. $strongarm->api_version = 1;
  984. $strongarm->name = 'uc_payment_method_credit_checkout';
  985. $strongarm->value = 1;
  986. $export['uc_payment_method_credit_checkout'] = $strongarm;
  987. $strongarm = new stdClass();
  988. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  989. $strongarm->api_version = 1;
  990. $strongarm->name = 'uc_payment_method_credit_weight';
  991. $strongarm->value = '2';
  992. $export['uc_payment_method_credit_weight'] = $strongarm;
  993. $strongarm = new stdClass();
  994. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  995. $strongarm->api_version = 1;
  996. $strongarm->name = 'uc_payment_method_free_order_checkout';
  997. $strongarm->value = 1;
  998. $export['uc_payment_method_free_order_checkout'] = $strongarm;
  999. $strongarm = new stdClass();
  1000. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1001. $strongarm->api_version = 1;
  1002. $strongarm->name = 'uc_payment_method_free_order_weight';
  1003. $strongarm->value = '0';
  1004. $export['uc_payment_method_free_order_weight'] = $strongarm;
  1005. $strongarm = new stdClass();
  1006. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1007. $strongarm->api_version = 1;
  1008. $strongarm->name = 'uc_payment_method_other_checkout';
  1009. $strongarm->value = 1;
  1010. $export['uc_payment_method_other_checkout'] = $strongarm;
  1011. $strongarm = new stdClass();
  1012. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1013. $strongarm->api_version = 1;
  1014. $strongarm->name = 'uc_payment_method_other_weight';
  1015. $strongarm->value = '10';
  1016. $export['uc_payment_method_other_weight'] = $strongarm;
  1017. $strongarm = new stdClass();
  1018. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1019. $strongarm->api_version = 1;
  1020. $strongarm->name = 'uc_payment_show_order_total_preview';
  1021. $strongarm->value = 1;
  1022. $export['uc_payment_show_order_total_preview'] = $strongarm;
  1023. $strongarm = new stdClass();
  1024. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1025. $strongarm->api_version = 1;
  1026. $strongarm->name = 'uc_pg_test_gateway_cc_txn_type';
  1027. $strongarm->value = 'auth_capture';
  1028. $export['uc_pg_test_gateway_cc_txn_type'] = $strongarm;
  1029. $strongarm = new stdClass();
  1030. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1031. $strongarm->api_version = 1;
  1032. $strongarm->name = 'uc_pg_test_gateway_enabled';
  1033. $strongarm->value = 1;
  1034. $export['uc_pg_test_gateway_enabled'] = $strongarm;
  1035. $strongarm = new stdClass();
  1036. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1037. $strongarm->api_version = 1;
  1038. $strongarm->name = 'uc_product_add_to_cart_qty';
  1039. $strongarm->value = 0;
  1040. $export['uc_product_add_to_cart_qty'] = $strongarm;
  1041. $strongarm = new stdClass();
  1042. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1043. $strongarm->api_version = 1;
  1044. $strongarm->name = 'uc_product_image_widget';
  1045. $strongarm->value = '';
  1046. $export['uc_product_image_widget'] = $strongarm;
  1047. $strongarm = new stdClass();
  1048. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1049. $strongarm->api_version = 1;
  1050. $strongarm->name = 'uc_product_update_node_view';
  1051. $strongarm->value = 0;
  1052. $export['uc_product_update_node_view'] = $strongarm;
  1053. $strongarm = new stdClass();
  1054. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1055. $strongarm->api_version = 1;
  1056. $strongarm->name = 'uc_reports_reported_statuses';
  1057. $strongarm->value = array(
  1058. 'abandoned' => 'abandoned',
  1059. 'canceled' => 'canceled',
  1060. 'in_checkout' => 'in_checkout',
  1061. 'pending' => 'pending',
  1062. 'processing' => 'processing',
  1063. 'payment_received' => 'payment_received',
  1064. 'completed' => 'completed',
  1065. );
  1066. $export['uc_reports_reported_statuses'] = $strongarm;
  1067. $strongarm = new stdClass();
  1068. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1069. $strongarm->api_version = 1;
  1070. $strongarm->name = 'uc_reports_table_size';
  1071. $strongarm->value = '30';
  1072. $export['uc_reports_table_size'] = $strongarm;
  1073. $strongarm = new stdClass();
  1074. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1075. $strongarm->api_version = 1;
  1076. $strongarm->name = 'uc_roles_default_by_quantity';
  1077. $strongarm->value = 0;
  1078. $export['uc_roles_default_by_quantity'] = $strongarm;
  1079. $strongarm = new stdClass();
  1080. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1081. $strongarm->api_version = 1;
  1082. $strongarm->name = 'uc_roles_default_end_expiration';
  1083. $strongarm->value = 'rel';
  1084. $export['uc_roles_default_end_expiration'] = $strongarm;
  1085. $strongarm = new stdClass();
  1086. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1087. $strongarm->api_version = 1;
  1088. $strongarm->name = 'uc_roles_default_end_time';
  1089. $strongarm->value = array(
  1090. 'month' => '12',
  1091. 'day' => '5',
  1092. 'year' => '2012',
  1093. );
  1094. $export['uc_roles_default_end_time'] = $strongarm;
  1095. $strongarm = new stdClass();
  1096. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1097. $strongarm->api_version = 1;
  1098. $strongarm->name = 'uc_roles_default_granularity';
  1099. $strongarm->value = 'never';
  1100. $export['uc_roles_default_granularity'] = $strongarm;
  1101. $strongarm = new stdClass();
  1102. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1103. $strongarm->api_version = 1;
  1104. $strongarm->name = 'uc_roles_default_length';
  1105. $strongarm->value = '';
  1106. $export['uc_roles_default_length'] = $strongarm;
  1107. $strongarm = new stdClass();
  1108. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1109. $strongarm->api_version = 1;
  1110. $strongarm->name = 'uc_roles_default_role';
  1111. $strongarm->value = '6';
  1112. $export['uc_roles_default_role'] = $strongarm;
  1113. $strongarm = new stdClass();
  1114. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1115. $strongarm->api_version = 1;
  1116. $strongarm->name = 'uc_roles_default_role_choices';
  1117. $strongarm->value = array(
  1118. 10 => '10',
  1119. 6 => '6',
  1120. 8 => '8',
  1121. 9 => 0,
  1122. 7 => 0,
  1123. 5 => 0,
  1124. 3 => 0,
  1125. 4 => 0,
  1126. );
  1127. $export['uc_roles_default_role_choices'] = $strongarm;
  1128. $strongarm = new stdClass();
  1129. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1130. $strongarm->api_version = 1;
  1131. $strongarm->name = 'uc_roles_default_show_expiration';
  1132. $strongarm->value = 1;
  1133. $export['uc_roles_default_show_expiration'] = $strongarm;
  1134. $strongarm = new stdClass();
  1135. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1136. $strongarm->api_version = 1;
  1137. $strongarm->name = 'uc_roles_reminder_granularity';
  1138. $strongarm->value = 'month';
  1139. $export['uc_roles_reminder_granularity'] = $strongarm;
  1140. $strongarm = new stdClass();
  1141. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1142. $strongarm->api_version = 1;
  1143. $strongarm->name = 'uc_roles_reminder_length';
  1144. $strongarm->value = '1';
  1145. $export['uc_roles_reminder_length'] = $strongarm;
  1146. $strongarm = new stdClass();
  1147. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1148. $strongarm->api_version = 1;
  1149. $strongarm->name = 'uc_sign_after_amount';
  1150. $strongarm->value = 1;
  1151. $export['uc_sign_after_amount'] = $strongarm;
  1152. $strongarm = new stdClass();
  1153. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1154. $strongarm->api_version = 1;
  1155. $strongarm->name = 'uc_store_city';
  1156. $strongarm->value = '';
  1157. $export['uc_store_city'] = $strongarm;
  1158. $strongarm = new stdClass();
  1159. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1160. $strongarm->api_version = 1;
  1161. $strongarm->name = 'uc_store_country';
  1162. $strongarm->value = '840';
  1163. $export['uc_store_country'] = $strongarm;
  1164. $strongarm = new stdClass();
  1165. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1166. $strongarm->api_version = 1;
  1167. $strongarm->name = 'uc_store_email';
  1168. $strongarm->value = 'info@materio.com';
  1169. $export['uc_store_email'] = $strongarm;
  1170. $strongarm = new stdClass();
  1171. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1172. $strongarm->api_version = 1;
  1173. $strongarm->name = 'uc_store_email_include_name';
  1174. $strongarm->value = 1;
  1175. $export['uc_store_email_include_name'] = $strongarm;
  1176. $strongarm = new stdClass();
  1177. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1178. $strongarm->api_version = 1;
  1179. $strongarm->name = 'uc_store_fax';
  1180. $strongarm->value = '';
  1181. $export['uc_store_fax'] = $strongarm;
  1182. $strongarm = new stdClass();
  1183. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1184. $strongarm->api_version = 1;
  1185. $strongarm->name = 'uc_store_help_page';
  1186. $strongarm->value = '';
  1187. $export['uc_store_help_page'] = $strongarm;
  1188. $strongarm = new stdClass();
  1189. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1190. $strongarm->api_version = 1;
  1191. $strongarm->name = 'uc_store_name';
  1192. $strongarm->value = 'materiO’';
  1193. $export['uc_store_name'] = $strongarm;
  1194. $strongarm = new stdClass();
  1195. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1196. $strongarm->api_version = 1;
  1197. $strongarm->name = 'uc_store_owner';
  1198. $strongarm->value = '';
  1199. $export['uc_store_owner'] = $strongarm;
  1200. $strongarm = new stdClass();
  1201. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1202. $strongarm->api_version = 1;
  1203. $strongarm->name = 'uc_store_phone';
  1204. $strongarm->value = '';
  1205. $export['uc_store_phone'] = $strongarm;
  1206. $strongarm = new stdClass();
  1207. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1208. $strongarm->api_version = 1;
  1209. $strongarm->name = 'uc_store_postal_code';
  1210. $strongarm->value = '';
  1211. $export['uc_store_postal_code'] = $strongarm;
  1212. $strongarm = new stdClass();
  1213. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1214. $strongarm->api_version = 1;
  1215. $strongarm->name = 'uc_store_street1';
  1216. $strongarm->value = '';
  1217. $export['uc_store_street1'] = $strongarm;
  1218. $strongarm = new stdClass();
  1219. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1220. $strongarm->api_version = 1;
  1221. $strongarm->name = 'uc_store_street2';
  1222. $strongarm->value = '';
  1223. $export['uc_store_street2'] = $strongarm;
  1224. $strongarm = new stdClass();
  1225. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1226. $strongarm->api_version = 1;
  1227. $strongarm->name = 'uc_store_zone';
  1228. $strongarm->value = 0;
  1229. $export['uc_store_zone'] = $strongarm;
  1230. $strongarm = new stdClass();
  1231. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1232. $strongarm->api_version = 1;
  1233. $strongarm->name = 'uc_termsofservice_checkout_display';
  1234. $strongarm->value = 'teaser';
  1235. $export['uc_termsofservice_checkout_display'] = $strongarm;
  1236. $strongarm = new stdClass();
  1237. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1238. $strongarm->api_version = 1;
  1239. $strongarm->name = 'uc_termsofservice_checkout_node';
  1240. $strongarm->value = '';
  1241. $export['uc_termsofservice_checkout_node'] = $strongarm;
  1242. $strongarm = new stdClass();
  1243. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1244. $strongarm->api_version = 1;
  1245. $strongarm->name = 'uc_termsofservice_checkout_required';
  1246. $strongarm->value = 0;
  1247. $export['uc_termsofservice_checkout_required'] = $strongarm;
  1248. $strongarm = new stdClass();
  1249. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1250. $strongarm->api_version = 1;
  1251. $strongarm->name = 'uc_termsofservice_checkout_rules';
  1252. $strongarm->value = 0;
  1253. $export['uc_termsofservice_checkout_rules'] = $strongarm;
  1254. $strongarm = new stdClass();
  1255. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1256. $strongarm->api_version = 1;
  1257. $strongarm->name = 'uc_termsofservice_checkout_title';
  1258. $strongarm->value = '1';
  1259. $export['uc_termsofservice_checkout_title'] = $strongarm;
  1260. $strongarm = new stdClass();
  1261. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1262. $strongarm->api_version = 1;
  1263. $strongarm->name = 'uc_use_next_buttons';
  1264. $strongarm->value = 0;
  1265. $export['uc_use_next_buttons'] = $strongarm;
  1266. $strongarm = new stdClass();
  1267. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1268. $strongarm->api_version = 1;
  1269. $strongarm->name = 'uc_weight_format_g';
  1270. $strongarm->value = '!value g';
  1271. $export['uc_weight_format_g'] = $strongarm;
  1272. $strongarm = new stdClass();
  1273. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1274. $strongarm->api_version = 1;
  1275. $strongarm->name = 'uc_weight_format_kg';
  1276. $strongarm->value = '!value kg';
  1277. $export['uc_weight_format_kg'] = $strongarm;
  1278. $strongarm = new stdClass();
  1279. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1280. $strongarm->api_version = 1;
  1281. $strongarm->name = 'uc_weight_format_lb';
  1282. $strongarm->value = '!value lb';
  1283. $export['uc_weight_format_lb'] = $strongarm;
  1284. $strongarm = new stdClass();
  1285. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1286. $strongarm->api_version = 1;
  1287. $strongarm->name = 'uc_weight_format_oz';
  1288. $strongarm->value = '!value oz';
  1289. $export['uc_weight_format_oz'] = $strongarm;
  1290. $strongarm = new stdClass();
  1291. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1292. $strongarm->api_version = 1;
  1293. $strongarm->name = 'uc_weight_unit';
  1294. $strongarm->value = 'kg';
  1295. $export['uc_weight_unit'] = $strongarm;
  1296. return $export;
  1297. }