materio_content_types.strongarm.inc 82 KB

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