admin.strongarm.inc 52 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355
  1. <?php
  2. /**
  3. * @file
  4. * admin.strongarm.inc
  5. */
  6. /**
  7. * Implements hook_strongarm().
  8. */
  9. function admin_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 = 'adminimal_admin_menu_toolbar-disabled';
  15. $strongarm->value = TRUE;
  16. $export['adminimal_admin_menu_toolbar-disabled'] = $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 = 'admin_menu_devel_modules_skip';
  21. $strongarm->value = array(
  22. 'devel' => 0,
  23. 'devel_node_access' => 0,
  24. 'views_ui' => 0,
  25. );
  26. $export['admin_menu_devel_modules_skip'] = $strongarm;
  27. $strongarm = new stdClass();
  28. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  29. $strongarm->api_version = 1;
  30. $strongarm->name = 'admin_menu_display';
  31. $strongarm->value = 'plid';
  32. $export['admin_menu_display'] = $strongarm;
  33. $strongarm = new stdClass();
  34. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  35. $strongarm->api_version = 1;
  36. $strongarm->name = 'admin_menu_margin_top';
  37. $strongarm->value = 1;
  38. $export['admin_menu_margin_top'] = $strongarm;
  39. $strongarm = new stdClass();
  40. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  41. $strongarm->api_version = 1;
  42. $strongarm->name = 'admin_menu_position_fixed';
  43. $strongarm->value = 0;
  44. $export['admin_menu_position_fixed'] = $strongarm;
  45. $strongarm = new stdClass();
  46. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  47. $strongarm->api_version = 1;
  48. $strongarm->name = 'admin_menu_show_all';
  49. $strongarm->value = 0;
  50. $export['admin_menu_show_all'] = $strongarm;
  51. $strongarm = new stdClass();
  52. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  53. $strongarm->api_version = 1;
  54. $strongarm->name = 'admin_menu_source_settings';
  55. $strongarm->value = array(
  56. 1 => array(
  57. 'source' => '',
  58. ),
  59. 2 => array(
  60. 'source' => '',
  61. ),
  62. 3 => array(
  63. 'source' => 'navigation',
  64. ),
  65. 4 => array(
  66. 'source' => '',
  67. ),
  68. );
  69. $export['admin_menu_source_settings'] = $strongarm;
  70. $strongarm = new stdClass();
  71. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  72. $strongarm->api_version = 1;
  73. $strongarm->name = 'admin_menu_tweak_modules';
  74. $strongarm->value = 0;
  75. $export['admin_menu_tweak_modules'] = $strongarm;
  76. $strongarm = new stdClass();
  77. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  78. $strongarm->api_version = 1;
  79. $strongarm->name = 'admin_menu_tweak_permissions';
  80. $strongarm->value = 0;
  81. $export['admin_menu_tweak_permissions'] = $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 = 'admin_menu_tweak_tabs';
  86. $strongarm->value = 0;
  87. $export['admin_menu_tweak_tabs'] = $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 = 'admin_theme';
  92. $strongarm->value = 'adminimal';
  93. $export['admin_theme'] = $strongarm;
  94. $strongarm = new stdClass();
  95. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  96. $strongarm->api_version = 1;
  97. $strongarm->name = 'admin_theme_admin_theme_batch';
  98. $strongarm->value = 1;
  99. $export['admin_theme_admin_theme_batch'] = $strongarm;
  100. $strongarm = new stdClass();
  101. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  102. $strongarm->api_version = 1;
  103. $strongarm->name = 'admin_theme_admin_theme_devel';
  104. $strongarm->value = 1;
  105. $export['admin_theme_admin_theme_devel'] = $strongarm;
  106. $strongarm = new stdClass();
  107. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  108. $strongarm->api_version = 1;
  109. $strongarm->name = 'admin_theme_path';
  110. $strongarm->value = '';
  111. $export['admin_theme_path'] = $strongarm;
  112. $strongarm = new stdClass();
  113. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  114. $strongarm->api_version = 1;
  115. $strongarm->name = 'admin_theme_path_disallow';
  116. $strongarm->value = '';
  117. $export['admin_theme_path_disallow'] = $strongarm;
  118. $strongarm = new stdClass();
  119. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  120. $strongarm->api_version = 1;
  121. $strongarm->name = 'admin_toolbar';
  122. $strongarm->value = array(
  123. 'layout' => 'vertical',
  124. 'position' => 'nw',
  125. 'behavior' => 'df',
  126. 'blocks' => array(
  127. 'admin-devel' => -1,
  128. 'locale-language' => -1,
  129. 'user-online' => -1,
  130. ),
  131. );
  132. $export['admin_toolbar'] = $strongarm;
  133. $strongarm = new stdClass();
  134. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  135. $strongarm->api_version = 1;
  136. $strongarm->name = 'anonymous';
  137. $strongarm->value = 'Anonymous';
  138. $export['anonymous'] = $strongarm;
  139. $strongarm = new stdClass();
  140. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  141. $strongarm->api_version = 1;
  142. $strongarm->name = 'backup_migrate_destination_id';
  143. $strongarm->value = 'manual';
  144. $export['backup_migrate_destination_id'] = $strongarm;
  145. $strongarm = new stdClass();
  146. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  147. $strongarm->api_version = 1;
  148. $strongarm->name = 'backup_migrate_profile_id';
  149. $strongarm->value = 'default';
  150. $export['backup_migrate_profile_id'] = $strongarm;
  151. $strongarm = new stdClass();
  152. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  153. $strongarm->api_version = 1;
  154. $strongarm->name = 'backup_migrate_schedule_last_run_fe3e5b1c4207b4acebf28f646b324e8a';
  155. $strongarm->value = 1424170448;
  156. $export['backup_migrate_schedule_last_run_fe3e5b1c4207b4acebf28f646b324e8a'] = $strongarm;
  157. $strongarm = new stdClass();
  158. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  159. $strongarm->api_version = 1;
  160. $strongarm->name = 'backup_migrate_source_id';
  161. $strongarm->value = 'db';
  162. $export['backup_migrate_source_id'] = $strongarm;
  163. $strongarm = new stdClass();
  164. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  165. $strongarm->api_version = 1;
  166. $strongarm->name = 'configurable_timezones';
  167. $strongarm->value = 1;
  168. $export['configurable_timezones'] = $strongarm;
  169. $strongarm = new stdClass();
  170. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  171. $strongarm->api_version = 1;
  172. $strongarm->name = 'content_type_extras_node_options';
  173. $strongarm->value = array(
  174. 'status' => 'status',
  175. 'promote' => 0,
  176. 'sticky' => 0,
  177. 'revision' => 0,
  178. );
  179. $export['content_type_extras_node_options'] = $strongarm;
  180. $strongarm = new stdClass();
  181. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  182. $strongarm->api_version = 1;
  183. $strongarm->name = 'content_type_extras_node_preview';
  184. $strongarm->value = '0';
  185. $export['content_type_extras_node_preview'] = $strongarm;
  186. $strongarm = new stdClass();
  187. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  188. $strongarm->api_version = 1;
  189. $strongarm->name = 'content_type_extras_node_save_edit';
  190. $strongarm->value = '1';
  191. $export['content_type_extras_node_save_edit'] = $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 = 'content_type_extras_node_save_new';
  196. $strongarm->value = '0';
  197. $export['content_type_extras_node_save_new'] = $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 = 'content_type_extras_node_submitted';
  202. $strongarm->value = 0;
  203. $export['content_type_extras_node_submitted'] = $strongarm;
  204. $strongarm = new stdClass();
  205. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  206. $strongarm->api_version = 1;
  207. $strongarm->name = 'content_type_extras_save_and_edit_button_value';
  208. $strongarm->value = 'Save and Edit';
  209. $export['content_type_extras_save_and_edit_button_value'] = $strongarm;
  210. $strongarm = new stdClass();
  211. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  212. $strongarm->api_version = 1;
  213. $strongarm->name = 'content_type_extras_save_and_new_button_value';
  214. $strongarm->value = 'Save and New';
  215. $export['content_type_extras_save_and_new_button_value'] = $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 = 'content_type_extras_title_label';
  220. $strongarm->value = 'Title';
  221. $export['content_type_extras_title_label'] = $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 = 'content_type_extras_user_permissions_create';
  226. $strongarm->value = array(
  227. 3 => '3',
  228. 4 => '4',
  229. 1 => 0,
  230. 2 => 0,
  231. );
  232. $export['content_type_extras_user_permissions_create'] = $strongarm;
  233. $strongarm = new stdClass();
  234. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  235. $strongarm->api_version = 1;
  236. $strongarm->name = 'content_type_extras_user_permissions_delete';
  237. $strongarm->value = array(
  238. 3 => '3',
  239. 4 => '4',
  240. 1 => 0,
  241. 2 => 0,
  242. );
  243. $export['content_type_extras_user_permissions_delete'] = $strongarm;
  244. $strongarm = new stdClass();
  245. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  246. $strongarm->api_version = 1;
  247. $strongarm->name = 'content_type_extras_user_permissions_edit';
  248. $strongarm->value = array(
  249. 3 => '3',
  250. 4 => '4',
  251. 1 => 0,
  252. 2 => 0,
  253. );
  254. $export['content_type_extras_user_permissions_edit'] = $strongarm;
  255. $strongarm = new stdClass();
  256. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  257. $strongarm->api_version = 1;
  258. $strongarm->name = 'content_type_extras__active_tab';
  259. $strongarm->value = 'edit-user-permissions';
  260. $export['content_type_extras__active_tab'] = $strongarm;
  261. $strongarm = new stdClass();
  262. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  263. $strongarm->api_version = 1;
  264. $strongarm->name = 'devel_api_url';
  265. $strongarm->value = 'api.drupal.org';
  266. $export['devel_api_url'] = $strongarm;
  267. $strongarm = new stdClass();
  268. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  269. $strongarm->api_version = 1;
  270. $strongarm->name = 'devel_error_handlers';
  271. $strongarm->value = array(
  272. 1 => '1',
  273. );
  274. $export['devel_error_handlers'] = $strongarm;
  275. $strongarm = new stdClass();
  276. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  277. $strongarm->api_version = 1;
  278. $strongarm->name = 'devel_execution';
  279. $strongarm->value = '5';
  280. $export['devel_execution'] = $strongarm;
  281. $strongarm = new stdClass();
  282. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  283. $strongarm->api_version = 1;
  284. $strongarm->name = 'devel_krumo_skin';
  285. $strongarm->value = 'default';
  286. $export['devel_krumo_skin'] = $strongarm;
  287. $strongarm = new stdClass();
  288. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  289. $strongarm->api_version = 1;
  290. $strongarm->name = 'devel_memory';
  291. $strongarm->value = 0;
  292. $export['devel_memory'] = $strongarm;
  293. $strongarm = new stdClass();
  294. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  295. $strongarm->api_version = 1;
  296. $strongarm->name = 'devel_page_alter';
  297. $strongarm->value = 0;
  298. $export['devel_page_alter'] = $strongarm;
  299. $strongarm = new stdClass();
  300. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  301. $strongarm->api_version = 1;
  302. $strongarm->name = 'devel_query_display';
  303. $strongarm->value = 0;
  304. $export['devel_query_display'] = $strongarm;
  305. $strongarm = new stdClass();
  306. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  307. $strongarm->api_version = 1;
  308. $strongarm->name = 'devel_query_sort';
  309. $strongarm->value = '0';
  310. $export['devel_query_sort'] = $strongarm;
  311. $strongarm = new stdClass();
  312. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  313. $strongarm->api_version = 1;
  314. $strongarm->name = 'editmenu_cache_menu';
  315. $strongarm->value = 0;
  316. $export['editmenu_cache_menu'] = $strongarm;
  317. $strongarm = new stdClass();
  318. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  319. $strongarm->api_version = 1;
  320. $strongarm->name = 'editmenu_css_filename';
  321. $strongarm->value = '';
  322. $export['editmenu_css_filename'] = $strongarm;
  323. $strongarm = new stdClass();
  324. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  325. $strongarm->api_version = 1;
  326. $strongarm->name = 'editmenu_detect_popup';
  327. $strongarm->value = 1;
  328. $export['editmenu_detect_popup'] = $strongarm;
  329. $strongarm = new stdClass();
  330. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  331. $strongarm->api_version = 1;
  332. $strongarm->name = 'editmenu_dropdown_zindex';
  333. $strongarm->value = '9999';
  334. $export['editmenu_dropdown_zindex'] = $strongarm;
  335. $strongarm = new stdClass();
  336. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  337. $strongarm->api_version = 1;
  338. $strongarm->name = 'editmenu_effect';
  339. $strongarm->value = 'opacity';
  340. $export['editmenu_effect'] = $strongarm;
  341. $strongarm = new stdClass();
  342. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  343. $strongarm->api_version = 1;
  344. $strongarm->name = 'editmenu_effect_speed';
  345. $strongarm->value = 'fast';
  346. $export['editmenu_effect_speed'] = $strongarm;
  347. $strongarm = new stdClass();
  348. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  349. $strongarm->api_version = 1;
  350. $strongarm->name = 'editmenu_element';
  351. $strongarm->value = 'body';
  352. $export['editmenu_element'] = $strongarm;
  353. $strongarm = new stdClass();
  354. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  355. $strongarm->api_version = 1;
  356. $strongarm->name = 'editmenu_element_method';
  357. $strongarm->value = 'prepend';
  358. $export['editmenu_element_method'] = $strongarm;
  359. $strongarm = new stdClass();
  360. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  361. $strongarm->api_version = 1;
  362. $strongarm->name = 'editmenu_exclusions';
  363. $strongarm->value = array(
  364. 'adaptivetheme_gui_admin' => 0,
  365. 'adaptivetheme_gui_starter' => 0,
  366. 'bartik' => 0,
  367. 'garland' => 0,
  368. 'gui7' => 0,
  369. 'guibik' => 0,
  370. 'inigui' => 0,
  371. 'rubik' => 0,
  372. 'seven' => 0,
  373. 'stark' => 0,
  374. 'tao' => 0,
  375. );
  376. $export['editmenu_exclusions'] = $strongarm;
  377. $strongarm = new stdClass();
  378. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  379. $strongarm->api_version = 1;
  380. $strongarm->name = 'editmenu_fix';
  381. $strongarm->value = 'scroll';
  382. $export['editmenu_fix'] = $strongarm;
  383. $strongarm = new stdClass();
  384. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  385. $strongarm->api_version = 1;
  386. $strongarm->name = 'editmenu_hide_delay';
  387. $strongarm->value = '800';
  388. $export['editmenu_hide_delay'] = $strongarm;
  389. $strongarm = new stdClass();
  390. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  391. $strongarm->api_version = 1;
  392. $strongarm->name = 'editmenu_menu';
  393. $strongarm->value = 'management:0';
  394. $export['editmenu_menu'] = $strongarm;
  395. $strongarm = new stdClass();
  396. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  397. $strongarm->api_version = 1;
  398. $strongarm->name = 'editmenu_menubar_zindex';
  399. $strongarm->value = '9999';
  400. $export['editmenu_menubar_zindex'] = $strongarm;
  401. $strongarm = new stdClass();
  402. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  403. $strongarm->api_version = 1;
  404. $strongarm->name = 'editmenu_menu_scope';
  405. $strongarm->value = 'footer';
  406. $export['editmenu_menu_scope'] = $strongarm;
  407. $strongarm = new stdClass();
  408. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  409. $strongarm->api_version = 1;
  410. $strongarm->name = 'editmenu_running';
  411. $strongarm->value = FALSE;
  412. $export['editmenu_running'] = $strongarm;
  413. $strongarm = new stdClass();
  414. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  415. $strongarm->api_version = 1;
  416. $strongarm->name = 'editmenu_superfish_version';
  417. $strongarm->value = 'superfish-1.4.1.js';
  418. $export['editmenu_superfish_version'] = $strongarm;
  419. $strongarm = new stdClass();
  420. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  421. $strongarm->api_version = 1;
  422. $strongarm->name = 'editmenu_theme';
  423. $strongarm->value = 'original';
  424. $export['editmenu_theme'] = $strongarm;
  425. $strongarm = new stdClass();
  426. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  427. $strongarm->api_version = 1;
  428. $strongarm->name = 'editmenu_uid1';
  429. $strongarm->value = 0;
  430. $export['editmenu_uid1'] = $strongarm;
  431. $strongarm = new stdClass();
  432. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  433. $strongarm->api_version = 1;
  434. $strongarm->name = 'editmenu_visibility_operator';
  435. $strongarm->value = '0';
  436. $export['editmenu_visibility_operator'] = $strongarm;
  437. $strongarm = new stdClass();
  438. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  439. $strongarm->api_version = 1;
  440. $strongarm->name = 'editmenu_visibility_pages';
  441. $strongarm->value = '';
  442. $export['editmenu_visibility_pages'] = $strongarm;
  443. $strongarm = new stdClass();
  444. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  445. $strongarm->api_version = 1;
  446. $strongarm->name = 'file_private_path';
  447. $strongarm->value = 'sites/default/private/';
  448. $export['file_private_path'] = $strongarm;
  449. $strongarm = new stdClass();
  450. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  451. $strongarm->api_version = 1;
  452. $strongarm->name = 'file_public_path';
  453. $strongarm->value = 'sites/default/files';
  454. $export['file_public_path'] = $strongarm;
  455. $strongarm = new stdClass();
  456. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  457. $strongarm->api_version = 1;
  458. $strongarm->name = 'file_temporary_path';
  459. $strongarm->value = '/tmp';
  460. $export['file_temporary_path'] = $strongarm;
  461. $strongarm = new stdClass();
  462. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  463. $strongarm->api_version = 1;
  464. $strongarm->name = 'footer_message_msg';
  465. $strongarm->value = array(
  466. 'value' => '<p>clameurs</p>',
  467. 'format' => 'filtred_html',
  468. );
  469. $export['footer_message_msg'] = $strongarm;
  470. $strongarm = new stdClass();
  471. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  472. $strongarm->api_version = 1;
  473. $strongarm->name = 'imce_custom_content';
  474. $strongarm->value = array(
  475. 'imce_file_path_content' => 1,
  476. 'imce_mkdir_content' => 1,
  477. 'imce_search_content' => 1,
  478. );
  479. $export['imce_custom_content'] = $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 = 'imce_custom_process';
  484. $strongarm->value = array(
  485. 'imce_mkdir_process_profile' => 1,
  486. );
  487. $export['imce_custom_process'] = $strongarm;
  488. $strongarm = new stdClass();
  489. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  490. $strongarm->api_version = 1;
  491. $strongarm->name = 'imce_profiles';
  492. $strongarm->value = array(
  493. 1 => array(
  494. 'name' => 'User-1',
  495. 'usertab' => 1,
  496. 'filesize' => 0,
  497. 'quota' => 0,
  498. 'tuquota' => 0,
  499. 'extensions' => '*',
  500. 'dimensions' => '1200x1200',
  501. 'filenum' => 0,
  502. 'directories' => array(
  503. 0 => array(
  504. 'name' => '.',
  505. 'subnav' => 1,
  506. 'browse' => 1,
  507. 'upload' => 1,
  508. 'thumb' => 1,
  509. 'delete' => 1,
  510. 'resize' => 1,
  511. 'mkdir' => 1,
  512. 'rmdir' => 1,
  513. ),
  514. ),
  515. 'thumbnails' => array(
  516. 0 => array(
  517. 'name' => 'Small',
  518. 'dimensions' => '90x90',
  519. 'prefix' => 'small_',
  520. 'suffix' => '',
  521. ),
  522. 1 => array(
  523. 'name' => 'Medium',
  524. 'dimensions' => '120x120',
  525. 'prefix' => 'medium_',
  526. 'suffix' => '',
  527. ),
  528. 2 => array(
  529. 'name' => 'Large',
  530. 'dimensions' => '180x180',
  531. 'prefix' => 'large_',
  532. 'suffix' => '',
  533. ),
  534. ),
  535. 'mkdirnum' => 0,
  536. ),
  537. 2 => array(
  538. 'name' => 'Admin profile',
  539. 'usertab' => 0,
  540. 'filesize' => '0',
  541. 'quota' => '0',
  542. 'tuquota' => '0',
  543. 'extensions' => 'gif png jpg jpeg',
  544. 'dimensions' => '2000x2000',
  545. 'filenum' => '0',
  546. 'directories' => array(
  547. 0 => array(
  548. 'name' => 'imce',
  549. 'subnav' => 1,
  550. 'browse' => 1,
  551. 'upload' => 1,
  552. 'thumb' => 0,
  553. 'delete' => 0,
  554. 'resize' => 0,
  555. 'mkdir' => 0,
  556. 'rmdir' => 0,
  557. ),
  558. ),
  559. 'thumbnails' => array(),
  560. 'mkdirnum' => 2,
  561. ),
  562. );
  563. $export['imce_profiles'] = $strongarm;
  564. $strongarm = new stdClass();
  565. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  566. $strongarm->api_version = 1;
  567. $strongarm->name = 'imce_roles_profiles';
  568. $strongarm->value = array(
  569. 4 => array(
  570. 'weight' => '0',
  571. 'public_pid' => '2',
  572. 'private_pid' => '2',
  573. ),
  574. 3 => array(
  575. 'weight' => '1',
  576. 'public_pid' => '2',
  577. 'private_pid' => '2',
  578. ),
  579. 2 => array(
  580. 'weight' => 11,
  581. 'public_pid' => 0,
  582. 'private_pid' => 0,
  583. ),
  584. 1 => array(
  585. 'weight' => 12,
  586. 'public_pid' => 0,
  587. 'private_pid' => 0,
  588. ),
  589. );
  590. $export['imce_roles_profiles'] = $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 = 'imce_settings_absurls';
  595. $strongarm->value = 0;
  596. $export['imce_settings_absurls'] = $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 = 'imce_settings_disable_private';
  601. $strongarm->value = 0;
  602. $export['imce_settings_disable_private'] = $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 = 'imce_settings_replace';
  607. $strongarm->value = '0';
  608. $export['imce_settings_replace'] = $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 = 'imce_settings_textarea';
  613. $strongarm->value = '';
  614. $export['imce_settings_textarea'] = $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 = 'imce_settings_thumb_method';
  619. $strongarm->value = 'scale_and_crop';
  620. $export['imce_settings_thumb_method'] = $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 = 'maintenance_mode_message';
  625. $strongarm->value = 'Drupal base 7 est en cours de maintenance. Nous serons de retour très bientôt. Merci de votre patience.';
  626. $export['maintenance_mode_message'] = $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 = 'node_admin_theme';
  631. $strongarm->value = 1;
  632. $export['node_admin_theme'] = $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 = 'pathauto_case';
  637. $strongarm->value = '1';
  638. $export['pathauto_case'] = $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 = 'pathauto_ignore_words';
  643. $strongarm->value = 'a, an, as, at, before, but, by, for, from, is, in, into, like, of, off, on, onto, per, since, than, the, this, that, to, up, via, with, un, une, des, du, de, la, le, les, ou, que, quel, quelle, mais, ou, et, donc, or, ni, car, pas, ne, ce, ces, ça, dans, sur, à, avec, pour, là';
  644. $export['pathauto_ignore_words'] = $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 = 'pathauto_max_component_length';
  649. $strongarm->value = '100';
  650. $export['pathauto_max_component_length'] = $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 = 'pathauto_max_length';
  655. $strongarm->value = '100';
  656. $export['pathauto_max_length'] = $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 = 'pathauto_node_pattern';
  661. $strongarm->value = '[node:content-type:name]/[node:title]';
  662. $export['pathauto_node_pattern'] = $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 = 'pathauto_punctuation_ampersand';
  667. $strongarm->value = '0';
  668. $export['pathauto_punctuation_ampersand'] = $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 = 'pathauto_punctuation_asterisk';
  673. $strongarm->value = '0';
  674. $export['pathauto_punctuation_asterisk'] = $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 = 'pathauto_punctuation_at';
  679. $strongarm->value = '0';
  680. $export['pathauto_punctuation_at'] = $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 = 'pathauto_punctuation_backtick';
  685. $strongarm->value = '0';
  686. $export['pathauto_punctuation_backtick'] = $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 = 'pathauto_punctuation_back_slash';
  691. $strongarm->value = '0';
  692. $export['pathauto_punctuation_back_slash'] = $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 = 'pathauto_punctuation_caret';
  697. $strongarm->value = '0';
  698. $export['pathauto_punctuation_caret'] = $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 = 'pathauto_punctuation_colon';
  703. $strongarm->value = '0';
  704. $export['pathauto_punctuation_colon'] = $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 = 'pathauto_punctuation_comma';
  709. $strongarm->value = '0';
  710. $export['pathauto_punctuation_comma'] = $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 = 'pathauto_punctuation_dollar';
  715. $strongarm->value = '0';
  716. $export['pathauto_punctuation_dollar'] = $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 = 'pathauto_punctuation_double_quotes';
  721. $strongarm->value = '0';
  722. $export['pathauto_punctuation_double_quotes'] = $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 = 'pathauto_punctuation_equal';
  727. $strongarm->value = '0';
  728. $export['pathauto_punctuation_equal'] = $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 = 'pathauto_punctuation_exclamation';
  733. $strongarm->value = '0';
  734. $export['pathauto_punctuation_exclamation'] = $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 = 'pathauto_punctuation_greater_than';
  739. $strongarm->value = '0';
  740. $export['pathauto_punctuation_greater_than'] = $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 = 'pathauto_punctuation_hash';
  745. $strongarm->value = '0';
  746. $export['pathauto_punctuation_hash'] = $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 = 'pathauto_punctuation_hyphen';
  751. $strongarm->value = '1';
  752. $export['pathauto_punctuation_hyphen'] = $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 = 'pathauto_punctuation_left_curly';
  757. $strongarm->value = '0';
  758. $export['pathauto_punctuation_left_curly'] = $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 = 'pathauto_punctuation_left_parenthesis';
  763. $strongarm->value = '0';
  764. $export['pathauto_punctuation_left_parenthesis'] = $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 = 'pathauto_punctuation_left_square';
  769. $strongarm->value = '0';
  770. $export['pathauto_punctuation_left_square'] = $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 = 'pathauto_punctuation_less_than';
  775. $strongarm->value = '0';
  776. $export['pathauto_punctuation_less_than'] = $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 = 'pathauto_punctuation_percent';
  781. $strongarm->value = '0';
  782. $export['pathauto_punctuation_percent'] = $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 = 'pathauto_punctuation_period';
  787. $strongarm->value = '0';
  788. $export['pathauto_punctuation_period'] = $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 = 'pathauto_punctuation_pipe';
  793. $strongarm->value = '0';
  794. $export['pathauto_punctuation_pipe'] = $strongarm;
  795. $strongarm = new stdClass();
  796. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  797. $strongarm->api_version = 1;
  798. $strongarm->name = 'pathauto_punctuation_plus';
  799. $strongarm->value = '0';
  800. $export['pathauto_punctuation_plus'] = $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 = 'pathauto_punctuation_question_mark';
  805. $strongarm->value = '0';
  806. $export['pathauto_punctuation_question_mark'] = $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 = 'pathauto_punctuation_quotes';
  811. $strongarm->value = '0';
  812. $export['pathauto_punctuation_quotes'] = $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 = 'pathauto_punctuation_right_curly';
  817. $strongarm->value = '0';
  818. $export['pathauto_punctuation_right_curly'] = $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 = 'pathauto_punctuation_right_parenthesis';
  823. $strongarm->value = '0';
  824. $export['pathauto_punctuation_right_parenthesis'] = $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 = 'pathauto_punctuation_right_square';
  829. $strongarm->value = '0';
  830. $export['pathauto_punctuation_right_square'] = $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 = 'pathauto_punctuation_semicolon';
  835. $strongarm->value = '0';
  836. $export['pathauto_punctuation_semicolon'] = $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 = 'pathauto_punctuation_slash';
  841. $strongarm->value = '0';
  842. $export['pathauto_punctuation_slash'] = $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 = 'pathauto_punctuation_tilde';
  847. $strongarm->value = '0';
  848. $export['pathauto_punctuation_tilde'] = $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 = 'pathauto_punctuation_underscore';
  853. $strongarm->value = '0';
  854. $export['pathauto_punctuation_underscore'] = $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 = 'pathauto_reduce_ascii';
  859. $strongarm->value = 1;
  860. $export['pathauto_reduce_ascii'] = $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 = 'pathauto_separator';
  865. $strongarm->value = '-';
  866. $export['pathauto_separator'] = $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 = 'pathauto_transliterate';
  871. $strongarm->value = 1;
  872. $export['pathauto_transliterate'] = $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 = 'pathauto_update_action';
  877. $strongarm->value = '2';
  878. $export['pathauto_update_action'] = $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 = 'pathauto_user_pattern';
  883. $strongarm->value = 'users/[user:name]';
  884. $export['pathauto_user_pattern'] = $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 = 'pathauto_verbose';
  889. $strongarm->value = 0;
  890. $export['pathauto_verbose'] = $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 = 'site_403';
  895. $strongarm->value = '';
  896. $export['site_403'] = $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 = 'site_404';
  901. $strongarm->value = '';
  902. $export['site_404'] = $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 = 'site_frontpage';
  907. $strongarm->value = 'home';
  908. $export['site_frontpage'] = $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 = 'site_mail';
  913. $strongarm->value = 'dev@g-u-i.net';
  914. $export['site_mail'] = $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 = 'site_name';
  919. $strongarm->value = 'Clameurs';
  920. $export['site_name'] = $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 = 'site_offline_message';
  925. $strongarm->value = 'Kadist Art Fondation is currently under maintenance. We should be back shortly. Thank you for your patience.';
  926. $export['site_offline_message'] = $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 = 'site_slogan';
  931. $strongarm->value = 'La websérie habitée par Laudato si\'';
  932. $export['site_slogan'] = $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 = 'theme_adaptivetheme_admin_settings';
  937. $strongarm->value = array(
  938. 'toggle_name' => 1,
  939. 'toggle_favicon' => 1,
  940. 'toggle_main_menu' => 1,
  941. 'toggle_secondary_menu' => 1,
  942. 'default_favicon' => 1,
  943. 'favicon_path' => '',
  944. 'favicon_upload' => '',
  945. 'layout_width' => '1260px',
  946. 'layout_sidebar_first_width' => '240',
  947. 'layout_sidebar_last_width' => '240',
  948. 'layout_method' => '2',
  949. 'layout_enable_settings' => 'on',
  950. 'breadcrumb_display' => 'yes',
  951. 'breadcrumb_separator' => ' &#187; ',
  952. 'breadcrumb_home' => 1,
  953. 'search_snippet' => 1,
  954. 'search_info_type' => 1,
  955. 'search_info_user' => 1,
  956. 'search_info_date' => 1,
  957. 'search_info_comment' => 1,
  958. 'search_info_upload' => 1,
  959. 'search_info_separator' => ' - ',
  960. 'horizontal_login_block' => 1,
  961. 'extra_page_classes' => 0,
  962. 'extra_article_classes' => 0,
  963. 'extra_comment_classes' => 0,
  964. 'extra_block_classes' => 0,
  965. 'extra_menu_classes' => 0,
  966. 'extra_item_list_classes' => 0,
  967. 'menu_item_span_elements' => 0,
  968. 'at__active_tab' => 'edit-page-layout',
  969. );
  970. $export['theme_adaptivetheme_admin_settings'] = $strongarm;
  971. $strongarm = new stdClass();
  972. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  973. $strongarm->api_version = 1;
  974. $strongarm->name = 'theme_adaptivetheme_gui_admin_settings';
  975. $strongarm->value = array(
  976. 'toggle_name' => 1,
  977. 'toggle_favicon' => 1,
  978. 'toggle_main_menu' => 1,
  979. 'toggle_secondary_menu' => 1,
  980. 'default_favicon' => 1,
  981. 'favicon_path' => '',
  982. 'favicon_upload' => '',
  983. 'layout_width' => '1260px',
  984. 'layout_sidebar_first_width' => '240',
  985. 'layout_sidebar_last_width' => '240',
  986. 'layout_method' => '1',
  987. 'layout_enable_settings' => 'on',
  988. 'breadcrumb_display' => 'yes',
  989. 'breadcrumb_separator' => ' &#187; ',
  990. 'breadcrumb_home' => 1,
  991. 'search_snippet' => 1,
  992. 'search_info_type' => 1,
  993. 'search_info_user' => 1,
  994. 'search_info_date' => 1,
  995. 'search_info_comment' => 1,
  996. 'search_info_upload' => 1,
  997. 'search_info_separator' => ' - ',
  998. 'horizontal_login_block' => 0,
  999. 'extra_page_classes' => 0,
  1000. 'extra_article_classes' => 0,
  1001. 'extra_comment_classes' => 0,
  1002. 'extra_block_classes' => 0,
  1003. 'extra_menu_classes' => 0,
  1004. 'extra_item_list_classes' => 0,
  1005. 'menu_item_span_elements' => 0,
  1006. 'at__active_tab' => 'edit-page-layout',
  1007. );
  1008. $export['theme_adaptivetheme_gui_admin_settings'] = $strongarm;
  1009. $strongarm = new stdClass();
  1010. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1011. $strongarm->api_version = 1;
  1012. $strongarm->name = 'theme_default';
  1013. $strongarm->value = 'clameurs';
  1014. $export['theme_default'] = $strongarm;
  1015. $strongarm = new stdClass();
  1016. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1017. $strongarm->api_version = 1;
  1018. $strongarm->name = 'theme_settings';
  1019. $strongarm->value = array(
  1020. 'toggle_logo' => 0,
  1021. 'toggle_name' => 1,
  1022. 'toggle_slogan' => 1,
  1023. 'toggle_node_user_picture' => 1,
  1024. 'toggle_comment_user_picture' => 1,
  1025. 'toggle_comment_user_verification' => 1,
  1026. 'toggle_favicon' => 1,
  1027. 'toggle_main_menu' => 1,
  1028. 'toggle_secondary_menu' => 1,
  1029. 'default_logo' => 1,
  1030. 'logo_path' => '',
  1031. 'logo_upload' => '',
  1032. 'default_favicon' => 0,
  1033. 'favicon_path' => 'sites/all/themes/figureslibres/clameurs/icon.png',
  1034. 'favicon_upload' => '',
  1035. 'favicon_mimetype' => 'image/png',
  1036. );
  1037. $export['theme_settings'] = $strongarm;
  1038. $strongarm = new stdClass();
  1039. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1040. $strongarm->api_version = 1;
  1041. $strongarm->name = 'user_admin_role';
  1042. $strongarm->value = '4';
  1043. $export['user_admin_role'] = $strongarm;
  1044. $strongarm = new stdClass();
  1045. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1046. $strongarm->api_version = 1;
  1047. $strongarm->name = 'user_mail_register_admin_created_body';
  1048. $strongarm->value = '[user:name],
  1049. A site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it to your browser:
  1050. [user:one-time-login-url]
  1051. This link can only be used once to log in and will lead you to a page where you can set your password.
  1052. After setting your password, you will be able to log in at [site:login-url] in the future using:
  1053. username: [user:name]
  1054. password: Your password
  1055. -- [site:name] team';
  1056. $export['user_mail_register_admin_created_body'] = $strongarm;
  1057. $strongarm = new stdClass();
  1058. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1059. $strongarm->api_version = 1;
  1060. $strongarm->name = 'user_mail_register_admin_created_subject';
  1061. $strongarm->value = 'An administrator created an account for you at [site:name]';
  1062. $export['user_mail_register_admin_created_subject'] = $strongarm;
  1063. $strongarm = new stdClass();
  1064. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1065. $strongarm->api_version = 1;
  1066. $strongarm->name = 'variable_realm_list_language';
  1067. $strongarm->value = array(
  1068. 0 => 'site_name',
  1069. 1 => 'site_slogan',
  1070. );
  1071. $export['variable_realm_list_language'] = $strongarm;
  1072. $strongarm = new stdClass();
  1073. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1074. $strongarm->api_version = 1;
  1075. $strongarm->name = 'views_defaults';
  1076. $strongarm->value = array(
  1077. 'admin_content' => TRUE,
  1078. 'admin_content_node' => TRUE,
  1079. 'admin_media' => TRUE,
  1080. 'workflow_pending' => TRUE,
  1081. 'workflow_summary' => TRUE,
  1082. );
  1083. $export['views_defaults'] = $strongarm;
  1084. $strongarm = new stdClass();
  1085. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1086. $strongarm->api_version = 1;
  1087. $strongarm->name = 'views_devel_output';
  1088. $strongarm->value = 0;
  1089. $export['views_devel_output'] = $strongarm;
  1090. $strongarm = new stdClass();
  1091. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1092. $strongarm->api_version = 1;
  1093. $strongarm->name = 'views_devel_region';
  1094. $strongarm->value = 'footer';
  1095. $export['views_devel_region'] = $strongarm;
  1096. $strongarm = new stdClass();
  1097. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1098. $strongarm->api_version = 1;
  1099. $strongarm->name = 'views_exposed_filter_any_label';
  1100. $strongarm->value = 'new_any';
  1101. $export['views_exposed_filter_any_label'] = $strongarm;
  1102. $strongarm = new stdClass();
  1103. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1104. $strongarm->api_version = 1;
  1105. $strongarm->name = 'views_localization_plugin';
  1106. $strongarm->value = 'core';
  1107. $export['views_localization_plugin'] = $strongarm;
  1108. $strongarm = new stdClass();
  1109. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1110. $strongarm->api_version = 1;
  1111. $strongarm->name = 'views_no_javascript';
  1112. $strongarm->value = 0;
  1113. $export['views_no_javascript'] = $strongarm;
  1114. $strongarm = new stdClass();
  1115. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1116. $strongarm->api_version = 1;
  1117. $strongarm->name = 'views_show_additional_queries';
  1118. $strongarm->value = 0;
  1119. $export['views_show_additional_queries'] = $strongarm;
  1120. $strongarm = new stdClass();
  1121. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1122. $strongarm->api_version = 1;
  1123. $strongarm->name = 'views_skip_cache';
  1124. $strongarm->value = 1;
  1125. $export['views_skip_cache'] = $strongarm;
  1126. $strongarm = new stdClass();
  1127. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1128. $strongarm->api_version = 1;
  1129. $strongarm->name = 'views_sql_signature';
  1130. $strongarm->value = 0;
  1131. $export['views_sql_signature'] = $strongarm;
  1132. $strongarm = new stdClass();
  1133. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1134. $strongarm->api_version = 1;
  1135. $strongarm->name = 'views_ui_always_live_preview';
  1136. $strongarm->value = 1;
  1137. $export['views_ui_always_live_preview'] = $strongarm;
  1138. $strongarm = new stdClass();
  1139. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1140. $strongarm->api_version = 1;
  1141. $strongarm->name = 'views_ui_show_advanced_column';
  1142. $strongarm->value = 0;
  1143. $export['views_ui_show_advanced_column'] = $strongarm;
  1144. $strongarm = new stdClass();
  1145. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1146. $strongarm->api_version = 1;
  1147. $strongarm->name = 'views_ui_show_advanced_help_warning';
  1148. $strongarm->value = 1;
  1149. $export['views_ui_show_advanced_help_warning'] = $strongarm;
  1150. $strongarm = new stdClass();
  1151. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1152. $strongarm->api_version = 1;
  1153. $strongarm->name = 'views_ui_show_listing_filters';
  1154. $strongarm->value = 1;
  1155. $export['views_ui_show_listing_filters'] = $strongarm;
  1156. $strongarm = new stdClass();
  1157. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1158. $strongarm->api_version = 1;
  1159. $strongarm->name = 'views_ui_show_master_display';
  1160. $strongarm->value = 0;
  1161. $export['views_ui_show_master_display'] = $strongarm;
  1162. $strongarm = new stdClass();
  1163. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1164. $strongarm->api_version = 1;
  1165. $strongarm->name = 'views_ui_show_performance_statistics';
  1166. $strongarm->value = 0;
  1167. $export['views_ui_show_performance_statistics'] = $strongarm;
  1168. $strongarm = new stdClass();
  1169. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1170. $strongarm->api_version = 1;
  1171. $strongarm->name = 'views_ui_show_preview_information';
  1172. $strongarm->value = 1;
  1173. $export['views_ui_show_preview_information'] = $strongarm;
  1174. $strongarm = new stdClass();
  1175. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1176. $strongarm->api_version = 1;
  1177. $strongarm->name = 'views_ui_show_sql_query';
  1178. $strongarm->value = 0;
  1179. $export['views_ui_show_sql_query'] = $strongarm;
  1180. $strongarm = new stdClass();
  1181. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1182. $strongarm->api_version = 1;
  1183. $strongarm->name = 'views_ui_show_sql_query_where';
  1184. $strongarm->value = 'above';
  1185. $export['views_ui_show_sql_query_where'] = $strongarm;
  1186. $strongarm = new stdClass();
  1187. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1188. $strongarm->api_version = 1;
  1189. $strongarm->name = 'workflow_access_priority';
  1190. $strongarm->value = '0';
  1191. $export['workflow_access_priority'] = $strongarm;
  1192. return $export;
  1193. }