materio_content_types.strongarm.inc 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  1. <?php
  2. /**
  3. * @file
  4. * materio_content_types.strongarm.inc
  5. */
  6. /**
  7. * Implements hook_strongarm().
  8. */
  9. function materio_content_types_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 = 'field_bundle_settings_node__breve';
  15. $strongarm->value = array(
  16. 'view_modes' => array(
  17. 'teaser' => array(
  18. 'custom_settings' => TRUE,
  19. ),
  20. 'full' => array(
  21. 'custom_settings' => FALSE,
  22. ),
  23. 'rss' => array(
  24. 'custom_settings' => FALSE,
  25. ),
  26. 'token' => array(
  27. 'custom_settings' => FALSE,
  28. ),
  29. 'cardsmall' => array(
  30. 'custom_settings' => TRUE,
  31. ),
  32. 'cardmedium' => array(
  33. 'custom_settings' => TRUE,
  34. ),
  35. 'cardbig' => array(
  36. 'custom_settings' => TRUE,
  37. ),
  38. ),
  39. 'extra_fields' => array(
  40. 'form' => array(
  41. 'title' => array(
  42. 'weight' => '9',
  43. ),
  44. 'path' => array(
  45. 'weight' => '5',
  46. ),
  47. 'workflow' => array(
  48. 'weight' => '3',
  49. ),
  50. 'language' => array(
  51. 'weight' => '2',
  52. ),
  53. ),
  54. 'display' => array(
  55. 'language' => array(
  56. 'default' => array(
  57. 'weight' => '6',
  58. 'visible' => FALSE,
  59. ),
  60. 'cardmedium' => array(
  61. 'weight' => '4',
  62. 'visible' => FALSE,
  63. ),
  64. 'cardsmall' => array(
  65. 'weight' => '0',
  66. 'visible' => FALSE,
  67. ),
  68. 'cardbig' => array(
  69. 'weight' => '0',
  70. 'visible' => FALSE,
  71. ),
  72. 'cardfull' => array(
  73. 'weight' => '0',
  74. 'visible' => FALSE,
  75. ),
  76. ),
  77. 'workflow_current_state' => array(
  78. 'homeblock' => array(
  79. 'weight' => '0',
  80. 'visible' => FALSE,
  81. ),
  82. 'teaser' => array(
  83. 'weight' => '-99',
  84. 'visible' => FALSE,
  85. ),
  86. 'cardsmall' => array(
  87. 'weight' => '-99',
  88. 'visible' => FALSE,
  89. ),
  90. 'cardmedium' => array(
  91. 'weight' => '-99',
  92. 'visible' => FALSE,
  93. ),
  94. 'cardbig' => array(
  95. 'weight' => '-99',
  96. 'visible' => FALSE,
  97. ),
  98. 'cardfull' => array(
  99. 'weight' => '-99',
  100. 'visible' => FALSE,
  101. ),
  102. ),
  103. 'workflow' => array(
  104. 'homeblock' => array(
  105. 'weight' => '1',
  106. 'visible' => FALSE,
  107. ),
  108. 'teaser' => array(
  109. 'weight' => '99',
  110. 'visible' => FALSE,
  111. ),
  112. 'cardsmall' => array(
  113. 'weight' => '99',
  114. 'visible' => FALSE,
  115. ),
  116. 'cardmedium' => array(
  117. 'weight' => '99',
  118. 'visible' => FALSE,
  119. ),
  120. 'cardbig' => array(
  121. 'weight' => '99',
  122. 'visible' => FALSE,
  123. ),
  124. 'cardfull' => array(
  125. 'weight' => '99',
  126. 'visible' => FALSE,
  127. ),
  128. ),
  129. ),
  130. ),
  131. );
  132. $export['field_bundle_settings_node__breve'] = $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 = 'field_bundle_settings_node__company';
  137. $strongarm->value = array(
  138. 'view_modes' => array(
  139. 'teaser' => array(
  140. 'custom_settings' => TRUE,
  141. ),
  142. 'full' => array(
  143. 'custom_settings' => FALSE,
  144. ),
  145. 'rss' => array(
  146. 'custom_settings' => FALSE,
  147. ),
  148. 'search_index' => array(
  149. 'custom_settings' => FALSE,
  150. ),
  151. 'search_result' => array(
  152. 'custom_settings' => FALSE,
  153. ),
  154. 'token' => array(
  155. 'custom_settings' => FALSE,
  156. ),
  157. ),
  158. 'extra_fields' => array(
  159. 'form' => array(
  160. 'language' => array(
  161. 'weight' => '11',
  162. ),
  163. 'title' => array(
  164. 'weight' => '0',
  165. ),
  166. 'path' => array(
  167. 'weight' => '14',
  168. ),
  169. 'workflow' => array(
  170. 'weight' => '12',
  171. ),
  172. ),
  173. 'display' => array(
  174. 'language' => array(
  175. 'default' => array(
  176. 'weight' => '0',
  177. 'visible' => TRUE,
  178. ),
  179. 'cardmedium' => array(
  180. 'weight' => '0',
  181. 'visible' => FALSE,
  182. ),
  183. 'cardbig' => array(
  184. 'weight' => '0',
  185. 'visible' => FALSE,
  186. ),
  187. ),
  188. ),
  189. ),
  190. );
  191. $export['field_bundle_settings_node__company'] = $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 = 'field_bundle_settings_node__materiau';
  196. $strongarm->value = array(
  197. 'view_modes' => array(
  198. 'teaser' => array(
  199. 'custom_settings' => TRUE,
  200. ),
  201. 'full' => array(
  202. 'custom_settings' => FALSE,
  203. ),
  204. 'rss' => array(
  205. 'custom_settings' => FALSE,
  206. ),
  207. 'token' => array(
  208. 'custom_settings' => FALSE,
  209. ),
  210. 'search_index' => array(
  211. 'custom_settings' => FALSE,
  212. ),
  213. 'search_result' => array(
  214. 'custom_settings' => FALSE,
  215. ),
  216. 'bookmark' => array(
  217. 'custom_settings' => TRUE,
  218. ),
  219. 'cardsmall' => array(
  220. 'custom_settings' => TRUE,
  221. ),
  222. 'cardmedium' => array(
  223. 'custom_settings' => TRUE,
  224. ),
  225. 'cardbig' => array(
  226. 'custom_settings' => TRUE,
  227. ),
  228. 'cardfull' => array(
  229. 'custom_settings' => TRUE,
  230. ),
  231. 'print' => array(
  232. 'custom_settings' => TRUE,
  233. ),
  234. 'diff_standard' => array(
  235. 'custom_settings' => FALSE,
  236. ),
  237. 'email_plain' => array(
  238. 'custom_settings' => FALSE,
  239. ),
  240. 'email_html' => array(
  241. 'custom_settings' => FALSE,
  242. ),
  243. 'email_textalt' => array(
  244. 'custom_settings' => FALSE,
  245. ),
  246. ),
  247. 'extra_fields' => array(
  248. 'form' => array(
  249. 'language' => array(
  250. 'weight' => '6',
  251. ),
  252. 'title' => array(
  253. 'weight' => '0',
  254. ),
  255. 'path' => array(
  256. 'weight' => '8',
  257. ),
  258. 'workflow' => array(
  259. 'weight' => '5',
  260. ),
  261. 'metatags' => array(
  262. 'weight' => '40',
  263. ),
  264. 'redirect' => array(
  265. 'weight' => '30',
  266. ),
  267. ),
  268. 'display' => array(
  269. 'language' => array(
  270. 'default' => array(
  271. 'weight' => '10',
  272. 'visible' => FALSE,
  273. ),
  274. 'cardmedium' => array(
  275. 'weight' => '8',
  276. 'visible' => FALSE,
  277. ),
  278. 'cardsmall' => array(
  279. 'weight' => '8',
  280. 'visible' => FALSE,
  281. ),
  282. 'cardfull' => array(
  283. 'weight' => '11',
  284. 'visible' => FALSE,
  285. ),
  286. 'cardbig' => array(
  287. 'weight' => '15',
  288. 'visible' => FALSE,
  289. ),
  290. 'bookmark' => array(
  291. 'weight' => '0',
  292. 'visible' => FALSE,
  293. ),
  294. ),
  295. 'workflow_current_state' => array(
  296. 'cardmedium' => array(
  297. 'weight' => '-99',
  298. 'visible' => TRUE,
  299. ),
  300. 'cardbig' => array(
  301. 'weight' => '-99',
  302. 'visible' => TRUE,
  303. ),
  304. 'cardfull' => array(
  305. 'weight' => '-99',
  306. 'visible' => TRUE,
  307. ),
  308. 'default' => array(
  309. 'weight' => '-99',
  310. 'visible' => FALSE,
  311. ),
  312. 'teaser' => array(
  313. 'weight' => '-99',
  314. 'visible' => FALSE,
  315. ),
  316. 'print' => array(
  317. 'weight' => '0',
  318. 'visible' => FALSE,
  319. ),
  320. ),
  321. 'workflow' => array(
  322. 'cardmedium' => array(
  323. 'weight' => '99',
  324. 'visible' => TRUE,
  325. ),
  326. 'cardbig' => array(
  327. 'weight' => '99',
  328. 'visible' => FALSE,
  329. ),
  330. 'cardfull' => array(
  331. 'weight' => '99',
  332. 'visible' => FALSE,
  333. ),
  334. 'default' => array(
  335. 'weight' => '99',
  336. 'visible' => FALSE,
  337. ),
  338. 'teaser' => array(
  339. 'weight' => '99',
  340. 'visible' => FALSE,
  341. ),
  342. 'print' => array(
  343. 'weight' => '8',
  344. 'visible' => FALSE,
  345. ),
  346. ),
  347. ),
  348. ),
  349. );
  350. $export['field_bundle_settings_node__materiau'] = $strongarm;
  351. $strongarm = new stdClass();
  352. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  353. $strongarm->api_version = 1;
  354. $strongarm->name = 'field_bundle_settings_node__page';
  355. $strongarm->value = array(
  356. 'view_modes' => array(
  357. 'teaser' => array(
  358. 'custom_settings' => TRUE,
  359. ),
  360. 'bookmark' => array(
  361. 'custom_settings' => TRUE,
  362. ),
  363. 'cardsmall' => array(
  364. 'custom_settings' => TRUE,
  365. ),
  366. 'cardmedium' => array(
  367. 'custom_settings' => TRUE,
  368. ),
  369. 'cardbig' => array(
  370. 'custom_settings' => TRUE,
  371. ),
  372. 'cardfull' => array(
  373. 'custom_settings' => TRUE,
  374. ),
  375. 'full' => array(
  376. 'custom_settings' => FALSE,
  377. ),
  378. 'rss' => array(
  379. 'custom_settings' => FALSE,
  380. ),
  381. 'diff_standard' => array(
  382. 'custom_settings' => FALSE,
  383. ),
  384. 'print' => array(
  385. 'custom_settings' => FALSE,
  386. ),
  387. 'email_plain' => array(
  388. 'custom_settings' => FALSE,
  389. ),
  390. 'email_html' => array(
  391. 'custom_settings' => FALSE,
  392. ),
  393. 'email_textalt' => array(
  394. 'custom_settings' => FALSE,
  395. ),
  396. 'token' => array(
  397. 'custom_settings' => FALSE,
  398. ),
  399. 'homeblock' => array(
  400. 'custom_settings' => TRUE,
  401. ),
  402. ),
  403. 'extra_fields' => array(
  404. 'form' => array(
  405. 'metatags' => array(
  406. 'weight' => '7',
  407. ),
  408. 'path' => array(
  409. 'weight' => '6',
  410. ),
  411. 'redirect' => array(
  412. 'weight' => '5',
  413. ),
  414. 'workflow' => array(
  415. 'weight' => '8',
  416. ),
  417. 'language' => array(
  418. 'weight' => '4',
  419. ),
  420. ),
  421. 'display' => array(
  422. 'workflow_current_state' => array(
  423. 'default' => array(
  424. 'weight' => '6',
  425. 'visible' => FALSE,
  426. ),
  427. 'teaser' => array(
  428. 'weight' => '4',
  429. 'visible' => FALSE,
  430. ),
  431. 'homeblock' => array(
  432. 'weight' => '3',
  433. 'visible' => FALSE,
  434. ),
  435. ),
  436. 'workflow' => array(
  437. 'default' => array(
  438. 'weight' => '4',
  439. 'visible' => FALSE,
  440. ),
  441. 'teaser' => array(
  442. 'weight' => '5',
  443. 'visible' => FALSE,
  444. ),
  445. 'homeblock' => array(
  446. 'weight' => '4',
  447. 'visible' => FALSE,
  448. ),
  449. ),
  450. ),
  451. ),
  452. );
  453. $export['field_bundle_settings_node__page'] = $strongarm;
  454. $strongarm = new stdClass();
  455. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  456. $strongarm->api_version = 1;
  457. $strongarm->name = 'i18n_node_extended_breve';
  458. $strongarm->value = '1';
  459. $export['i18n_node_extended_breve'] = $strongarm;
  460. $strongarm = new stdClass();
  461. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  462. $strongarm->api_version = 1;
  463. $strongarm->name = 'i18n_node_extended_company';
  464. $strongarm->value = '1';
  465. $export['i18n_node_extended_company'] = $strongarm;
  466. $strongarm = new stdClass();
  467. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  468. $strongarm->api_version = 1;
  469. $strongarm->name = 'i18n_node_extended_materiau';
  470. $strongarm->value = '1';
  471. $export['i18n_node_extended_materiau'] = $strongarm;
  472. $strongarm = new stdClass();
  473. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  474. $strongarm->api_version = 1;
  475. $strongarm->name = 'i18n_node_extended_page';
  476. $strongarm->value = 1;
  477. $export['i18n_node_extended_page'] = $strongarm;
  478. $strongarm = new stdClass();
  479. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  480. $strongarm->api_version = 1;
  481. $strongarm->name = 'i18n_node_extended_webform';
  482. $strongarm->value = '1';
  483. $export['i18n_node_extended_webform'] = $strongarm;
  484. $strongarm = new stdClass();
  485. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  486. $strongarm->api_version = 1;
  487. $strongarm->name = 'i18n_node_options_breve';
  488. $strongarm->value = array();
  489. $export['i18n_node_options_breve'] = $strongarm;
  490. $strongarm = new stdClass();
  491. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  492. $strongarm->api_version = 1;
  493. $strongarm->name = 'i18n_node_options_company';
  494. $strongarm->value = array();
  495. $export['i18n_node_options_company'] = $strongarm;
  496. $strongarm = new stdClass();
  497. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  498. $strongarm->api_version = 1;
  499. $strongarm->name = 'i18n_node_options_materiau';
  500. $strongarm->value = array();
  501. $export['i18n_node_options_materiau'] = $strongarm;
  502. $strongarm = new stdClass();
  503. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  504. $strongarm->api_version = 1;
  505. $strongarm->name = 'i18n_node_options_page';
  506. $strongarm->value = array();
  507. $export['i18n_node_options_page'] = $strongarm;
  508. $strongarm = new stdClass();
  509. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  510. $strongarm->api_version = 1;
  511. $strongarm->name = 'i18n_node_options_webform';
  512. $strongarm->value = array();
  513. $export['i18n_node_options_webform'] = $strongarm;
  514. $strongarm = new stdClass();
  515. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  516. $strongarm->api_version = 1;
  517. $strongarm->name = 'language_content_type_breve';
  518. $strongarm->value = '4';
  519. $export['language_content_type_breve'] = $strongarm;
  520. $strongarm = new stdClass();
  521. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  522. $strongarm->api_version = 1;
  523. $strongarm->name = 'language_content_type_company';
  524. $strongarm->value = '4';
  525. $export['language_content_type_company'] = $strongarm;
  526. $strongarm = new stdClass();
  527. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  528. $strongarm->api_version = 1;
  529. $strongarm->name = 'language_content_type_materiau';
  530. $strongarm->value = '4';
  531. $export['language_content_type_materiau'] = $strongarm;
  532. $strongarm = new stdClass();
  533. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  534. $strongarm->api_version = 1;
  535. $strongarm->name = 'language_content_type_page';
  536. $strongarm->value = '4';
  537. $export['language_content_type_page'] = $strongarm;
  538. $strongarm = new stdClass();
  539. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  540. $strongarm->api_version = 1;
  541. $strongarm->name = 'language_content_type_webform';
  542. $strongarm->value = '4';
  543. $export['language_content_type_webform'] = $strongarm;
  544. $strongarm = new stdClass();
  545. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  546. $strongarm->api_version = 1;
  547. $strongarm->name = 'menu_options_breve';
  548. $strongarm->value = array();
  549. $export['menu_options_breve'] = $strongarm;
  550. $strongarm = new stdClass();
  551. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  552. $strongarm->api_version = 1;
  553. $strongarm->name = 'menu_options_company';
  554. $strongarm->value = array();
  555. $export['menu_options_company'] = $strongarm;
  556. $strongarm = new stdClass();
  557. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  558. $strongarm->api_version = 1;
  559. $strongarm->name = 'menu_options_materiau';
  560. $strongarm->value = array();
  561. $export['menu_options_materiau'] = $strongarm;
  562. $strongarm = new stdClass();
  563. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  564. $strongarm->api_version = 1;
  565. $strongarm->name = 'menu_options_page';
  566. $strongarm->value = array();
  567. $export['menu_options_page'] = $strongarm;
  568. $strongarm = new stdClass();
  569. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  570. $strongarm->api_version = 1;
  571. $strongarm->name = 'menu_options_webform';
  572. $strongarm->value = array();
  573. $export['menu_options_webform'] = $strongarm;
  574. $strongarm = new stdClass();
  575. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  576. $strongarm->api_version = 1;
  577. $strongarm->name = 'menu_parent_breve';
  578. $strongarm->value = 'main-menu:0';
  579. $export['menu_parent_breve'] = $strongarm;
  580. $strongarm = new stdClass();
  581. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  582. $strongarm->api_version = 1;
  583. $strongarm->name = 'menu_parent_company';
  584. $strongarm->value = 'main-menu:0';
  585. $export['menu_parent_company'] = $strongarm;
  586. $strongarm = new stdClass();
  587. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  588. $strongarm->api_version = 1;
  589. $strongarm->name = 'menu_parent_materiau';
  590. $strongarm->value = 'main-menu:0';
  591. $export['menu_parent_materiau'] = $strongarm;
  592. $strongarm = new stdClass();
  593. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  594. $strongarm->api_version = 1;
  595. $strongarm->name = 'menu_parent_page';
  596. $strongarm->value = 'main-menu:0';
  597. $export['menu_parent_page'] = $strongarm;
  598. $strongarm = new stdClass();
  599. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  600. $strongarm->api_version = 1;
  601. $strongarm->name = 'menu_parent_webform';
  602. $strongarm->value = 'main-menu:0';
  603. $export['menu_parent_webform'] = $strongarm;
  604. $strongarm = new stdClass();
  605. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  606. $strongarm->api_version = 1;
  607. $strongarm->name = 'nodeformscols_field_placements_breve_default';
  608. $strongarm->value = array(
  609. 'title' => array(
  610. 'region' => 'main',
  611. 'weight' => '0',
  612. 'has_required' => TRUE,
  613. 'title' => 'Titre',
  614. ),
  615. 'additional_settings' => array(
  616. 'region' => 'main',
  617. 'weight' => '5',
  618. 'has_required' => FALSE,
  619. 'title' => 'Vertical tabs',
  620. 'hidden' => 0,
  621. ),
  622. 'actions' => array(
  623. 'region' => 'right',
  624. 'weight' => '4',
  625. 'has_required' => FALSE,
  626. 'title' => 'Save',
  627. 'hidden' => 0,
  628. ),
  629. 'language' => array(
  630. 'region' => 'right',
  631. 'weight' => '1',
  632. 'has_required' => FALSE,
  633. 'title' => 'Language',
  634. 'hidden' => 0,
  635. ),
  636. 'body' => array(
  637. 'region' => 'main',
  638. 'weight' => '2',
  639. 'has_required' => FALSE,
  640. 'title' => 'Body',
  641. 'hidden' => 0,
  642. ),
  643. 'field_source' => array(
  644. 'region' => 'main',
  645. 'weight' => '3',
  646. 'has_required' => FALSE,
  647. 'title' => 'source',
  648. 'hidden' => 0,
  649. ),
  650. 'field_materiau_ref' => array(
  651. 'region' => 'right',
  652. 'weight' => '0',
  653. 'has_required' => FALSE,
  654. 'title' => 'Materiau(x) lié(s)',
  655. 'hidden' => 0,
  656. ),
  657. 'field_memo' => array(
  658. 'region' => 'right',
  659. 'weight' => '2',
  660. 'has_required' => FALSE,
  661. 'title' => 'Mémo',
  662. 'hidden' => 0,
  663. ),
  664. 'field_visuel' => array(
  665. 'region' => 'main',
  666. 'weight' => '4',
  667. 'has_required' => FALSE,
  668. 'title' => 'Image',
  669. 'hidden' => 0,
  670. ),
  671. 'title_field' => array(
  672. 'region' => 'main',
  673. 'weight' => '1',
  674. 'has_required' => TRUE,
  675. 'title' => 'Titre',
  676. ),
  677. 'field_video_filter' => array(
  678. 'region' => 'main',
  679. 'weight' => '7',
  680. 'has_required' => FALSE,
  681. 'title' => 'video',
  682. 'hidden' => 0,
  683. ),
  684. 'field_onthologie' => array(
  685. 'region' => 'main',
  686. 'weight' => '8',
  687. 'has_required' => FALSE,
  688. 'title' => 'Onthologie',
  689. 'hidden' => 0,
  690. ),
  691. 'field_tags_libres' => array(
  692. 'region' => 'main',
  693. 'weight' => '9',
  694. 'has_required' => FALSE,
  695. 'title' => 'Tags libres',
  696. 'hidden' => 0,
  697. ),
  698. 'field_authored_on' => array(
  699. 'region' => 'main',
  700. 'weight' => '10',
  701. 'has_required' => FALSE,
  702. 'title' => 'Authored on',
  703. 'hidden' => 0,
  704. ),
  705. 'field_workflow_state' => array(
  706. 'region' => 'main',
  707. 'weight' => '11',
  708. 'has_required' => FALSE,
  709. 'title' => 'Workflow State',
  710. 'hidden' => 0,
  711. ),
  712. 'workflow' => array(
  713. 'region' => 'right',
  714. 'weight' => '3',
  715. 'has_required' => FALSE,
  716. 'title' => 'Publication',
  717. 'collapsed' => 0,
  718. 'hidden' => 0,
  719. ),
  720. );
  721. $export['nodeformscols_field_placements_breve_default'] = $strongarm;
  722. $strongarm = new stdClass();
  723. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  724. $strongarm->api_version = 1;
  725. $strongarm->name = 'nodeformscols_field_placements_company_default';
  726. $strongarm->value = array(
  727. 'additional_settings' => array(
  728. 'region' => 'main',
  729. 'weight' => '8',
  730. 'has_required' => FALSE,
  731. 'title' => 'Vertical tabs',
  732. 'hidden' => 0,
  733. ),
  734. 'actions' => array(
  735. 'region' => 'right',
  736. 'weight' => '4',
  737. 'has_required' => FALSE,
  738. 'title' => 'Save',
  739. 'hidden' => 0,
  740. ),
  741. 'language' => array(
  742. 'region' => 'right',
  743. 'weight' => '1',
  744. 'has_required' => FALSE,
  745. 'title' => 'Language',
  746. 'hidden' => 0,
  747. ),
  748. 'body' => array(
  749. 'region' => 'main',
  750. 'weight' => '6',
  751. 'has_required' => FALSE,
  752. 'title' => 'Materio speach',
  753. 'hidden' => 0,
  754. ),
  755. 'field_memo' => array(
  756. 'region' => 'right',
  757. 'weight' => '3',
  758. 'has_required' => FALSE,
  759. 'title' => 'Mémo',
  760. 'hidden' => 0,
  761. ),
  762. 'field_note' => array(
  763. 'region' => 'right',
  764. 'weight' => '0',
  765. 'has_required' => TRUE,
  766. 'title' => 'Note',
  767. ),
  768. 'field_tode_company' => array(
  769. 'region' => 'main',
  770. 'weight' => '0',
  771. 'has_required' => TRUE,
  772. 'title' => 'Name',
  773. ),
  774. 'field_infos_from_company' => array(
  775. 'region' => 'main',
  776. 'weight' => '7',
  777. 'has_required' => FALSE,
  778. 'title' => 'Infos from company',
  779. 'hidden' => 0,
  780. ),
  781. 'field_department' => array(
  782. 'region' => 'main',
  783. 'weight' => '1',
  784. 'has_required' => FALSE,
  785. 'title' => 'Department',
  786. 'hidden' => 0,
  787. ),
  788. 'field_website' => array(
  789. 'region' => 'main',
  790. 'weight' => '2',
  791. 'has_required' => FALSE,
  792. 'title' => 'website',
  793. 'hidden' => 0,
  794. ),
  795. 'field_public_address' => array(
  796. 'region' => 'main',
  797. 'weight' => '4',
  798. 'has_required' => FALSE,
  799. 'title' => 'Adresse',
  800. 'hidden' => 0,
  801. ),
  802. 'field_public_phone' => array(
  803. 'region' => 'main',
  804. 'weight' => '5',
  805. 'has_required' => FALSE,
  806. 'title' => 'Phone',
  807. 'hidden' => 0,
  808. ),
  809. 'field_public_email' => array(
  810. 'region' => 'main',
  811. 'weight' => '3',
  812. 'has_required' => FALSE,
  813. 'title' => 'Email',
  814. 'hidden' => 0,
  815. ),
  816. 'field_attachments' => array(
  817. 'region' => 'main',
  818. 'weight' => '9',
  819. 'has_required' => FALSE,
  820. 'title' => 'Fichiers joints',
  821. 'hidden' => 0,
  822. ),
  823. 'workflow' => array(
  824. 'region' => 'right',
  825. 'weight' => '2',
  826. 'has_required' => FALSE,
  827. 'title' => 'Publication',
  828. 'collapsed' => 0,
  829. 'hidden' => 0,
  830. ),
  831. );
  832. $export['nodeformscols_field_placements_company_default'] = $strongarm;
  833. $strongarm = new stdClass();
  834. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  835. $strongarm->api_version = 1;
  836. $strongarm->name = 'nodeformscols_field_placements_didactique_default';
  837. $strongarm->value = array(
  838. 'title' => array(
  839. 'region' => 'main',
  840. 'weight' => '0',
  841. 'has_required' => TRUE,
  842. 'title' => 'Title',
  843. ),
  844. 'additional_settings' => array(
  845. 'region' => 'main',
  846. 'weight' => '10',
  847. 'has_required' => FALSE,
  848. 'title' => 'Vertical tabs',
  849. 'hidden' => 0,
  850. ),
  851. 'actions' => array(
  852. 'region' => 'right',
  853. 'weight' => '5',
  854. 'has_required' => FALSE,
  855. 'title' => 'Save',
  856. 'hidden' => 0,
  857. ),
  858. 'language' => array(
  859. 'region' => 'right',
  860. 'weight' => '3',
  861. 'has_required' => FALSE,
  862. 'title' => 'Language',
  863. 'hidden' => 0,
  864. ),
  865. 'body' => array(
  866. 'region' => 'main',
  867. 'weight' => '3',
  868. 'has_required' => FALSE,
  869. 'title' => 'Body',
  870. 'hidden' => 0,
  871. ),
  872. 'field_visuel' => array(
  873. 'region' => 'main',
  874. 'weight' => '4',
  875. 'has_required' => FALSE,
  876. 'title' => 'Image',
  877. 'hidden' => 0,
  878. ),
  879. 'field_weight' => array(
  880. 'region' => 'right',
  881. 'weight' => '0',
  882. 'has_required' => TRUE,
  883. 'title' => 'weight',
  884. ),
  885. 'title_field' => array(
  886. 'region' => 'main',
  887. 'weight' => '1',
  888. 'has_required' => TRUE,
  889. 'title' => 'Title',
  890. ),
  891. 'field_displayed_in_home' => array(
  892. 'region' => 'right',
  893. 'weight' => '1',
  894. 'has_required' => FALSE,
  895. 'title' => 'Displayed in home',
  896. 'hidden' => 0,
  897. ),
  898. 'field_emvideo' => array(
  899. 'region' => 'main',
  900. 'weight' => '5',
  901. 'has_required' => FALSE,
  902. 'title' => 'Video',
  903. 'hidden' => 0,
  904. ),
  905. 'field_displayed_in_whoweare' => array(
  906. 'region' => 'right',
  907. 'weight' => '2',
  908. 'has_required' => FALSE,
  909. 'title' => 'Displayed in whoweare',
  910. 'hidden' => 0,
  911. ),
  912. 'workflow' => array(
  913. 'region' => 'right',
  914. 'weight' => '4',
  915. 'has_required' => FALSE,
  916. 'title' => 'Publication',
  917. 'collapsed' => 0,
  918. 'hidden' => 0,
  919. ),
  920. );
  921. $export['nodeformscols_field_placements_didactique_default'] = $strongarm;
  922. $strongarm = new stdClass();
  923. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  924. $strongarm->api_version = 1;
  925. $strongarm->name = 'nodeformscols_field_placements_materiau_default';
  926. $strongarm->value = array(
  927. 'title' => array(
  928. 'region' => 'main',
  929. 'weight' => '0',
  930. 'has_required' => TRUE,
  931. 'title' => 'Nom',
  932. ),
  933. 'additional_settings' => array(
  934. 'region' => 'main',
  935. 'weight' => '9',
  936. 'has_required' => FALSE,
  937. 'title' => 'Vertical tabs',
  938. 'hidden' => 0,
  939. ),
  940. 'actions' => array(
  941. 'region' => 'right',
  942. 'weight' => '8',
  943. 'has_required' => FALSE,
  944. 'title' => 'Save',
  945. 'hidden' => 0,
  946. ),
  947. 'language' => array(
  948. 'region' => 'right',
  949. 'weight' => '5',
  950. 'has_required' => FALSE,
  951. 'title' => 'Language',
  952. 'hidden' => 0,
  953. ),
  954. 'field_attachments' => array(
  955. 'region' => 'main',
  956. 'weight' => '5',
  957. 'has_required' => FALSE,
  958. 'title' => 'Fichiers joints',
  959. 'hidden' => 0,
  960. ),
  961. 'field_description' => array(
  962. 'region' => 'main',
  963. 'weight' => '3',
  964. 'has_required' => FALSE,
  965. 'title' => 'Description',
  966. 'hidden' => 0,
  967. ),
  968. 'field_nature_titre' => array(
  969. 'region' => 'main',
  970. 'weight' => '2',
  971. 'has_required' => FALSE,
  972. 'title' => 'Nature Titre',
  973. 'hidden' => 0,
  974. ),
  975. 'field_materiau_image' => array(
  976. 'region' => 'main',
  977. 'weight' => '6',
  978. 'has_required' => FALSE,
  979. 'title' => 'Image',
  980. 'hidden' => 0,
  981. ),
  982. 'field_video_filter' => array(
  983. 'region' => 'main',
  984. 'weight' => '7',
  985. 'has_required' => FALSE,
  986. 'title' => 'video',
  987. 'hidden' => 0,
  988. ),
  989. 'field_memo' => array(
  990. 'region' => 'right',
  991. 'weight' => '7',
  992. 'has_required' => FALSE,
  993. 'title' => 'Mémo',
  994. 'hidden' => 0,
  995. ),
  996. 'title_field' => array(
  997. 'region' => 'main',
  998. 'weight' => '1',
  999. 'has_required' => TRUE,
  1000. 'title' => 'Nom',
  1001. ),
  1002. 'field_localisation' => array(
  1003. 'region' => 'right',
  1004. 'weight' => '2',
  1005. 'has_required' => FALSE,
  1006. 'title' => 'Localisation',
  1007. 'hidden' => 0,
  1008. ),
  1009. 'field_tags_libres' => array(
  1010. 'region' => 'main',
  1011. 'weight' => '10',
  1012. 'has_required' => FALSE,
  1013. 'title' => 'Tags libres',
  1014. 'hidden' => 0,
  1015. ),
  1016. 'field_onthologie' => array(
  1017. 'region' => 'main',
  1018. 'weight' => '8',
  1019. 'has_required' => FALSE,
  1020. 'title' => 'Onthologie',
  1021. 'hidden' => 0,
  1022. ),
  1023. 'field_company_fab' => array(
  1024. 'region' => 'main',
  1025. 'weight' => '11',
  1026. 'has_required' => FALSE,
  1027. 'title' => 'Manufacturer',
  1028. 'hidden' => 0,
  1029. ),
  1030. 'field_company_distrib' => array(
  1031. 'region' => 'main',
  1032. 'weight' => '12',
  1033. 'has_required' => FALSE,
  1034. 'title' => 'Distributor',
  1035. 'hidden' => 0,
  1036. ),
  1037. 'field_famille' => array(
  1038. 'region' => 'right',
  1039. 'weight' => '0',
  1040. 'has_required' => TRUE,
  1041. 'title' => 'Famille',
  1042. ),
  1043. 'field_identifiant' => array(
  1044. 'region' => 'right',
  1045. 'weight' => '1',
  1046. 'has_required' => FALSE,
  1047. 'title' => 'Identifiant',
  1048. 'hidden' => 0,
  1049. ),
  1050. 'field_reference_materio' => array(
  1051. 'region' => 'main',
  1052. 'weight' => '4',
  1053. 'has_required' => FALSE,
  1054. 'title' => 'Référence Materio',
  1055. 'hidden' => 0,
  1056. ),
  1057. 'field_materiau_ref' => array(
  1058. 'region' => 'right',
  1059. 'weight' => '3',
  1060. 'has_required' => FALSE,
  1061. 'title' => 'Materiau(x) lié(s)',
  1062. 'hidden' => 0,
  1063. ),
  1064. 'field_breve_ref' => array(
  1065. 'region' => 'right',
  1066. 'weight' => '4',
  1067. 'has_required' => FALSE,
  1068. 'title' => 'Brève(s) liée(s)',
  1069. 'hidden' => 0,
  1070. ),
  1071. 'field_workflow_state' => array(
  1072. 'region' => 'main',
  1073. 'weight' => '13',
  1074. 'has_required' => FALSE,
  1075. 'title' => 'Workflow State',
  1076. 'hidden' => 0,
  1077. ),
  1078. 'workflow' => array(
  1079. 'region' => 'right',
  1080. 'weight' => '6',
  1081. 'has_required' => FALSE,
  1082. 'title' => 'Publication',
  1083. 'collapsed' => 0,
  1084. 'hidden' => 0,
  1085. ),
  1086. );
  1087. $export['nodeformscols_field_placements_materiau_default'] = $strongarm;
  1088. $strongarm = new stdClass();
  1089. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1090. $strongarm->api_version = 1;
  1091. $strongarm->name = 'nodeformscols_field_placements_page_default';
  1092. $strongarm->value = array(
  1093. 'title' => array(
  1094. 'region' => 'main',
  1095. 'weight' => '0',
  1096. 'has_required' => TRUE,
  1097. 'title' => 'Title',
  1098. ),
  1099. 'additional_settings' => array(
  1100. 'region' => 'main',
  1101. 'weight' => '7',
  1102. 'has_required' => FALSE,
  1103. 'title' => 'Vertical tabs',
  1104. 'hidden' => 0,
  1105. ),
  1106. 'actions' => array(
  1107. 'region' => 'right',
  1108. 'weight' => '2',
  1109. 'has_required' => FALSE,
  1110. 'title' => 'Enregistrer',
  1111. 'hidden' => 0,
  1112. ),
  1113. 'language' => array(
  1114. 'region' => 'right',
  1115. 'weight' => '0',
  1116. 'has_required' => FALSE,
  1117. 'title' => 'Langue',
  1118. 'hidden' => 0,
  1119. ),
  1120. 'body' => array(
  1121. 'region' => 'main',
  1122. 'weight' => '3',
  1123. 'has_required' => FALSE,
  1124. 'title' => 'Body',
  1125. 'hidden' => 0,
  1126. ),
  1127. 'title_field' => array(
  1128. 'region' => 'main',
  1129. 'weight' => '2',
  1130. 'has_required' => TRUE,
  1131. 'title' => 'Titre',
  1132. ),
  1133. 'workflow' => array(
  1134. 'region' => 'right',
  1135. 'weight' => '1',
  1136. 'has_required' => FALSE,
  1137. 'title' => 'Importé',
  1138. 'hidden' => 0,
  1139. ),
  1140. 'entity_translation_entity_form_language_update' => array(
  1141. 'region' => 'main',
  1142. 'weight' => '1',
  1143. 'has_required' => FALSE,
  1144. 'title' => NULL,
  1145. 'hidden' => 0,
  1146. ),
  1147. 'field_bandeau' => array(
  1148. 'region' => 'main',
  1149. 'weight' => '4',
  1150. 'has_required' => FALSE,
  1151. 'title' => 'Bandeau',
  1152. 'hidden' => 0,
  1153. ),
  1154. 'field_emvideo' => array(
  1155. 'region' => 'main',
  1156. 'weight' => '5',
  1157. 'has_required' => FALSE,
  1158. 'title' => 'Video',
  1159. 'hidden' => 0,
  1160. ),
  1161. 'field_liens' => array(
  1162. 'region' => 'main',
  1163. 'weight' => '6',
  1164. 'has_required' => FALSE,
  1165. 'title' => 'liens',
  1166. 'hidden' => 0,
  1167. ),
  1168. );
  1169. $export['nodeformscols_field_placements_page_default'] = $strongarm;
  1170. $strongarm = new stdClass();
  1171. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1172. $strongarm->api_version = 1;
  1173. $strongarm->name = 'nodeformscols_field_placements_simplenews_default';
  1174. $strongarm->value = array(
  1175. 'title' => array(
  1176. 'region' => 'main',
  1177. 'weight' => '0',
  1178. 'has_required' => TRUE,
  1179. 'title' => 'Title',
  1180. ),
  1181. 'additional_settings' => array(
  1182. 'region' => 'main',
  1183. 'weight' => '5',
  1184. 'has_required' => FALSE,
  1185. 'title' => 'Vertical tabs',
  1186. 'hidden' => 0,
  1187. ),
  1188. 'actions' => array(
  1189. 'region' => 'right',
  1190. 'weight' => '3',
  1191. 'has_required' => FALSE,
  1192. 'title' => 'Enregistrer',
  1193. 'hidden' => 0,
  1194. ),
  1195. 'body' => array(
  1196. 'region' => 'main',
  1197. 'weight' => '3',
  1198. 'has_required' => FALSE,
  1199. 'title' => 'Body',
  1200. 'hidden' => 0,
  1201. ),
  1202. 'field_simplenews_term' => array(
  1203. 'region' => 'right',
  1204. 'weight' => '0',
  1205. 'has_required' => TRUE,
  1206. 'title' => 'Newsletter category',
  1207. ),
  1208. 'simplenews_token_help' => array(
  1209. 'region' => 'main',
  1210. 'weight' => '2',
  1211. 'has_required' => FALSE,
  1212. 'title' => 'Motifs de remplacement',
  1213. 'collapsed' => 1,
  1214. 'hidden' => 0,
  1215. ),
  1216. 'workflow' => array(
  1217. 'region' => 'right',
  1218. 'weight' => '2',
  1219. 'has_required' => FALSE,
  1220. 'title' => 'Importé',
  1221. 'hidden' => 0,
  1222. ),
  1223. 'entity_translation_entity_form_language_update' => array(
  1224. 'region' => 'main',
  1225. 'weight' => '0',
  1226. 'has_required' => FALSE,
  1227. 'title' => NULL,
  1228. 'hidden' => 0,
  1229. ),
  1230. 'field_visible_sur_la_home' => array(
  1231. 'region' => 'right',
  1232. 'weight' => '1',
  1233. 'has_required' => FALSE,
  1234. 'title' => NULL,
  1235. 'hidden' => 0,
  1236. ),
  1237. );
  1238. $export['nodeformscols_field_placements_simplenews_default'] = $strongarm;
  1239. $strongarm = new stdClass();
  1240. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1241. $strongarm->api_version = 1;
  1242. $strongarm->name = 'nodeformscols_field_placements_webform_default';
  1243. $strongarm->value = array(
  1244. 'title' => array(
  1245. 'region' => 'main',
  1246. 'weight' => '1',
  1247. 'has_required' => TRUE,
  1248. 'title' => 'Title',
  1249. ),
  1250. 'additional_settings' => array(
  1251. 'region' => 'main',
  1252. 'weight' => '4',
  1253. 'has_required' => FALSE,
  1254. 'title' => 'Vertical tabs',
  1255. 'hidden' => 0,
  1256. ),
  1257. 'actions' => array(
  1258. 'region' => 'right',
  1259. 'weight' => '1',
  1260. 'has_required' => FALSE,
  1261. 'title' => 'Save',
  1262. 'hidden' => 0,
  1263. ),
  1264. 'language' => array(
  1265. 'region' => 'right',
  1266. 'weight' => '0',
  1267. 'has_required' => FALSE,
  1268. 'title' => 'Language',
  1269. 'hidden' => 0,
  1270. ),
  1271. 'body' => array(
  1272. 'region' => 'main',
  1273. 'weight' => '3',
  1274. 'has_required' => FALSE,
  1275. 'title' => 'Body',
  1276. 'hidden' => 0,
  1277. ),
  1278. 'title_field' => array(
  1279. 'region' => 'main',
  1280. 'weight' => '0',
  1281. 'has_required' => TRUE,
  1282. 'title' => 'Titre',
  1283. ),
  1284. );
  1285. $export['nodeformscols_field_placements_webform_default'] = $strongarm;
  1286. $strongarm = new stdClass();
  1287. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1288. $strongarm->api_version = 1;
  1289. $strongarm->name = 'node_options_breve';
  1290. $strongarm->value = array(
  1291. 0 => 'status',
  1292. );
  1293. $export['node_options_breve'] = $strongarm;
  1294. $strongarm = new stdClass();
  1295. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1296. $strongarm->api_version = 1;
  1297. $strongarm->name = 'node_options_company';
  1298. $strongarm->value = array(
  1299. 0 => 'status',
  1300. );
  1301. $export['node_options_company'] = $strongarm;
  1302. $strongarm = new stdClass();
  1303. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1304. $strongarm->api_version = 1;
  1305. $strongarm->name = 'node_options_materiau';
  1306. $strongarm->value = array(
  1307. 0 => 'status',
  1308. );
  1309. $export['node_options_materiau'] = $strongarm;
  1310. $strongarm = new stdClass();
  1311. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1312. $strongarm->api_version = 1;
  1313. $strongarm->name = 'node_options_page';
  1314. $strongarm->value = array(
  1315. 0 => 'status',
  1316. );
  1317. $export['node_options_page'] = $strongarm;
  1318. $strongarm = new stdClass();
  1319. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1320. $strongarm->api_version = 1;
  1321. $strongarm->name = 'node_options_webform';
  1322. $strongarm->value = array(
  1323. 0 => 'status',
  1324. );
  1325. $export['node_options_webform'] = $strongarm;
  1326. $strongarm = new stdClass();
  1327. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1328. $strongarm->api_version = 1;
  1329. $strongarm->name = 'node_preview_breve';
  1330. $strongarm->value = '0';
  1331. $export['node_preview_breve'] = $strongarm;
  1332. $strongarm = new stdClass();
  1333. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1334. $strongarm->api_version = 1;
  1335. $strongarm->name = 'node_preview_company';
  1336. $strongarm->value = '0';
  1337. $export['node_preview_company'] = $strongarm;
  1338. $strongarm = new stdClass();
  1339. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1340. $strongarm->api_version = 1;
  1341. $strongarm->name = 'node_preview_materiau';
  1342. $strongarm->value = '0';
  1343. $export['node_preview_materiau'] = $strongarm;
  1344. $strongarm = new stdClass();
  1345. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1346. $strongarm->api_version = 1;
  1347. $strongarm->name = 'node_preview_page';
  1348. $strongarm->value = '0';
  1349. $export['node_preview_page'] = $strongarm;
  1350. $strongarm = new stdClass();
  1351. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1352. $strongarm->api_version = 1;
  1353. $strongarm->name = 'node_preview_webform';
  1354. $strongarm->value = '0';
  1355. $export['node_preview_webform'] = $strongarm;
  1356. $strongarm = new stdClass();
  1357. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1358. $strongarm->api_version = 1;
  1359. $strongarm->name = 'node_submitted_breve';
  1360. $strongarm->value = 0;
  1361. $export['node_submitted_breve'] = $strongarm;
  1362. $strongarm = new stdClass();
  1363. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1364. $strongarm->api_version = 1;
  1365. $strongarm->name = 'node_submitted_company';
  1366. $strongarm->value = 0;
  1367. $export['node_submitted_company'] = $strongarm;
  1368. $strongarm = new stdClass();
  1369. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1370. $strongarm->api_version = 1;
  1371. $strongarm->name = 'node_submitted_materiau';
  1372. $strongarm->value = 0;
  1373. $export['node_submitted_materiau'] = $strongarm;
  1374. $strongarm = new stdClass();
  1375. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1376. $strongarm->api_version = 1;
  1377. $strongarm->name = 'node_submitted_page';
  1378. $strongarm->value = 0;
  1379. $export['node_submitted_page'] = $strongarm;
  1380. $strongarm = new stdClass();
  1381. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1382. $strongarm->api_version = 1;
  1383. $strongarm->name = 'node_submitted_webform';
  1384. $strongarm->value = 0;
  1385. $export['node_submitted_webform'] = $strongarm;
  1386. $strongarm = new stdClass();
  1387. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1388. $strongarm->api_version = 1;
  1389. $strongarm->name = 'print_comments';
  1390. $strongarm->value = 0;
  1391. $export['print_comments'] = $strongarm;
  1392. $strongarm = new stdClass();
  1393. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1394. $strongarm->api_version = 1;
  1395. $strongarm->name = 'print_css';
  1396. $strongarm->value = '%t/css/styles.css';
  1397. $export['print_css'] = $strongarm;
  1398. $strongarm = new stdClass();
  1399. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1400. $strongarm->api_version = 1;
  1401. $strongarm->name = 'print_footer_options';
  1402. $strongarm->value = '1';
  1403. $export['print_footer_options'] = $strongarm;
  1404. $strongarm = new stdClass();
  1405. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1406. $strongarm->api_version = 1;
  1407. $strongarm->name = 'print_footer_user';
  1408. $strongarm->value = '';
  1409. $export['print_footer_user'] = $strongarm;
  1410. $strongarm = new stdClass();
  1411. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1412. $strongarm->api_version = 1;
  1413. $strongarm->name = 'print_html_book_link';
  1414. $strongarm->value = '0';
  1415. $export['print_html_book_link'] = $strongarm;
  1416. $strongarm = new stdClass();
  1417. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1418. $strongarm->api_version = 1;
  1419. $strongarm->name = 'print_html_display_breve';
  1420. $strongarm->value = 0;
  1421. $export['print_html_display_breve'] = $strongarm;
  1422. $strongarm = new stdClass();
  1423. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1424. $strongarm->api_version = 1;
  1425. $strongarm->name = 'print_html_display_comment_breve';
  1426. $strongarm->value = 0;
  1427. $export['print_html_display_comment_breve'] = $strongarm;
  1428. $strongarm = new stdClass();
  1429. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1430. $strongarm->api_version = 1;
  1431. $strongarm->name = 'print_html_display_comment_company';
  1432. $strongarm->value = 0;
  1433. $export['print_html_display_comment_company'] = $strongarm;
  1434. $strongarm = new stdClass();
  1435. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1436. $strongarm->api_version = 1;
  1437. $strongarm->name = 'print_html_display_comment_didactique';
  1438. $strongarm->value = 0;
  1439. $export['print_html_display_comment_didactique'] = $strongarm;
  1440. $strongarm = new stdClass();
  1441. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1442. $strongarm->api_version = 1;
  1443. $strongarm->name = 'print_html_display_comment_faq';
  1444. $strongarm->value = 0;
  1445. $export['print_html_display_comment_faq'] = $strongarm;
  1446. $strongarm = new stdClass();
  1447. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1448. $strongarm->api_version = 1;
  1449. $strongarm->name = 'print_html_display_comment_looping_embed_video';
  1450. $strongarm->value = 0;
  1451. $export['print_html_display_comment_looping_embed_video'] = $strongarm;
  1452. $strongarm = new stdClass();
  1453. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1454. $strongarm->api_version = 1;
  1455. $strongarm->name = 'print_html_display_comment_materiau';
  1456. $strongarm->value = 0;
  1457. $export['print_html_display_comment_materiau'] = $strongarm;
  1458. $strongarm = new stdClass();
  1459. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1460. $strongarm->api_version = 1;
  1461. $strongarm->name = 'print_html_display_comment_page';
  1462. $strongarm->value = 0;
  1463. $export['print_html_display_comment_page'] = $strongarm;
  1464. $strongarm = new stdClass();
  1465. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1466. $strongarm->api_version = 1;
  1467. $strongarm->name = 'print_html_display_comment_simplenews';
  1468. $strongarm->value = 0;
  1469. $export['print_html_display_comment_simplenews'] = $strongarm;
  1470. $strongarm = new stdClass();
  1471. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1472. $strongarm->api_version = 1;
  1473. $strongarm->name = 'print_html_display_comment_static_page_plaintext';
  1474. $strongarm->value = 0;
  1475. $export['print_html_display_comment_static_page_plaintext'] = $strongarm;
  1476. $strongarm = new stdClass();
  1477. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1478. $strongarm->api_version = 1;
  1479. $strongarm->name = 'print_html_display_comment_webform';
  1480. $strongarm->value = 0;
  1481. $export['print_html_display_comment_webform'] = $strongarm;
  1482. $strongarm = new stdClass();
  1483. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1484. $strongarm->api_version = 1;
  1485. $strongarm->name = 'print_html_display_company';
  1486. $strongarm->value = 0;
  1487. $export['print_html_display_company'] = $strongarm;
  1488. $strongarm = new stdClass();
  1489. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1490. $strongarm->api_version = 1;
  1491. $strongarm->name = 'print_html_display_didactique';
  1492. $strongarm->value = 0;
  1493. $export['print_html_display_didactique'] = $strongarm;
  1494. $strongarm = new stdClass();
  1495. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1496. $strongarm->api_version = 1;
  1497. $strongarm->name = 'print_html_display_faq';
  1498. $strongarm->value = 0;
  1499. $export['print_html_display_faq'] = $strongarm;
  1500. $strongarm = new stdClass();
  1501. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1502. $strongarm->api_version = 1;
  1503. $strongarm->name = 'print_html_display_looping_embed_video';
  1504. $strongarm->value = 0;
  1505. $export['print_html_display_looping_embed_video'] = $strongarm;
  1506. $strongarm = new stdClass();
  1507. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1508. $strongarm->api_version = 1;
  1509. $strongarm->name = 'print_html_display_materiau';
  1510. $strongarm->value = 1;
  1511. $export['print_html_display_materiau'] = $strongarm;
  1512. $strongarm = new stdClass();
  1513. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1514. $strongarm->api_version = 1;
  1515. $strongarm->name = 'print_html_display_page';
  1516. $strongarm->value = 0;
  1517. $export['print_html_display_page'] = $strongarm;
  1518. $strongarm = new stdClass();
  1519. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1520. $strongarm->api_version = 1;
  1521. $strongarm->name = 'print_html_display_simplenews';
  1522. $strongarm->value = 0;
  1523. $export['print_html_display_simplenews'] = $strongarm;
  1524. $strongarm = new stdClass();
  1525. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1526. $strongarm->api_version = 1;
  1527. $strongarm->name = 'print_html_display_static_page_plaintext';
  1528. $strongarm->value = 0;
  1529. $export['print_html_display_static_page_plaintext'] = $strongarm;
  1530. $strongarm = new stdClass();
  1531. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1532. $strongarm->api_version = 1;
  1533. $strongarm->name = 'print_html_display_sys_urllist';
  1534. $strongarm->value = 0;
  1535. $export['print_html_display_sys_urllist'] = $strongarm;
  1536. $strongarm = new stdClass();
  1537. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1538. $strongarm->api_version = 1;
  1539. $strongarm->name = 'print_html_display_urllist_breve';
  1540. $strongarm->value = 0;
  1541. $export['print_html_display_urllist_breve'] = $strongarm;
  1542. $strongarm = new stdClass();
  1543. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1544. $strongarm->api_version = 1;
  1545. $strongarm->name = 'print_html_display_urllist_company';
  1546. $strongarm->value = 0;
  1547. $export['print_html_display_urllist_company'] = $strongarm;
  1548. $strongarm = new stdClass();
  1549. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1550. $strongarm->api_version = 1;
  1551. $strongarm->name = 'print_html_display_urllist_didactique';
  1552. $strongarm->value = 0;
  1553. $export['print_html_display_urllist_didactique'] = $strongarm;
  1554. $strongarm = new stdClass();
  1555. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1556. $strongarm->api_version = 1;
  1557. $strongarm->name = 'print_html_display_urllist_faq';
  1558. $strongarm->value = 0;
  1559. $export['print_html_display_urllist_faq'] = $strongarm;
  1560. $strongarm = new stdClass();
  1561. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1562. $strongarm->api_version = 1;
  1563. $strongarm->name = 'print_html_display_urllist_looping_embed_video';
  1564. $strongarm->value = 0;
  1565. $export['print_html_display_urllist_looping_embed_video'] = $strongarm;
  1566. $strongarm = new stdClass();
  1567. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1568. $strongarm->api_version = 1;
  1569. $strongarm->name = 'print_html_display_urllist_materiau';
  1570. $strongarm->value = 0;
  1571. $export['print_html_display_urllist_materiau'] = $strongarm;
  1572. $strongarm = new stdClass();
  1573. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1574. $strongarm->api_version = 1;
  1575. $strongarm->name = 'print_html_display_urllist_page';
  1576. $strongarm->value = 0;
  1577. $export['print_html_display_urllist_page'] = $strongarm;
  1578. $strongarm = new stdClass();
  1579. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1580. $strongarm->api_version = 1;
  1581. $strongarm->name = 'print_html_display_urllist_simplenews';
  1582. $strongarm->value = 0;
  1583. $export['print_html_display_urllist_simplenews'] = $strongarm;
  1584. $strongarm = new stdClass();
  1585. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1586. $strongarm->api_version = 1;
  1587. $strongarm->name = 'print_html_display_urllist_static_page_plaintext';
  1588. $strongarm->value = 0;
  1589. $export['print_html_display_urllist_static_page_plaintext'] = $strongarm;
  1590. $strongarm = new stdClass();
  1591. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1592. $strongarm->api_version = 1;
  1593. $strongarm->name = 'print_html_display_urllist_webform';
  1594. $strongarm->value = 0;
  1595. $export['print_html_display_urllist_webform'] = $strongarm;
  1596. $strongarm = new stdClass();
  1597. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1598. $strongarm->api_version = 1;
  1599. $strongarm->name = 'print_html_display_webform';
  1600. $strongarm->value = 0;
  1601. $export['print_html_display_webform'] = $strongarm;
  1602. $strongarm = new stdClass();
  1603. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1604. $strongarm->api_version = 1;
  1605. $strongarm->name = 'print_html_link_class';
  1606. $strongarm->value = 'print-page';
  1607. $export['print_html_link_class'] = $strongarm;
  1608. $strongarm = new stdClass();
  1609. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1610. $strongarm->api_version = 1;
  1611. $strongarm->name = 'print_html_link_pos';
  1612. $strongarm->value = array(
  1613. 'link' => 'link',
  1614. 'block' => 'block',
  1615. 'help' => 'help',
  1616. 'corner' => 0,
  1617. );
  1618. $export['print_html_link_pos'] = $strongarm;
  1619. $strongarm = new stdClass();
  1620. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1621. $strongarm->api_version = 1;
  1622. $strongarm->name = 'print_html_link_teaser';
  1623. $strongarm->value = 0;
  1624. $export['print_html_link_teaser'] = $strongarm;
  1625. $strongarm = new stdClass();
  1626. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1627. $strongarm->api_version = 1;
  1628. $strongarm->name = 'print_html_link_use_alias';
  1629. $strongarm->value = 1;
  1630. $export['print_html_link_use_alias'] = $strongarm;
  1631. $strongarm = new stdClass();
  1632. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1633. $strongarm->api_version = 1;
  1634. $strongarm->name = 'print_html_new_window';
  1635. $strongarm->value = 1;
  1636. $export['print_html_new_window'] = $strongarm;
  1637. $strongarm = new stdClass();
  1638. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1639. $strongarm->api_version = 1;
  1640. $strongarm->name = 'print_html_sendtoprinter';
  1641. $strongarm->value = 0;
  1642. $export['print_html_sendtoprinter'] = $strongarm;
  1643. $strongarm = new stdClass();
  1644. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1645. $strongarm->api_version = 1;
  1646. $strongarm->name = 'print_html_show_link';
  1647. $strongarm->value = '1';
  1648. $export['print_html_show_link'] = $strongarm;
  1649. $strongarm = new stdClass();
  1650. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1651. $strongarm->api_version = 1;
  1652. $strongarm->name = 'print_html_sys_link_pages';
  1653. $strongarm->value = '';
  1654. $export['print_html_sys_link_pages'] = $strongarm;
  1655. $strongarm = new stdClass();
  1656. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1657. $strongarm->api_version = 1;
  1658. $strongarm->name = 'print_html_sys_link_visibility';
  1659. $strongarm->value = '1';
  1660. $export['print_html_sys_link_visibility'] = $strongarm;
  1661. $strongarm = new stdClass();
  1662. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1663. $strongarm->api_version = 1;
  1664. $strongarm->name = 'print_html_windowclose';
  1665. $strongarm->value = 1;
  1666. $export['print_html_windowclose'] = $strongarm;
  1667. $strongarm = new stdClass();
  1668. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1669. $strongarm->api_version = 1;
  1670. $strongarm->name = 'print_keep_theme_css';
  1671. $strongarm->value = 1;
  1672. $export['print_keep_theme_css'] = $strongarm;
  1673. $strongarm = new stdClass();
  1674. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1675. $strongarm->api_version = 1;
  1676. $strongarm->name = 'print_logo_options';
  1677. $strongarm->value = '1';
  1678. $export['print_logo_options'] = $strongarm;
  1679. $strongarm = new stdClass();
  1680. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1681. $strongarm->api_version = 1;
  1682. $strongarm->name = 'print_logo_upload';
  1683. $strongarm->value = '';
  1684. $export['print_logo_upload'] = $strongarm;
  1685. $strongarm = new stdClass();
  1686. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1687. $strongarm->api_version = 1;
  1688. $strongarm->name = 'print_logo_url';
  1689. $strongarm->value = '';
  1690. $export['print_logo_url'] = $strongarm;
  1691. $strongarm = new stdClass();
  1692. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1693. $strongarm->api_version = 1;
  1694. $strongarm->name = 'print_newwindow';
  1695. $strongarm->value = '0';
  1696. $export['print_newwindow'] = $strongarm;
  1697. $strongarm = new stdClass();
  1698. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1699. $strongarm->api_version = 1;
  1700. $strongarm->name = 'print_pdf_autoconfig';
  1701. $strongarm->value = 1;
  1702. $export['print_pdf_autoconfig'] = $strongarm;
  1703. $strongarm = new stdClass();
  1704. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1705. $strongarm->api_version = 1;
  1706. $strongarm->name = 'print_pdf_book_link';
  1707. $strongarm->value = '1';
  1708. $export['print_pdf_book_link'] = $strongarm;
  1709. $strongarm = new stdClass();
  1710. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1711. $strongarm->api_version = 1;
  1712. $strongarm->name = 'print_pdf_content_disposition';
  1713. $strongarm->value = '2';
  1714. $export['print_pdf_content_disposition'] = $strongarm;
  1715. $strongarm = new stdClass();
  1716. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1717. $strongarm->api_version = 1;
  1718. $strongarm->name = 'print_pdf_display_breve';
  1719. $strongarm->value = 0;
  1720. $export['print_pdf_display_breve'] = $strongarm;
  1721. $strongarm = new stdClass();
  1722. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1723. $strongarm->api_version = 1;
  1724. $strongarm->name = 'print_pdf_display_comment_breve';
  1725. $strongarm->value = 0;
  1726. $export['print_pdf_display_comment_breve'] = $strongarm;
  1727. $strongarm = new stdClass();
  1728. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1729. $strongarm->api_version = 1;
  1730. $strongarm->name = 'print_pdf_display_comment_company';
  1731. $strongarm->value = 0;
  1732. $export['print_pdf_display_comment_company'] = $strongarm;
  1733. $strongarm = new stdClass();
  1734. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1735. $strongarm->api_version = 1;
  1736. $strongarm->name = 'print_pdf_display_comment_didactique';
  1737. $strongarm->value = 0;
  1738. $export['print_pdf_display_comment_didactique'] = $strongarm;
  1739. $strongarm = new stdClass();
  1740. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1741. $strongarm->api_version = 1;
  1742. $strongarm->name = 'print_pdf_display_comment_faq';
  1743. $strongarm->value = 0;
  1744. $export['print_pdf_display_comment_faq'] = $strongarm;
  1745. $strongarm = new stdClass();
  1746. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1747. $strongarm->api_version = 1;
  1748. $strongarm->name = 'print_pdf_display_comment_looping_embed_video';
  1749. $strongarm->value = 0;
  1750. $export['print_pdf_display_comment_looping_embed_video'] = $strongarm;
  1751. $strongarm = new stdClass();
  1752. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1753. $strongarm->api_version = 1;
  1754. $strongarm->name = 'print_pdf_display_comment_materiau';
  1755. $strongarm->value = 0;
  1756. $export['print_pdf_display_comment_materiau'] = $strongarm;
  1757. $strongarm = new stdClass();
  1758. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1759. $strongarm->api_version = 1;
  1760. $strongarm->name = 'print_pdf_display_comment_page';
  1761. $strongarm->value = 0;
  1762. $export['print_pdf_display_comment_page'] = $strongarm;
  1763. $strongarm = new stdClass();
  1764. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1765. $strongarm->api_version = 1;
  1766. $strongarm->name = 'print_pdf_display_comment_simplenews';
  1767. $strongarm->value = 0;
  1768. $export['print_pdf_display_comment_simplenews'] = $strongarm;
  1769. $strongarm = new stdClass();
  1770. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1771. $strongarm->api_version = 1;
  1772. $strongarm->name = 'print_pdf_display_comment_static_page_plaintext';
  1773. $strongarm->value = 0;
  1774. $export['print_pdf_display_comment_static_page_plaintext'] = $strongarm;
  1775. $strongarm = new stdClass();
  1776. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1777. $strongarm->api_version = 1;
  1778. $strongarm->name = 'print_pdf_display_comment_webform';
  1779. $strongarm->value = 0;
  1780. $export['print_pdf_display_comment_webform'] = $strongarm;
  1781. $strongarm = new stdClass();
  1782. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1783. $strongarm->api_version = 1;
  1784. $strongarm->name = 'print_pdf_display_company';
  1785. $strongarm->value = 0;
  1786. $export['print_pdf_display_company'] = $strongarm;
  1787. $strongarm = new stdClass();
  1788. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1789. $strongarm->api_version = 1;
  1790. $strongarm->name = 'print_pdf_display_didactique';
  1791. $strongarm->value = 0;
  1792. $export['print_pdf_display_didactique'] = $strongarm;
  1793. $strongarm = new stdClass();
  1794. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1795. $strongarm->api_version = 1;
  1796. $strongarm->name = 'print_pdf_display_faq';
  1797. $strongarm->value = 0;
  1798. $export['print_pdf_display_faq'] = $strongarm;
  1799. $strongarm = new stdClass();
  1800. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1801. $strongarm->api_version = 1;
  1802. $strongarm->name = 'print_pdf_display_looping_embed_video';
  1803. $strongarm->value = 0;
  1804. $export['print_pdf_display_looping_embed_video'] = $strongarm;
  1805. $strongarm = new stdClass();
  1806. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1807. $strongarm->api_version = 1;
  1808. $strongarm->name = 'print_pdf_display_materiau';
  1809. $strongarm->value = 1;
  1810. $export['print_pdf_display_materiau'] = $strongarm;
  1811. $strongarm = new stdClass();
  1812. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1813. $strongarm->api_version = 1;
  1814. $strongarm->name = 'print_pdf_display_page';
  1815. $strongarm->value = 0;
  1816. $export['print_pdf_display_page'] = $strongarm;
  1817. $strongarm = new stdClass();
  1818. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1819. $strongarm->api_version = 1;
  1820. $strongarm->name = 'print_pdf_display_simplenews';
  1821. $strongarm->value = 0;
  1822. $export['print_pdf_display_simplenews'] = $strongarm;
  1823. $strongarm = new stdClass();
  1824. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1825. $strongarm->api_version = 1;
  1826. $strongarm->name = 'print_pdf_display_static_page_plaintext';
  1827. $strongarm->value = 0;
  1828. $export['print_pdf_display_static_page_plaintext'] = $strongarm;
  1829. $strongarm = new stdClass();
  1830. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1831. $strongarm->api_version = 1;
  1832. $strongarm->name = 'print_pdf_display_sys_urllist';
  1833. $strongarm->value = 0;
  1834. $export['print_pdf_display_sys_urllist'] = $strongarm;
  1835. $strongarm = new stdClass();
  1836. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1837. $strongarm->api_version = 1;
  1838. $strongarm->name = 'print_pdf_display_urllist_breve';
  1839. $strongarm->value = 0;
  1840. $export['print_pdf_display_urllist_breve'] = $strongarm;
  1841. $strongarm = new stdClass();
  1842. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1843. $strongarm->api_version = 1;
  1844. $strongarm->name = 'print_pdf_display_urllist_company';
  1845. $strongarm->value = 0;
  1846. $export['print_pdf_display_urllist_company'] = $strongarm;
  1847. $strongarm = new stdClass();
  1848. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1849. $strongarm->api_version = 1;
  1850. $strongarm->name = 'print_pdf_display_urllist_didactique';
  1851. $strongarm->value = 0;
  1852. $export['print_pdf_display_urllist_didactique'] = $strongarm;
  1853. $strongarm = new stdClass();
  1854. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1855. $strongarm->api_version = 1;
  1856. $strongarm->name = 'print_pdf_display_urllist_faq';
  1857. $strongarm->value = 0;
  1858. $export['print_pdf_display_urllist_faq'] = $strongarm;
  1859. $strongarm = new stdClass();
  1860. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1861. $strongarm->api_version = 1;
  1862. $strongarm->name = 'print_pdf_display_urllist_looping_embed_video';
  1863. $strongarm->value = 0;
  1864. $export['print_pdf_display_urllist_looping_embed_video'] = $strongarm;
  1865. $strongarm = new stdClass();
  1866. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1867. $strongarm->api_version = 1;
  1868. $strongarm->name = 'print_pdf_display_urllist_materiau';
  1869. $strongarm->value = 0;
  1870. $export['print_pdf_display_urllist_materiau'] = $strongarm;
  1871. $strongarm = new stdClass();
  1872. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1873. $strongarm->api_version = 1;
  1874. $strongarm->name = 'print_pdf_display_urllist_page';
  1875. $strongarm->value = 0;
  1876. $export['print_pdf_display_urllist_page'] = $strongarm;
  1877. $strongarm = new stdClass();
  1878. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1879. $strongarm->api_version = 1;
  1880. $strongarm->name = 'print_pdf_display_urllist_simplenews';
  1881. $strongarm->value = 0;
  1882. $export['print_pdf_display_urllist_simplenews'] = $strongarm;
  1883. $strongarm = new stdClass();
  1884. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1885. $strongarm->api_version = 1;
  1886. $strongarm->name = 'print_pdf_display_urllist_static_page_plaintext';
  1887. $strongarm->value = 0;
  1888. $export['print_pdf_display_urllist_static_page_plaintext'] = $strongarm;
  1889. $strongarm = new stdClass();
  1890. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1891. $strongarm->api_version = 1;
  1892. $strongarm->name = 'print_pdf_display_urllist_webform';
  1893. $strongarm->value = 0;
  1894. $export['print_pdf_display_urllist_webform'] = $strongarm;
  1895. $strongarm = new stdClass();
  1896. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1897. $strongarm->api_version = 1;
  1898. $strongarm->name = 'print_pdf_display_webform';
  1899. $strongarm->value = 0;
  1900. $export['print_pdf_display_webform'] = $strongarm;
  1901. $strongarm = new stdClass();
  1902. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1903. $strongarm->api_version = 1;
  1904. $strongarm->name = 'print_pdf_dompdf_unicode';
  1905. $strongarm->value = 0;
  1906. $export['print_pdf_dompdf_unicode'] = $strongarm;
  1907. $strongarm = new stdClass();
  1908. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1909. $strongarm->api_version = 1;
  1910. $strongarm->name = 'print_pdf_filename';
  1911. $strongarm->value = '[site:name]-[node:title]-[node:changed:custom:Y-m-d]';
  1912. $export['print_pdf_filename'] = $strongarm;
  1913. $strongarm = new stdClass();
  1914. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1915. $strongarm->api_version = 1;
  1916. $strongarm->name = 'print_pdf_font_family';
  1917. $strongarm->value = 'dejavusans';
  1918. $export['print_pdf_font_family'] = $strongarm;
  1919. $strongarm = new stdClass();
  1920. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1921. $strongarm->api_version = 1;
  1922. $strongarm->name = 'print_pdf_font_size';
  1923. $strongarm->value = '10';
  1924. $export['print_pdf_font_size'] = $strongarm;
  1925. $strongarm = new stdClass();
  1926. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1927. $strongarm->api_version = 1;
  1928. $strongarm->name = 'print_pdf_font_subsetting';
  1929. $strongarm->value = 0;
  1930. $export['print_pdf_font_subsetting'] = $strongarm;
  1931. $strongarm = new stdClass();
  1932. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1933. $strongarm->api_version = 1;
  1934. $strongarm->name = 'print_pdf_images_via_file';
  1935. $strongarm->value = 0;
  1936. $export['print_pdf_images_via_file'] = $strongarm;
  1937. $strongarm = new stdClass();
  1938. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1939. $strongarm->api_version = 1;
  1940. $strongarm->name = 'print_pdf_link_class';
  1941. $strongarm->value = 'print-pdf';
  1942. $export['print_pdf_link_class'] = $strongarm;
  1943. $strongarm = new stdClass();
  1944. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1945. $strongarm->api_version = 1;
  1946. $strongarm->name = 'print_pdf_link_pos';
  1947. $strongarm->value = array(
  1948. 'link' => 'link',
  1949. 'corner' => 0,
  1950. 'block' => 'block',
  1951. 'help' => 'help',
  1952. );
  1953. $export['print_pdf_link_pos'] = $strongarm;
  1954. $strongarm = new stdClass();
  1955. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1956. $strongarm->api_version = 1;
  1957. $strongarm->name = 'print_pdf_link_teaser';
  1958. $strongarm->value = 0;
  1959. $export['print_pdf_link_teaser'] = $strongarm;
  1960. $strongarm = new stdClass();
  1961. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1962. $strongarm->api_version = 1;
  1963. $strongarm->name = 'print_pdf_link_use_alias';
  1964. $strongarm->value = 0;
  1965. $export['print_pdf_link_use_alias'] = $strongarm;
  1966. $strongarm = new stdClass();
  1967. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1968. $strongarm->api_version = 1;
  1969. $strongarm->name = 'print_pdf_page_orientation';
  1970. $strongarm->value = 'portrait';
  1971. $export['print_pdf_page_orientation'] = $strongarm;
  1972. $strongarm = new stdClass();
  1973. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1974. $strongarm->api_version = 1;
  1975. $strongarm->name = 'print_pdf_paper_size';
  1976. $strongarm->value = 'A4';
  1977. $export['print_pdf_paper_size'] = $strongarm;
  1978. $strongarm = new stdClass();
  1979. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1980. $strongarm->api_version = 1;
  1981. $strongarm->name = 'print_pdf_pdf_tool';
  1982. $strongarm->value = 'print_pdf_tcpdf|sites/all/libraries/tcpdf/tcpdf.php';
  1983. $export['print_pdf_pdf_tool'] = $strongarm;
  1984. $strongarm = new stdClass();
  1985. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1986. $strongarm->api_version = 1;
  1987. $strongarm->name = 'print_pdf_show_link';
  1988. $strongarm->value = '1';
  1989. $export['print_pdf_show_link'] = $strongarm;
  1990. $strongarm = new stdClass();
  1991. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1992. $strongarm->api_version = 1;
  1993. $strongarm->name = 'print_pdf_sys_link_pages';
  1994. $strongarm->value = '';
  1995. $export['print_pdf_sys_link_pages'] = $strongarm;
  1996. $strongarm = new stdClass();
  1997. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  1998. $strongarm->api_version = 1;
  1999. $strongarm->name = 'print_pdf_sys_link_visibility';
  2000. $strongarm->value = '1';
  2001. $export['print_pdf_sys_link_visibility'] = $strongarm;
  2002. $strongarm = new stdClass();
  2003. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  2004. $strongarm->api_version = 1;
  2005. $strongarm->name = 'print_pdf_wkhtmltopdf_options';
  2006. $strongarm->value = '--footer-font-size 7 --footer-right \'[page]\'';
  2007. $export['print_pdf_wkhtmltopdf_options'] = $strongarm;
  2008. $strongarm = new stdClass();
  2009. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  2010. $strongarm->api_version = 1;
  2011. $strongarm->name = 'print_robots_noarchive';
  2012. $strongarm->value = 1;
  2013. $export['print_robots_noarchive'] = $strongarm;
  2014. $strongarm = new stdClass();
  2015. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  2016. $strongarm->api_version = 1;
  2017. $strongarm->name = 'print_robots_nofollow';
  2018. $strongarm->value = 1;
  2019. $export['print_robots_nofollow'] = $strongarm;
  2020. $strongarm = new stdClass();
  2021. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  2022. $strongarm->api_version = 1;
  2023. $strongarm->name = 'print_robots_noindex';
  2024. $strongarm->value = 1;
  2025. $export['print_robots_noindex'] = $strongarm;
  2026. $strongarm = new stdClass();
  2027. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  2028. $strongarm->api_version = 1;
  2029. $strongarm->name = 'print_sourceurl_date';
  2030. $strongarm->value = 0;
  2031. $export['print_sourceurl_date'] = $strongarm;
  2032. $strongarm = new stdClass();
  2033. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  2034. $strongarm->api_version = 1;
  2035. $strongarm->name = 'print_sourceurl_enabled';
  2036. $strongarm->value = 0;
  2037. $export['print_sourceurl_enabled'] = $strongarm;
  2038. $strongarm = new stdClass();
  2039. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  2040. $strongarm->api_version = 1;
  2041. $strongarm->name = 'print_sourceurl_forcenode';
  2042. $strongarm->value = 0;
  2043. $export['print_sourceurl_forcenode'] = $strongarm;
  2044. $strongarm = new stdClass();
  2045. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  2046. $strongarm->api_version = 1;
  2047. $strongarm->name = 'print_urls';
  2048. $strongarm->value = 0;
  2049. $export['print_urls'] = $strongarm;
  2050. $strongarm = new stdClass();
  2051. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  2052. $strongarm->api_version = 1;
  2053. $strongarm->name = 'print_urls_anchors';
  2054. $strongarm->value = 0;
  2055. $export['print_urls_anchors'] = $strongarm;
  2056. return $export;
  2057. }