materio_subscriptions.strongarm.inc 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500
  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 = 'date_format_uc_store';
  15. $strongarm->value = 'm/d/Y';
  16. $export['date_format_uc_store'] = $strongarm;
  17. $strongarm = new stdClass();
  18. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  19. $strongarm->api_version = 1;
  20. $strongarm->name = 'uc_address_fields';
  21. $strongarm->value = array(
  22. 'first_name' => 1,
  23. 'last_name' => 1,
  24. 'company' => 1,
  25. 'street1' => 1,
  26. 'street2' => 1,
  27. 'city' => 1,
  28. 'zone' => 1,
  29. 'country' => 1,
  30. 'postal_code' => 1,
  31. 'phone' => 1,
  32. );
  33. $export['uc_address_fields'] = $strongarm;
  34. $strongarm = new stdClass();
  35. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  36. $strongarm->api_version = 1;
  37. $strongarm->name = 'uc_address_fields_required';
  38. $strongarm->value = array(
  39. 'first_name' => 1,
  40. 'last_name' => 1,
  41. 'street1' => 1,
  42. 'city' => 1,
  43. 'country' => 1,
  44. 'postal_code' => 1,
  45. 'phone' => 1,
  46. );
  47. $export['uc_address_fields_required'] = $strongarm;
  48. $strongarm = new stdClass();
  49. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  50. $strongarm->api_version = 1;
  51. $strongarm->name = 'uc_address_fields_weight';
  52. $strongarm->value = array(
  53. 'first_name' => '-10',
  54. 'last_name' => '-9',
  55. 'company' => '-8',
  56. 'street1' => '-7',
  57. 'street2' => '-6',
  58. 'city' => '-4',
  59. 'zone' => '-3',
  60. 'country' => '-2',
  61. 'postal_code' => '-5',
  62. 'phone' => '-1',
  63. );
  64. $export['uc_address_fields_weight'] = $strongarm;
  65. $strongarm = new stdClass();
  66. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  67. $strongarm->api_version = 1;
  68. $strongarm->name = 'uc_address_format_12';
  69. $strongarm->value = '!company
  70. !first_name !last_name
  71. !street1
  72. !street2
  73. !city
  74. !postal_code !zone_code
  75. !country_name_if';
  76. $export['uc_address_format_12'] = $strongarm;
  77. $strongarm = new stdClass();
  78. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  79. $strongarm->api_version = 1;
  80. $strongarm->name = 'uc_address_format_124';
  81. $strongarm->value = '!company
  82. !first_name !last_name
  83. !street1
  84. !street2
  85. !city, !postal_code
  86. !zone_name, !country_name';
  87. $export['uc_address_format_124'] = $strongarm;
  88. $strongarm = new stdClass();
  89. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  90. $strongarm->api_version = 1;
  91. $strongarm->name = 'uc_address_format_16';
  92. $strongarm->value = '!company
  93. !first_name !last_name
  94. !street1
  95. !street2
  96. !city, !postal_code
  97. !country_name_if';
  98. $export['uc_address_format_16'] = $strongarm;
  99. $strongarm = new stdClass();
  100. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  101. $strongarm->api_version = 1;
  102. $strongarm->name = 'uc_address_format_20';
  103. $strongarm->value = '!company
  104. !first_name !last_name
  105. !street1
  106. !street2
  107. !city, !postal_code
  108. !country_name_if';
  109. $export['uc_address_format_20'] = $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_address_format_24';
  114. $strongarm->value = '!company
  115. !first_name !last_name
  116. !street1
  117. !street2
  118. !city, !zone_name !postal_code
  119. !country_name_if';
  120. $export['uc_address_format_24'] = $strongarm;
  121. $strongarm = new stdClass();
  122. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  123. $strongarm->api_version = 1;
  124. $strongarm->name = 'uc_address_format_250';
  125. $strongarm->value = '!company
  126. !first_name !last_name
  127. !street1
  128. !street2
  129. !postal_code !city
  130. !country_name_if';
  131. $export['uc_address_format_250'] = $strongarm;
  132. $strongarm = new stdClass();
  133. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  134. $strongarm->api_version = 1;
  135. $strongarm->name = 'uc_address_format_4';
  136. $strongarm->value = '!company
  137. !first_name !last_name
  138. !street1
  139. !street2
  140. !city, !zone_code !postal_code
  141. !country_name_if';
  142. $export['uc_address_format_4'] = $strongarm;
  143. $strongarm = new stdClass();
  144. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  145. $strongarm->api_version = 1;
  146. $strongarm->name = 'uc_address_format_784';
  147. $strongarm->value = '!company
  148. !first_name !last_name
  149. !street1
  150. !street2
  151. !city, !zone_code
  152. !country_name_if';
  153. $export['uc_address_format_784'] = $strongarm;
  154. $strongarm = new stdClass();
  155. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  156. $strongarm->api_version = 1;
  157. $strongarm->name = 'uc_address_format_795';
  158. $strongarm->value = '!company
  159. !first_name !last_name
  160. !street1
  161. !street2
  162. !city, !zone_name !postal_code
  163. !country_name_if';
  164. $export['uc_address_format_795'] = $strongarm;
  165. $strongarm = new stdClass();
  166. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  167. $strongarm->api_version = 1;
  168. $strongarm->name = 'uc_address_format_796';
  169. $strongarm->value = '!company
  170. !first_name !last_name
  171. !street1
  172. !street2
  173. !city !postal_code
  174. !country_name_if';
  175. $export['uc_address_format_796'] = $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_address_format_798';
  180. $strongarm->value = '!company
  181. !first_name !last_name
  182. !street1
  183. !street2
  184. !city, !zone_name !postal_code
  185. !country_name_if';
  186. $export['uc_address_format_798'] = $strongarm;
  187. $strongarm = new stdClass();
  188. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  189. $strongarm->api_version = 1;
  190. $strongarm->name = 'uc_address_format_8';
  191. $strongarm->value = '!company
  192. !first_name !last_name
  193. !street1
  194. !street2
  195. !city, !zone_name !postal_code
  196. !country_name_if';
  197. $export['uc_address_format_8'] = $strongarm;
  198. $strongarm = new stdClass();
  199. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  200. $strongarm->api_version = 1;
  201. $strongarm->name = 'uc_address_format_800';
  202. $strongarm->value = '!company
  203. !first_name !last_name
  204. !street1
  205. !street2
  206. !city, !zone_name !postal_code
  207. !country_name_if';
  208. $export['uc_address_format_800'] = $strongarm;
  209. $strongarm = new stdClass();
  210. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  211. $strongarm->api_version = 1;
  212. $strongarm->name = 'uc_address_format_804';
  213. $strongarm->value = '!country_name
  214. !zone_name
  215. !city
  216. !postal_code
  217. !street1
  218. !street2
  219. !company
  220. !first_name !last_name';
  221. $export['uc_address_format_804'] = $strongarm;
  222. $strongarm = new stdClass();
  223. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  224. $strongarm->api_version = 1;
  225. $strongarm->name = 'uc_address_format_826';
  226. $strongarm->value = '!first_name !last_name
  227. !company
  228. !street1
  229. !street2
  230. !city
  231. !postal_code
  232. !country_name_if';
  233. $export['uc_address_format_826'] = $strongarm;
  234. $strongarm = new stdClass();
  235. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  236. $strongarm->api_version = 1;
  237. $strongarm->name = 'uc_address_format_840';
  238. $strongarm->value = '!company
  239. !first_name !last_name
  240. !street1
  241. !street2
  242. !city, !zone_code !postal_code
  243. !country_name_if';
  244. $export['uc_address_format_840'] = $strongarm;
  245. $strongarm = new stdClass();
  246. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  247. $strongarm->api_version = 1;
  248. $strongarm->name = 'uc_address_format_894';
  249. $strongarm->value = '!company
  250. !first_name !last_name
  251. !street1
  252. !street2
  253. !city, !zone_name !postal_code
  254. !country_name_if';
  255. $export['uc_address_format_894'] = $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_add_item_redirect';
  260. $strongarm->value = 'cart/checkout';
  261. $export['uc_add_item_redirect'] = $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_attribute_option_price_format';
  266. $strongarm->value = 'total';
  267. $export['uc_attribute_option_price_format'] = $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_enabled';
  272. $strongarm->value = 1;
  273. $export['uc_cap_cart_form_enabled'] = $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_cart_form_weight';
  278. $strongarm->value = '0';
  279. $export['uc_cap_cart_form_weight'] = $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_enabled';
  284. $strongarm->value = 1;
  285. $export['uc_cap_coupon_auto_enabled'] = $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_auto_weight';
  290. $strongarm->value = '1';
  291. $export['uc_cap_coupon_auto_weight'] = $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_enabled';
  296. $strongarm->value = 1;
  297. $export['uc_cap_coupon_enabled'] = $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_coupon_weight';
  302. $strongarm->value = '1';
  303. $export['uc_cap_coupon_weight'] = $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_enabled';
  308. $strongarm->value = 1;
  309. $export['uc_cap_uc_termsofservice_agreement_cart_enabled'] = $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_cap_uc_termsofservice_agreement_cart_weight';
  314. $strongarm->value = '6';
  315. $export['uc_cap_uc_termsofservice_agreement_cart_weight'] = $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_add_item_msg';
  320. $strongarm->value = 1;
  321. $export['uc_cart_add_item_msg'] = $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_duration';
  326. $strongarm->value = '4';
  327. $export['uc_cart_anon_duration'] = $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_anon_unit';
  332. $strongarm->value = 'hours';
  333. $export['uc_cart_anon_unit'] = $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_duration';
  338. $strongarm->value = '2';
  339. $export['uc_cart_auth_duration'] = $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_auth_unit';
  344. $strongarm->value = 'weeks';
  345. $export['uc_cart_auth_unit'] = $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_text';
  350. $strongarm->value = '';
  351. $export['uc_cart_breadcrumb_text'] = $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_breadcrumb_url';
  356. $strongarm->value = '';
  357. $export['uc_cart_breadcrumb_url'] = $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_checkout_complete_page';
  362. $strongarm->value = '';
  363. $export['uc_cart_checkout_complete_page'] = $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_delivery_not_shippable';
  368. $strongarm->value = 1;
  369. $export['uc_cart_delivery_not_shippable'] = $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_email_validation';
  374. $strongarm->value = 1;
  375. $export['uc_cart_email_validation'] = $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_mail_existing';
  380. $strongarm->value = 1;
  381. $export['uc_cart_mail_existing'] = $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_details';
  386. $strongarm->value = '<b>Optional.</b> New customers may supply custom account details.<br />We will create these for you if no values are entered.';
  387. $export['uc_cart_new_account_details'] = $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_name';
  392. $strongarm->value = 0;
  393. $export['uc_cart_new_account_name'] = $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_cart_new_account_password';
  398. $strongarm->value = 0;
  399. $export['uc_cart_new_account_password'] = $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_anonymous';
  404. $strongarm->value = 1;
  405. $export['uc_checkout_anonymous'] = $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_enabled';
  410. $strongarm->value = 1;
  411. $export['uc_checkout_enabled'] = $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_instructions';
  416. $strongarm->value = '';
  417. $export['uc_checkout_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_checkout_review_instructions';
  422. $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.';
  423. $export['uc_checkout_review_instructions'] = $strongarm;
  424. $strongarm = new stdClass();
  425. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  426. $strongarm->api_version = 1;
  427. $strongarm->name = 'uc_check_address';
  428. $strongarm->value = array(
  429. 'uc_check_mailing_company' => 'materiO\'',
  430. 'uc_check_mailing_street1' => '74 rue du Faubourg Saint-Anthoine',
  431. 'uc_check_mailing_street2' => '',
  432. 'uc_check_mailing_city' => 'Paris',
  433. 'uc_check_mailing_zone' => 0,
  434. 'uc_check_mailing_country' => '250',
  435. 'uc_check_mailing_postal_code' => '75012',
  436. );
  437. $export['uc_check_address'] = $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_city';
  442. $strongarm->value = 'Paris';
  443. $export['uc_check_mailing_city'] = $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_company';
  448. $strongarm->value = 'materiO\'';
  449. $export['uc_check_mailing_company'] = $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_country';
  454. $strongarm->value = '250';
  455. $export['uc_check_mailing_country'] = $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_name';
  460. $strongarm->value = '';
  461. $export['uc_check_mailing_name'] = $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_postal_code';
  466. $strongarm->value = '75009';
  467. $export['uc_check_mailing_postal_code'] = $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_street1';
  472. $strongarm->value = '8 rue chaptal';
  473. $export['uc_check_mailing_street1'] = $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_street2';
  478. $strongarm->value = '';
  479. $export['uc_check_mailing_street2'] = $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_mailing_zone';
  484. $strongarm->value = 0;
  485. $export['uc_check_mailing_zone'] = $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_check_policy';
  490. $strongarm->value = 'Your account will be activated when we recieve your payment.';
  491. $export['uc_check_policy'] = $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_collapse_current_pane';
  496. $strongarm->value = 0;
  497. $export['uc_collapse_current_pane'] = $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_type';
  502. $strongarm->value = 'none';
  503. $export['uc_continue_shopping_type'] = $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_url';
  508. $strongarm->value = '';
  509. $export['uc_continue_shopping_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_continue_shopping_use_last_url';
  514. $strongarm->value = 1;
  515. $export['uc_continue_shopping_use_last_url'] = $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_collapse_pane';
  520. $strongarm->value = 0;
  521. $export['uc_coupon_collapse_pane'] = $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_coupon_pane_description';
  526. $strongarm->value = 'Enter a coupon code for this order.';
  527. $export['uc_coupon_pane_description'] = $strongarm;
  528. $strongarm = new stdClass();
  529. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  530. $strongarm->api_version = 1;
  531. $strongarm->name = 'uc_credit_accepted_types';
  532. $strongarm->value = 'Visa
  533. Mastercard
  534. Discover
  535. American Express';
  536. $export['uc_credit_accepted_types'] = $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_amex';
  541. $strongarm->value = 1;
  542. $export['uc_credit_amex'] = $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_bank_enabled';
  547. $strongarm->value = 0;
  548. $export['uc_credit_bank_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_cvv_enabled';
  553. $strongarm->value = 1;
  554. $export['uc_credit_cvv_enabled'] = $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_discover';
  559. $strongarm->value = 1;
  560. $export['uc_credit_discover'] = $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_encryption_path';
  565. $strongarm->value = '/Users/bachir/Sites/materio/encrypt';
  566. $export['uc_credit_encryption_path'] = $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_fail_message';
  571. $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.';
  572. $export['uc_credit_fail_message'] = $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_issue_enabled';
  577. $strongarm->value = 1;
  578. $export['uc_credit_issue_enabled'] = $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_mastercard';
  583. $strongarm->value = 1;
  584. $export['uc_credit_mastercard'] = $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_owner_enabled';
  589. $strongarm->value = 1;
  590. $export['uc_credit_owner_enabled'] = $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_policy';
  595. $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.';
  596. $export['uc_credit_policy'] = $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_start_enabled';
  601. $strongarm->value = 1;
  602. $export['uc_credit_start_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_type_enabled';
  607. $strongarm->value = 1;
  608. $export['uc_credit_type_enabled'] = $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_validate_numbers';
  613. $strongarm->value = 1;
  614. $export['uc_credit_validate_numbers'] = $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_visa';
  619. $strongarm->value = 1;
  620. $export['uc_credit_visa'] = $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_credit__active_tab';
  625. $strongarm->value = 'edit-test-gateway';
  626. $export['uc_credit__active_tab'] = $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_code';
  631. $strongarm->value = 'EUR';
  632. $export['uc_currency_code'] = $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_dec';
  637. $strongarm->value = '.';
  638. $export['uc_currency_dec'] = $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_prec';
  643. $strongarm->value = '2';
  644. $export['uc_currency_prec'] = $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_sign';
  649. $strongarm->value = '€';
  650. $export['uc_currency_sign'] = $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_currency_thou';
  655. $strongarm->value = ',';
  656. $export['uc_currency_thou'] = $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_customer_list_address';
  661. $strongarm->value = 'billing';
  662. $export['uc_customer_list_address'] = $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_city';
  667. $strongarm->value = 'City';
  668. $export['uc_field_city'] = $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_company';
  673. $strongarm->value = 'Company';
  674. $export['uc_field_company'] = $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_country';
  679. $strongarm->value = 'Pays';
  680. $export['uc_field_country'] = $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_first_name';
  685. $strongarm->value = 'First name';
  686. $export['uc_field_first_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_last_name';
  691. $strongarm->value = 'Last name';
  692. $export['uc_field_last_name'] = $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_phone';
  697. $strongarm->value = 'Phone number';
  698. $export['uc_field_phone'] = $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_postal_code';
  703. $strongarm->value = 'Postal code';
  704. $export['uc_field_postal_code'] = $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_street1';
  709. $strongarm->value = 'Street address';
  710. $export['uc_field_street1'] = $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_street2';
  715. $strongarm->value = '';
  716. $export['uc_field_street2'] = $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_field_zone';
  721. $strongarm->value = 'State/Province';
  722. $export['uc_field_zone'] = $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_footer_message';
  727. $strongarm->value = 'none';
  728. $export['uc_footer_message'] = $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_image_product';
  733. $strongarm->value = 'uc_product_image';
  734. $export['uc_image_product'] = $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_cm';
  739. $strongarm->value = '!value cm';
  740. $export['uc_length_format_cm'] = $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_ft';
  745. $strongarm->value = '!value ft';
  746. $export['uc_length_format_ft'] = $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_in';
  751. $strongarm->value = '!value in';
  752. $export['uc_length_format_in'] = $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_format_mm';
  757. $strongarm->value = '!value mm';
  758. $export['uc_length_format_mm'] = $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_length_unit';
  763. $strongarm->value = 'cm';
  764. $export['uc_length_unit'] = $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_minimum_subtotal';
  769. $strongarm->value = '1.00';
  770. $export['uc_minimum_subtotal'] = $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_continue_shopping';
  775. $strongarm->value = '<a href="[site:url]">Return to the front page.</a>';
  776. $export['uc_msg_continue_shopping'] = $strongarm;
  777. $strongarm = new stdClass();
  778. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  779. $strongarm->api_version = 1;
  780. $strongarm->name = 'uc_msg_order_existing_user';
  781. $strongarm->value = 'Thank you for subscribing to [store:name].';
  782. $export['uc_msg_order_existing_user'] = $strongarm;
  783. $strongarm = new stdClass();
  784. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  785. $strongarm->api_version = 1;
  786. $strongarm->name = 'uc_msg_order_logged_in';
  787. $strongarm->value = 'Thank you for subscribing to [store:name].';
  788. $export['uc_msg_order_logged_in'] = $strongarm;
  789. $strongarm = new stdClass();
  790. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  791. $strongarm->api_version = 1;
  792. $strongarm->name = 'uc_msg_order_new_user';
  793. $strongarm->value = 'Thank you for subscribing to [store:name]. A new account has been created for you here.
  794. <a href="/fr/user">Login</a> to your new account using the following information:
  795. <strong>Username:</strong> !new_username
  796. <strong>Password:</strong> !new_password';
  797. $export['uc_msg_order_new_user'] = $strongarm;
  798. $strongarm = new stdClass();
  799. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  800. $strongarm->api_version = 1;
  801. $strongarm->name = 'uc_msg_order_new_user_logged_in';
  802. $strongarm->value = 'Thank you for subscribing to [store:name]. A new account has been created for you here.
  803. Your password and further instructions have been sent to your e-mail address.
  804. For your convenience, you are already logged in with your newly created account.
  805. <a href="[site:url]">Return to the front page.</a>';
  806. $export['uc_msg_order_new_user_logged_in'] = $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_msg_order_submit';
  811. $strongarm->value = 'Your order is complete!';
  812. $export['uc_msg_order_submit'] = $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_email';
  817. $strongarm->value = 1;
  818. $export['uc_new_customer_email'] = $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_login';
  823. $strongarm->value = 1;
  824. $export['uc_new_customer_login'] = $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_new_customer_status_active';
  829. $strongarm->value = 1;
  830. $export['uc_new_customer_status_active'] = $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_order_capitalize_addresses';
  835. $strongarm->value = 1;
  836. $export['uc_order_capitalize_addresses'] = $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_enabled';
  841. $strongarm->value = 1;
  842. $export['uc_pane_billing_enabled'] = $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_billing_weight';
  847. $strongarm->value = '4';
  848. $export['uc_pane_billing_weight'] = $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_enabled';
  853. $strongarm->value = 1;
  854. $export['uc_pane_cart_enabled'] = $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_cart_weight';
  859. $strongarm->value = '1';
  860. $export['uc_pane_cart_weight'] = $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_enabled';
  865. $strongarm->value = 0;
  866. $export['uc_pane_comments_enabled'] = $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_comments_weight';
  871. $strongarm->value = '7';
  872. $export['uc_pane_comments_weight'] = $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_enabled';
  877. $strongarm->value = 1;
  878. $export['uc_pane_coupon_automatic_enabled'] = $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_automatic_weight';
  883. $strongarm->value = '5';
  884. $export['uc_pane_coupon_automatic_weight'] = $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_enabled';
  889. $strongarm->value = 1;
  890. $export['uc_pane_coupon_enabled'] = $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_coupon_weight';
  895. $strongarm->value = '5';
  896. $export['uc_pane_coupon_weight'] = $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_enabled';
  901. $strongarm->value = 1;
  902. $export['uc_pane_customer_enabled'] = $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_customer_weight';
  907. $strongarm->value = '2';
  908. $export['uc_pane_customer_weight'] = $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_enabled';
  913. $strongarm->value = 0;
  914. $export['uc_pane_delivery_enabled'] = $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_delivery_weight';
  919. $strongarm->value = '3';
  920. $export['uc_pane_delivery_weight'] = $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_enabled';
  925. $strongarm->value = 1;
  926. $export['uc_pane_payment_enabled'] = $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_payment_weight';
  931. $strongarm->value = '6';
  932. $export['uc_pane_payment_weight'] = $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_enabled';
  937. $strongarm->value = 1;
  938. $export['uc_pane_uc_termsofservice_agreement_checkout_enabled'] = $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_pane_uc_termsofservice_agreement_checkout_weight';
  943. $strongarm->value = '6';
  944. $export['uc_pane_uc_termsofservice_agreement_checkout_weight'] = $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_credit_gateway';
  949. $strongarm->value = 'test_gateway';
  950. $export['uc_payment_credit_gateway'] = $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_checkout';
  955. $strongarm->value = 1;
  956. $export['uc_payment_method_check_checkout'] = $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_check_weight';
  961. $strongarm->value = '-9';
  962. $export['uc_payment_method_check_weight'] = $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_checkout';
  967. $strongarm->value = 1;
  968. $export['uc_payment_method_cmcic_checkout'] = $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_cmcic_weight';
  973. $strongarm->value = '-10';
  974. $export['uc_payment_method_cmcic_weight'] = $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_checkout';
  979. $strongarm->value = 0;
  980. $export['uc_payment_method_cod_checkout'] = $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_cod_weight';
  985. $strongarm->value = '-7';
  986. $export['uc_payment_method_cod_weight'] = $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_checkout';
  991. $strongarm->value = 0;
  992. $export['uc_payment_method_credit_checkout'] = $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_credit_weight';
  997. $strongarm->value = '-6';
  998. $export['uc_payment_method_credit_weight'] = $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_checkout';
  1003. $strongarm->value = 0;
  1004. $export['uc_payment_method_free_order_checkout'] = $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_free_order_weight';
  1009. $strongarm->value = '-8';
  1010. $export['uc_payment_method_free_order_weight'] = $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_checkout';
  1015. $strongarm->value = 0;
  1016. $export['uc_payment_method_other_checkout'] = $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_method_other_weight';
  1021. $strongarm->value = '-5';
  1022. $export['uc_payment_method_other_weight'] = $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_payment_show_order_total_preview';
  1027. $strongarm->value = 1;
  1028. $export['uc_payment_show_order_total_preview'] = $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_cc_txn_type';
  1033. $strongarm->value = 'auth_capture';
  1034. $export['uc_pg_test_gateway_cc_txn_type'] = $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_pg_test_gateway_enabled';
  1039. $strongarm->value = 1;
  1040. $export['uc_pg_test_gateway_enabled'] = $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_add_to_cart_qty';
  1045. $strongarm->value = 0;
  1046. $export['uc_product_add_to_cart_qty'] = $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_image_widget';
  1051. $strongarm->value = '';
  1052. $export['uc_product_image_widget'] = $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_product_update_node_view';
  1057. $strongarm->value = 0;
  1058. $export['uc_product_update_node_view'] = $strongarm;
  1059. $strongarm = new stdClass();
  1060. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1061. $strongarm->api_version = 1;
  1062. $strongarm->name = 'uc_reports_reported_statuses';
  1063. $strongarm->value = array(
  1064. 'abandoned' => 'abandoned',
  1065. 'canceled' => 'canceled',
  1066. 'in_checkout' => 'in_checkout',
  1067. 'pending' => 'pending',
  1068. 'processing' => 'processing',
  1069. 'payment_received' => 'payment_received',
  1070. 'completed' => 'completed',
  1071. );
  1072. $export['uc_reports_reported_statuses'] = $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_reports_table_size';
  1077. $strongarm->value = '30';
  1078. $export['uc_reports_table_size'] = $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_by_quantity';
  1083. $strongarm->value = 0;
  1084. $export['uc_roles_default_by_quantity'] = $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_expiration';
  1089. $strongarm->value = 'rel';
  1090. $export['uc_roles_default_end_expiration'] = $strongarm;
  1091. $strongarm = new stdClass();
  1092. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1093. $strongarm->api_version = 1;
  1094. $strongarm->name = 'uc_roles_default_end_time';
  1095. $strongarm->value = array(
  1096. 'month' => '12',
  1097. 'day' => '5',
  1098. 'year' => '2012',
  1099. );
  1100. $export['uc_roles_default_end_time'] = $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_granularity';
  1105. $strongarm->value = 'year';
  1106. $export['uc_roles_default_granularity'] = $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_length';
  1111. $strongarm->value = '1';
  1112. $export['uc_roles_default_length'] = $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';
  1117. $strongarm->value = '6';
  1118. $export['uc_roles_default_role'] = $strongarm;
  1119. $strongarm = new stdClass();
  1120. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1121. $strongarm->api_version = 1;
  1122. $strongarm->name = 'uc_roles_default_role_choices';
  1123. $strongarm->value = array(
  1124. 10 => '10',
  1125. 6 => '6',
  1126. 8 => '8',
  1127. 9 => 0,
  1128. 7 => 0,
  1129. 11 => 0,
  1130. 5 => 0,
  1131. 3 => 0,
  1132. 4 => 0,
  1133. );
  1134. $export['uc_roles_default_role_choices'] = $strongarm;
  1135. $strongarm = new stdClass();
  1136. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1137. $strongarm->api_version = 1;
  1138. $strongarm->name = 'uc_roles_default_show_expiration';
  1139. $strongarm->value = 1;
  1140. $export['uc_roles_default_show_expiration'] = $strongarm;
  1141. $strongarm = new stdClass();
  1142. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1143. $strongarm->api_version = 1;
  1144. $strongarm->name = 'uc_roles_reminder_granularity';
  1145. $strongarm->value = 'month';
  1146. $export['uc_roles_reminder_granularity'] = $strongarm;
  1147. $strongarm = new stdClass();
  1148. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1149. $strongarm->api_version = 1;
  1150. $strongarm->name = 'uc_roles_reminder_length';
  1151. $strongarm->value = '1';
  1152. $export['uc_roles_reminder_length'] = $strongarm;
  1153. $strongarm = new stdClass();
  1154. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1155. $strongarm->api_version = 1;
  1156. $strongarm->name = 'uc_sign_after_amount';
  1157. $strongarm->value = 1;
  1158. $export['uc_sign_after_amount'] = $strongarm;
  1159. $strongarm = new stdClass();
  1160. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1161. $strongarm->api_version = 1;
  1162. $strongarm->name = 'uc_store_city';
  1163. $strongarm->value = 'Paris';
  1164. $export['uc_store_city'] = $strongarm;
  1165. $strongarm = new stdClass();
  1166. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1167. $strongarm->api_version = 1;
  1168. $strongarm->name = 'uc_store_country';
  1169. $strongarm->value = '250';
  1170. $export['uc_store_country'] = $strongarm;
  1171. $strongarm = new stdClass();
  1172. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1173. $strongarm->api_version = 1;
  1174. $strongarm->name = 'uc_store_email';
  1175. $strongarm->value = 'info@materio.com';
  1176. $export['uc_store_email'] = $strongarm;
  1177. $strongarm = new stdClass();
  1178. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1179. $strongarm->api_version = 1;
  1180. $strongarm->name = 'uc_store_email_include_name';
  1181. $strongarm->value = 1;
  1182. $export['uc_store_email_include_name'] = $strongarm;
  1183. $strongarm = new stdClass();
  1184. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1185. $strongarm->api_version = 1;
  1186. $strongarm->name = 'uc_store_fax';
  1187. $strongarm->value = '';
  1188. $export['uc_store_fax'] = $strongarm;
  1189. $strongarm = new stdClass();
  1190. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1191. $strongarm->api_version = 1;
  1192. $strongarm->name = 'uc_store_help_page';
  1193. $strongarm->value = '';
  1194. $export['uc_store_help_page'] = $strongarm;
  1195. $strongarm = new stdClass();
  1196. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1197. $strongarm->api_version = 1;
  1198. $strongarm->name = 'uc_store_name';
  1199. $strongarm->value = 'materiO’';
  1200. $export['uc_store_name'] = $strongarm;
  1201. $strongarm = new stdClass();
  1202. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1203. $strongarm->api_version = 1;
  1204. $strongarm->name = 'uc_store_owner';
  1205. $strongarm->value = '';
  1206. $export['uc_store_owner'] = $strongarm;
  1207. $strongarm = new stdClass();
  1208. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1209. $strongarm->api_version = 1;
  1210. $strongarm->name = 'uc_store_phone';
  1211. $strongarm->value = '';
  1212. $export['uc_store_phone'] = $strongarm;
  1213. $strongarm = new stdClass();
  1214. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1215. $strongarm->api_version = 1;
  1216. $strongarm->name = 'uc_store_postal_code';
  1217. $strongarm->value = '75012';
  1218. $export['uc_store_postal_code'] = $strongarm;
  1219. $strongarm = new stdClass();
  1220. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1221. $strongarm->api_version = 1;
  1222. $strongarm->name = 'uc_store_street1';
  1223. $strongarm->value = '74 rue du faubourg saint antoine';
  1224. $export['uc_store_street1'] = $strongarm;
  1225. $strongarm = new stdClass();
  1226. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1227. $strongarm->api_version = 1;
  1228. $strongarm->name = 'uc_store_street2';
  1229. $strongarm->value = '';
  1230. $export['uc_store_street2'] = $strongarm;
  1231. $strongarm = new stdClass();
  1232. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1233. $strongarm->api_version = 1;
  1234. $strongarm->name = 'uc_store_zone';
  1235. $strongarm->value = 0;
  1236. $export['uc_store_zone'] = $strongarm;
  1237. $strongarm = new stdClass();
  1238. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1239. $strongarm->api_version = 1;
  1240. $strongarm->name = 'uc_termsofservice_checkout_display';
  1241. $strongarm->value = 'teaser';
  1242. $export['uc_termsofservice_checkout_display'] = $strongarm;
  1243. $strongarm = new stdClass();
  1244. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1245. $strongarm->api_version = 1;
  1246. $strongarm->name = 'uc_termsofservice_checkout_node';
  1247. $strongarm->value = '';
  1248. $export['uc_termsofservice_checkout_node'] = $strongarm;
  1249. $strongarm = new stdClass();
  1250. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1251. $strongarm->api_version = 1;
  1252. $strongarm->name = 'uc_termsofservice_checkout_required';
  1253. $strongarm->value = 0;
  1254. $export['uc_termsofservice_checkout_required'] = $strongarm;
  1255. $strongarm = new stdClass();
  1256. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1257. $strongarm->api_version = 1;
  1258. $strongarm->name = 'uc_termsofservice_checkout_rules';
  1259. $strongarm->value = 0;
  1260. $export['uc_termsofservice_checkout_rules'] = $strongarm;
  1261. $strongarm = new stdClass();
  1262. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1263. $strongarm->api_version = 1;
  1264. $strongarm->name = 'uc_termsofservice_checkout_title';
  1265. $strongarm->value = '1';
  1266. $export['uc_termsofservice_checkout_title'] = $strongarm;
  1267. $strongarm = new stdClass();
  1268. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1269. $strongarm->api_version = 1;
  1270. $strongarm->name = 'uc_use_next_buttons';
  1271. $strongarm->value = 0;
  1272. $export['uc_use_next_buttons'] = $strongarm;
  1273. $strongarm = new stdClass();
  1274. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1275. $strongarm->api_version = 1;
  1276. $strongarm->name = 'uc_weight_format_g';
  1277. $strongarm->value = '!value g';
  1278. $export['uc_weight_format_g'] = $strongarm;
  1279. $strongarm = new stdClass();
  1280. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1281. $strongarm->api_version = 1;
  1282. $strongarm->name = 'uc_weight_format_kg';
  1283. $strongarm->value = '!value kg';
  1284. $export['uc_weight_format_kg'] = $strongarm;
  1285. $strongarm = new stdClass();
  1286. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1287. $strongarm->api_version = 1;
  1288. $strongarm->name = 'uc_weight_format_lb';
  1289. $strongarm->value = '!value lb';
  1290. $export['uc_weight_format_lb'] = $strongarm;
  1291. $strongarm = new stdClass();
  1292. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1293. $strongarm->api_version = 1;
  1294. $strongarm->name = 'uc_weight_format_oz';
  1295. $strongarm->value = '!value oz';
  1296. $export['uc_weight_format_oz'] = $strongarm;
  1297. $strongarm = new stdClass();
  1298. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1299. $strongarm->api_version = 1;
  1300. $strongarm->name = 'uc_weight_unit';
  1301. $strongarm->value = 'kg';
  1302. $export['uc_weight_unit'] = $strongarm;
  1303. return $export;
  1304. }