materio_content_types.strongarm.inc 74 KB

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