materio_administration.features.menu_links.inc 52 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565
  1. <?php
  2. /**
  3. * @file
  4. * materio_administration.features.menu_links.inc
  5. */
  6. /**
  7. * Implements hook_menu_default_menu_links().
  8. */
  9. function materio_administration_menu_default_menu_links() {
  10. $menu_links = array();
  11. // Exported menu link: navigation_:materio_search_api_ajax/actuality.
  12. $menu_links['navigation_:materio_search_api_ajax/actuality'] = array(
  13. 'menu_name' => 'navigation',
  14. 'link_path' => 'materio_search_api_ajax/actuality',
  15. 'router_path' => 'materio_search_api_ajax/actuality',
  16. 'link_title' => '',
  17. 'options' => array(
  18. 'identifier' => 'navigation_:materio_search_api_ajax/actuality',
  19. ),
  20. 'module' => 'system',
  21. 'hidden' => 1,
  22. 'external' => 0,
  23. 'has_children' => 0,
  24. 'expanded' => 0,
  25. 'weight' => -33,
  26. 'customized' => 1,
  27. 'language' => 'und',
  28. 'menu_links_customized' => 1,
  29. );
  30. // Exported menu link: navigation_:user/%/flags/lists.
  31. $menu_links['navigation_:user/%/flags/lists'] = array(
  32. 'menu_name' => 'navigation',
  33. 'link_path' => 'user/%/flags/lists',
  34. 'router_path' => 'user/%/flags/lists',
  35. 'link_title' => '',
  36. 'options' => array(
  37. 'identifier' => 'navigation_:user/%/flags/lists',
  38. ),
  39. 'module' => 'system',
  40. 'hidden' => 0,
  41. 'external' => 0,
  42. 'has_children' => 1,
  43. 'expanded' => 0,
  44. 'weight' => 0,
  45. 'customized' => 0,
  46. 'language' => 'und',
  47. 'menu_links_customized' => 0,
  48. 'parent_identifier' => 'navigation_my-account:user/%',
  49. );
  50. // Exported menu link: navigation_add-content:node/add.
  51. $menu_links['navigation_add-content:node/add'] = array(
  52. 'menu_name' => 'navigation',
  53. 'link_path' => 'node/add',
  54. 'router_path' => 'node/add',
  55. 'link_title' => 'Add content',
  56. 'options' => array(
  57. 'identifier' => 'navigation_add-content:node/add',
  58. ),
  59. 'module' => 'system',
  60. 'hidden' => 0,
  61. 'external' => 0,
  62. 'has_children' => 1,
  63. 'expanded' => 0,
  64. 'weight' => -45,
  65. 'customized' => 1,
  66. 'language' => 'und',
  67. 'menu_links_customized' => 1,
  68. 'parent_identifier' => 'navigation_content:admin/content/materiaux',
  69. );
  70. // Exported menu link: navigation_add-user:admin/people/create.
  71. $menu_links['navigation_add-user:admin/people/create'] = array(
  72. 'menu_name' => 'navigation',
  73. 'link_path' => 'admin/people/create',
  74. 'router_path' => 'admin/people/create',
  75. 'link_title' => 'Add user',
  76. 'options' => array(
  77. 'attributes' => array(),
  78. 'identifier' => 'navigation_add-user:admin/people/create',
  79. ),
  80. 'module' => 'menu',
  81. 'hidden' => 0,
  82. 'external' => 0,
  83. 'has_children' => 0,
  84. 'expanded' => 0,
  85. 'weight' => -50,
  86. 'customized' => 1,
  87. 'language' => 'und',
  88. 'menu_links_customized' => 1,
  89. 'parent_identifier' => 'navigation_users:admin/users',
  90. );
  91. // Exported menu link: navigation_adhsions:node/11186/webform-results.
  92. $menu_links['navigation_adhsions:node/11186/webform-results'] = array(
  93. 'menu_name' => 'navigation',
  94. 'link_path' => 'node/11186/webform-results',
  95. 'router_path' => 'node/%/webform-results',
  96. 'link_title' => 'Adhésions',
  97. 'options' => array(
  98. 'attributes' => array(),
  99. 'identifier' => 'navigation_adhsions:node/11186/webform-results',
  100. ),
  101. 'module' => 'menu',
  102. 'hidden' => 0,
  103. 'external' => 0,
  104. 'has_children' => 0,
  105. 'expanded' => 0,
  106. 'weight' => -47,
  107. 'customized' => 1,
  108. 'language' => 'und',
  109. 'menu_links_customized' => 1,
  110. 'parent_identifier' => 'navigation_users:admin/users',
  111. );
  112. // Exported menu link: navigation_ajouter-un-tag-libre:admin/structure/taxonomy/tag_libres/add.
  113. $menu_links['navigation_ajouter-un-tag-libre:admin/structure/taxonomy/tag_libres/add'] = array(
  114. 'menu_name' => 'navigation',
  115. 'link_path' => 'admin/structure/taxonomy/tag_libres/add',
  116. 'router_path' => 'admin/structure/taxonomy/%/add',
  117. 'link_title' => 'Ajouter un tag libre',
  118. 'options' => array(
  119. 'identifier' => 'navigation_ajouter-un-tag-libre:admin/structure/taxonomy/tag_libres/add',
  120. 'attributes' => array(),
  121. 'item_attributes' => array(
  122. 'id' => '',
  123. 'class' => '',
  124. 'style' => '',
  125. ),
  126. ),
  127. 'module' => 'menu',
  128. 'hidden' => 1,
  129. 'external' => 0,
  130. 'has_children' => 0,
  131. 'expanded' => 0,
  132. 'weight' => -50,
  133. 'customized' => 1,
  134. 'language' => 'und',
  135. 'menu_links_customized' => 1,
  136. 'parent_identifier' => 'navigation_tag-libres:admin/structure/taxonomy_manager/voc/tag_libres',
  137. );
  138. // Exported menu link: navigation_ajouter-un-tag-libre:http://dev.materio.com/fr/admin/structure/taxonomy/tag_libres/add.
  139. $menu_links['navigation_ajouter-un-tag-libre:http://dev.materio.com/fr/admin/structure/taxonomy/tag_libres/add'] = array(
  140. 'menu_name' => 'navigation',
  141. 'link_path' => 'http://dev.materio.com/fr/admin/structure/taxonomy/tag_libres/add',
  142. 'router_path' => '',
  143. 'link_title' => 'Ajouter un tag libre',
  144. 'options' => array(
  145. 'attributes' => array(),
  146. 'identifier' => 'navigation_ajouter-un-tag-libre:http://dev.materio.com/fr/admin/structure/taxonomy/tag_libres/add',
  147. ),
  148. 'module' => 'menu',
  149. 'hidden' => 1,
  150. 'external' => 1,
  151. 'has_children' => 0,
  152. 'expanded' => 0,
  153. 'weight' => -50,
  154. 'customized' => 1,
  155. 'language' => 'und',
  156. 'menu_links_customized' => 1,
  157. 'parent_identifier' => 'navigation_tag-libres:admin/structure/taxonomy_manager/voc/tag_libres',
  158. );
  159. // Exported menu link: navigation_breve:node/add/breve.
  160. $menu_links['navigation_breve:node/add/breve'] = array(
  161. 'menu_name' => 'navigation',
  162. 'link_path' => 'node/add/breve',
  163. 'router_path' => 'node/add/breve',
  164. 'link_title' => 'Breve',
  165. 'options' => array(
  166. 'identifier' => 'navigation_breve:node/add/breve',
  167. ),
  168. 'module' => 'system',
  169. 'hidden' => 0,
  170. 'external' => 0,
  171. 'has_children' => 0,
  172. 'expanded' => 0,
  173. 'weight' => -50,
  174. 'customized' => 1,
  175. 'language' => 'und',
  176. 'menu_links_customized' => 1,
  177. 'parent_identifier' => 'navigation_add-content:node/add',
  178. );
  179. // Exported menu link: navigation_companies:admin/content/companies.
  180. $menu_links['navigation_companies:admin/content/companies'] = array(
  181. 'menu_name' => 'navigation',
  182. 'link_path' => 'admin/content/companies',
  183. 'router_path' => 'admin/content/companies',
  184. 'link_title' => 'Companies',
  185. 'options' => array(
  186. 'attributes' => array(),
  187. 'identifier' => 'navigation_companies:admin/content/companies',
  188. ),
  189. 'module' => 'menu',
  190. 'hidden' => 0,
  191. 'external' => 0,
  192. 'has_children' => 0,
  193. 'expanded' => 0,
  194. 'weight' => -48,
  195. 'customized' => 1,
  196. 'language' => 'und',
  197. 'menu_links_customized' => 1,
  198. 'parent_identifier' => 'navigation_content:admin/content/materiaux',
  199. );
  200. // Exported menu link: navigation_company:admin/structure/taxonomy_manager/voc/company.
  201. $menu_links['navigation_company:admin/structure/taxonomy_manager/voc/company'] = array(
  202. 'menu_name' => 'navigation',
  203. 'link_path' => 'admin/structure/taxonomy_manager/voc/company',
  204. 'router_path' => 'admin/structure',
  205. 'link_title' => 'Company',
  206. 'options' => array(
  207. 'attributes' => array(),
  208. 'identifier' => 'navigation_company:admin/structure/taxonomy_manager/voc/company',
  209. ),
  210. 'module' => 'menu',
  211. 'hidden' => 1,
  212. 'external' => 0,
  213. 'has_children' => 0,
  214. 'expanded' => 0,
  215. 'weight' => 9,
  216. 'customized' => 1,
  217. 'language' => 'und',
  218. 'menu_links_customized' => 1,
  219. 'parent_identifier' => 'navigation_taxonomy-manager:admin/structure/taxonomy_manager/voc',
  220. );
  221. // Exported menu link: navigation_company:node/add/company.
  222. $menu_links['navigation_company:node/add/company'] = array(
  223. 'menu_name' => 'navigation',
  224. 'link_path' => 'node/add/company',
  225. 'router_path' => 'node/add/company',
  226. 'link_title' => 'Company',
  227. 'options' => array(
  228. 'identifier' => 'navigation_company:node/add/company',
  229. ),
  230. 'module' => 'system',
  231. 'hidden' => 0,
  232. 'external' => 0,
  233. 'has_children' => 0,
  234. 'expanded' => 0,
  235. 'weight' => -48,
  236. 'customized' => 1,
  237. 'language' => 'und',
  238. 'menu_links_customized' => 1,
  239. 'parent_identifier' => 'navigation_add-content:node/add',
  240. );
  241. // Exported menu link: navigation_compose-tips:filter/tips.
  242. $menu_links['navigation_compose-tips:filter/tips'] = array(
  243. 'menu_name' => 'navigation',
  244. 'link_path' => 'filter/tips',
  245. 'router_path' => 'filter/tips',
  246. 'link_title' => 'Compose tips',
  247. 'options' => array(
  248. 'identifier' => 'navigation_compose-tips:filter/tips',
  249. ),
  250. 'module' => 'system',
  251. 'hidden' => 1,
  252. 'external' => 0,
  253. 'has_children' => 1,
  254. 'expanded' => 0,
  255. 'weight' => -41,
  256. 'customized' => 1,
  257. 'language' => 'und',
  258. 'menu_links_customized' => 1,
  259. );
  260. // Exported menu link: navigation_content-types:admin/config/regional/translate/table/nodetype.
  261. $menu_links['navigation_content-types:admin/config/regional/translate/table/nodetype'] = array(
  262. 'menu_name' => 'navigation',
  263. 'link_path' => 'admin/config/regional/translate/table/nodetype',
  264. 'router_path' => 'admin/config/regional/translate/table/nodetype',
  265. 'link_title' => 'Content types',
  266. 'options' => array(
  267. 'attributes' => array(),
  268. 'identifier' => 'navigation_content-types:admin/config/regional/translate/table/nodetype',
  269. ),
  270. 'module' => 'menu',
  271. 'hidden' => 0,
  272. 'external' => 0,
  273. 'has_children' => 0,
  274. 'expanded' => 0,
  275. 'weight' => -48,
  276. 'customized' => 1,
  277. 'language' => 'und',
  278. 'menu_links_customized' => 1,
  279. 'parent_identifier' => 'navigation_translation:admin/config/regional/translate/translate',
  280. );
  281. // Exported menu link: navigation_customers:admin/store/customers.
  282. $menu_links['navigation_customers:admin/store/customers'] = array(
  283. 'menu_name' => 'navigation',
  284. 'link_path' => 'admin/store/customers',
  285. 'router_path' => 'admin/store/customers',
  286. 'link_title' => 'customers',
  287. 'options' => array(
  288. 'identifier' => 'navigation_customers:admin/store/customers',
  289. 'attributes' => array(),
  290. 'item_attributes' => array(
  291. 'id' => '',
  292. 'class' => '',
  293. 'style' => '',
  294. ),
  295. ),
  296. 'module' => 'menu',
  297. 'hidden' => 0,
  298. 'external' => 0,
  299. 'has_children' => 0,
  300. 'expanded' => 0,
  301. 'weight' => -49,
  302. 'customized' => 1,
  303. 'language' => 'und',
  304. 'menu_links_customized' => 1,
  305. 'parent_identifier' => 'navigation_store:admin/store',
  306. );
  307. // Exported menu link: navigation_customers:http://www.materio.com/fr/admin/store/customers.
  308. $menu_links['navigation_customers:http://www.materio.com/fr/admin/store/customers'] = array(
  309. 'menu_name' => 'navigation',
  310. 'link_path' => 'http://www.materio.com/fr/admin/store/customers',
  311. 'router_path' => '',
  312. 'link_title' => 'customers',
  313. 'options' => array(
  314. 'attributes' => array(),
  315. 'identifier' => 'navigation_customers:http://www.materio.com/fr/admin/store/customers',
  316. ),
  317. 'module' => 'menu',
  318. 'hidden' => 1,
  319. 'external' => 1,
  320. 'has_children' => 0,
  321. 'expanded' => 0,
  322. 'weight' => -46,
  323. 'customized' => 1,
  324. 'language' => 'und',
  325. 'menu_links_customized' => 1,
  326. 'parent_identifier' => 'navigation_store:admin/store',
  327. );
  328. // Exported menu link: navigation_didactique:node/add/didactique.
  329. $menu_links['navigation_didactique:node/add/didactique'] = array(
  330. 'menu_name' => 'navigation',
  331. 'link_path' => 'node/add/didactique',
  332. 'router_path' => 'node/add/didactique',
  333. 'link_title' => 'Didactique',
  334. 'options' => array(
  335. 'attributes' => array(
  336. 'title' => 'Nœud didacticiel',
  337. ),
  338. 'identifier' => 'navigation_didactique:node/add/didactique',
  339. ),
  340. 'module' => 'system',
  341. 'hidden' => 0,
  342. 'external' => 0,
  343. 'has_children' => 0,
  344. 'expanded' => 0,
  345. 'weight' => -43,
  346. 'customized' => 1,
  347. 'language' => 'und',
  348. 'menu_links_customized' => 1,
  349. 'parent_identifier' => 'navigation_add-content:node/add',
  350. );
  351. // Exported menu link: navigation_duplicate-mails:admin/users/duplicatemails.
  352. $menu_links['navigation_duplicate-mails:admin/users/duplicatemails'] = array(
  353. 'menu_name' => 'navigation',
  354. 'link_path' => 'admin/users/duplicatemails',
  355. 'router_path' => 'admin/users',
  356. 'link_title' => 'Duplicate mails',
  357. 'options' => array(
  358. 'attributes' => array(),
  359. 'item_attributes' => array(
  360. 'id' => '',
  361. 'class' => '',
  362. 'style' => '',
  363. ),
  364. 'identifier' => 'navigation_duplicate-mails:admin/users/duplicatemails',
  365. ),
  366. 'module' => 'menu',
  367. 'hidden' => 0,
  368. 'external' => 0,
  369. 'has_children' => 0,
  370. 'expanded' => 0,
  371. 'weight' => -44,
  372. 'customized' => 1,
  373. 'language' => 'und',
  374. 'menu_links_customized' => 1,
  375. 'parent_identifier' => 'navigation_users:admin/users',
  376. );
  377. // Exported menu link: navigation_duplicates:admin/config/content/remove_duplicates.
  378. $menu_links['navigation_duplicates:admin/config/content/remove_duplicates'] = array(
  379. 'menu_name' => 'navigation',
  380. 'link_path' => 'admin/config/content/remove_duplicates',
  381. 'router_path' => 'admin/config/content/remove_duplicates',
  382. 'link_title' => 'Duplicates',
  383. 'options' => array(
  384. 'attributes' => array(),
  385. 'item_attributes' => array(
  386. 'id' => '',
  387. 'class' => '',
  388. 'style' => '',
  389. ),
  390. 'identifier' => 'navigation_duplicates:admin/config/content/remove_duplicates',
  391. ),
  392. 'module' => 'menu',
  393. 'hidden' => 0,
  394. 'external' => 0,
  395. 'has_children' => 0,
  396. 'expanded' => 0,
  397. 'weight' => -44,
  398. 'customized' => 1,
  399. 'language' => 'und',
  400. 'menu_links_customized' => 1,
  401. 'parent_identifier' => 'navigation_content:admin/content/materiaux',
  402. );
  403. // Exported menu link: navigation_faq:node/add/faq.
  404. $menu_links['navigation_faq:node/add/faq'] = array(
  405. 'menu_name' => 'navigation',
  406. 'link_path' => 'node/add/faq',
  407. 'router_path' => 'node/add/faq',
  408. 'link_title' => 'FAQ',
  409. 'options' => array(
  410. 'attributes' => array(
  411. 'title' => 'A frequently asked question and its answer.',
  412. ),
  413. 'identifier' => 'navigation_faq:node/add/faq',
  414. ),
  415. 'module' => 'system',
  416. 'hidden' => 0,
  417. 'external' => 0,
  418. 'has_children' => 0,
  419. 'expanded' => 0,
  420. 'weight' => -42,
  421. 'customized' => 1,
  422. 'language' => 'und',
  423. 'menu_links_customized' => 1,
  424. 'parent_identifier' => 'navigation_add-content:node/add',
  425. );
  426. // Exported menu link: navigation_feedback:admin/reports/feedback.
  427. $menu_links['navigation_feedback:admin/reports/feedback'] = array(
  428. 'menu_name' => 'navigation',
  429. 'link_path' => 'admin/reports/feedback',
  430. 'router_path' => 'admin/reports',
  431. 'link_title' => 'Feedback',
  432. 'options' => array(
  433. 'identifier' => 'navigation_feedback:admin/reports/feedback',
  434. 'attributes' => array(),
  435. 'item_attributes' => array(
  436. 'id' => '',
  437. 'class' => '',
  438. 'style' => '',
  439. ),
  440. ),
  441. 'module' => 'menu',
  442. 'hidden' => 0,
  443. 'external' => 0,
  444. 'has_children' => 0,
  445. 'expanded' => 0,
  446. 'weight' => -45,
  447. 'customized' => 1,
  448. 'language' => 'und',
  449. 'menu_links_customized' => 1,
  450. 'parent_identifier' => 'navigation_users:admin/users',
  451. );
  452. // Exported menu link: navigation_fields:admin/config/regional/translate/table.
  453. $menu_links['navigation_fields:admin/config/regional/translate/table'] = array(
  454. 'menu_name' => 'navigation',
  455. 'link_path' => 'admin/config/regional/translate/table',
  456. 'router_path' => 'admin/config/regional/translate/table',
  457. 'link_title' => 'Fields',
  458. 'options' => array(
  459. 'attributes' => array(),
  460. 'identifier' => 'navigation_fields:admin/config/regional/translate/table',
  461. ),
  462. 'module' => 'menu',
  463. 'hidden' => 0,
  464. 'external' => 0,
  465. 'has_children' => 0,
  466. 'expanded' => 0,
  467. 'weight' => -49,
  468. 'customized' => 1,
  469. 'language' => 'und',
  470. 'menu_links_customized' => 1,
  471. 'parent_identifier' => 'navigation_translation:admin/config/regional/translate/translate',
  472. );
  473. // Exported menu link: navigation_formulaires-dadhsion:http://www.materio.com/fr/node/11186/webform-results.
  474. $menu_links['navigation_formulaires-dadhsion:http://www.materio.com/fr/node/11186/webform-results'] = array(
  475. 'menu_name' => 'navigation',
  476. 'link_path' => 'http://www.materio.com/fr/node/11186/webform-results',
  477. 'router_path' => '',
  478. 'link_title' => 'Formulaires d\'adhésion',
  479. 'options' => array(
  480. 'attributes' => array(),
  481. 'identifier' => 'navigation_formulaires-dadhsion:http://www.materio.com/fr/node/11186/webform-results',
  482. ),
  483. 'module' => 'menu',
  484. 'hidden' => 1,
  485. 'external' => 1,
  486. 'has_children' => 0,
  487. 'expanded' => 0,
  488. 'weight' => -39,
  489. 'customized' => 1,
  490. 'language' => 'und',
  491. 'menu_links_customized' => 1,
  492. );
  493. // Exported menu link: navigation_frequently-asked-questions:faq-page.
  494. $menu_links['navigation_frequently-asked-questions:faq-page'] = array(
  495. 'menu_name' => 'navigation',
  496. 'link_path' => 'faq-page',
  497. 'router_path' => 'faq-page',
  498. 'link_title' => 'Frequently Asked Questions',
  499. 'options' => array(
  500. 'identifier' => 'navigation_frequently-asked-questions:faq-page',
  501. ),
  502. 'module' => 'system',
  503. 'hidden' => 1,
  504. 'external' => 0,
  505. 'has_children' => 0,
  506. 'expanded' => 0,
  507. 'weight' => -36,
  508. 'customized' => 1,
  509. 'language' => 'und',
  510. 'menu_links_customized' => 1,
  511. );
  512. // Exported menu link: navigation_gratuits:admin/users/gratuits.
  513. $menu_links['navigation_gratuits:admin/users/gratuits'] = array(
  514. 'menu_name' => 'navigation',
  515. 'link_path' => 'admin/users/gratuits',
  516. 'router_path' => 'admin/users/gratuits',
  517. 'link_title' => 'Gratuits',
  518. 'options' => array(
  519. 'identifier' => 'navigation_gratuits:admin/users/gratuits',
  520. ),
  521. 'module' => 'system',
  522. 'hidden' => 1,
  523. 'external' => 0,
  524. 'has_children' => 0,
  525. 'expanded' => 0,
  526. 'weight' => -39,
  527. 'customized' => 1,
  528. 'language' => 'und',
  529. 'menu_links_customized' => 1,
  530. 'parent_identifier' => 'navigation_users:admin/users',
  531. );
  532. // Exported menu link: navigation_industriels-lite:admin/users/industriels2.
  533. $menu_links['navigation_industriels-lite:admin/users/industriels2'] = array(
  534. 'menu_name' => 'navigation',
  535. 'link_path' => 'admin/users/industriels2',
  536. 'router_path' => 'admin/users/industriels2',
  537. 'link_title' => 'Industriels-lite',
  538. 'options' => array(
  539. 'attributes' => array(),
  540. 'item_attributes' => array(
  541. 'id' => '',
  542. 'class' => '',
  543. 'style' => '',
  544. ),
  545. 'identifier' => 'navigation_industriels-lite:admin/users/industriels2',
  546. ),
  547. 'module' => 'menu',
  548. 'hidden' => 1,
  549. 'external' => 0,
  550. 'has_children' => 0,
  551. 'expanded' => 0,
  552. 'weight' => -48,
  553. 'customized' => 1,
  554. 'language' => 'und',
  555. 'menu_links_customized' => 1,
  556. 'parent_identifier' => 'navigation_users:admin/users',
  557. );
  558. // Exported menu link: navigation_industriels:admin/industriels.
  559. $menu_links['navigation_industriels:admin/industriels'] = array(
  560. 'menu_name' => 'navigation',
  561. 'link_path' => 'admin/industriels',
  562. 'router_path' => 'admin',
  563. 'link_title' => 'Industriels',
  564. 'options' => array(
  565. 'identifier' => 'navigation_industriels:admin/industriels',
  566. ),
  567. 'module' => 'system',
  568. 'hidden' => 1,
  569. 'external' => 0,
  570. 'has_children' => 0,
  571. 'expanded' => 0,
  572. 'weight' => -37,
  573. 'customized' => 1,
  574. 'language' => 'und',
  575. 'menu_links_customized' => 1,
  576. 'parent_identifier' => 'navigation_users:admin/users',
  577. );
  578. // Exported menu link: navigation_industriels:admin/users/industriels.
  579. $menu_links['navigation_industriels:admin/users/industriels'] = array(
  580. 'menu_name' => 'navigation',
  581. 'link_path' => 'admin/users/industriels',
  582. 'router_path' => 'admin/users/industriels',
  583. 'link_title' => 'Industriels',
  584. 'options' => array(
  585. 'identifier' => 'navigation_industriels:admin/users/industriels',
  586. ),
  587. 'module' => 'system',
  588. 'hidden' => 0,
  589. 'external' => 0,
  590. 'has_children' => 0,
  591. 'expanded' => 0,
  592. 'weight' => -49,
  593. 'customized' => 1,
  594. 'language' => 'und',
  595. 'menu_links_customized' => 1,
  596. 'parent_identifier' => 'navigation_users:admin/users',
  597. );
  598. // Exported menu link: navigation_industriels:node/add/simplenews/7856.
  599. $menu_links['navigation_industriels:node/add/simplenews/7856'] = array(
  600. 'menu_name' => 'navigation',
  601. 'link_path' => 'node/add/simplenews/7856',
  602. 'router_path' => 'node/add/simplenews',
  603. 'link_title' => 'Industriels',
  604. 'options' => array(
  605. 'identifier' => 'navigation_industriels:node/add/simplenews/7856',
  606. ),
  607. 'module' => 'system',
  608. 'hidden' => 0,
  609. 'external' => 0,
  610. 'has_children' => 0,
  611. 'expanded' => 0,
  612. 'weight' => -50,
  613. 'customized' => 1,
  614. 'language' => 'und',
  615. 'menu_links_customized' => 1,
  616. 'parent_identifier' => 'navigation_simplenews-newsletter:node/add/simplenews',
  617. );
  618. // Exported menu link: navigation_ip-address-tracking:admin/reports/ip_tracking.
  619. $menu_links['navigation_ip-address-tracking:admin/reports/ip_tracking'] = array(
  620. 'menu_name' => 'navigation',
  621. 'link_path' => 'admin/reports/ip_tracking',
  622. 'router_path' => 'admin/reports/ip_tracking',
  623. 'link_title' => 'IP address tracking',
  624. 'options' => array(
  625. 'attributes' => array(
  626. 'title' => 'View IP addresses and the users associated with them.',
  627. ),
  628. 'identifier' => 'navigation_ip-address-tracking:admin/reports/ip_tracking',
  629. ),
  630. 'module' => 'system',
  631. 'hidden' => 0,
  632. 'external' => 0,
  633. 'has_children' => 0,
  634. 'expanded' => 0,
  635. 'weight' => -43,
  636. 'customized' => 1,
  637. 'language' => 'und',
  638. 'menu_links_customized' => 1,
  639. 'parent_identifier' => 'navigation_users:admin/users',
  640. );
  641. // Exported menu link: navigation_looping-embed-video:node/add/looping-embed-video.
  642. $menu_links['navigation_looping-embed-video:node/add/looping-embed-video'] = array(
  643. 'menu_name' => 'navigation',
  644. 'link_path' => 'node/add/looping-embed-video',
  645. 'router_path' => 'node/add/looping-embed-video',
  646. 'link_title' => 'looping embed video',
  647. 'options' => array(
  648. 'identifier' => 'navigation_looping-embed-video:node/add/looping-embed-video',
  649. ),
  650. 'module' => 'system',
  651. 'hidden' => 0,
  652. 'external' => 0,
  653. 'has_children' => 0,
  654. 'expanded' => 0,
  655. 'weight' => -41,
  656. 'customized' => 1,
  657. 'language' => 'und',
  658. 'menu_links_customized' => 1,
  659. 'parent_identifier' => 'navigation_add-content:node/add',
  660. );
  661. // Exported menu link: navigation_mandrill:admin/reports/mandrill.
  662. $menu_links['navigation_mandrill:admin/reports/mandrill'] = array(
  663. 'menu_name' => 'navigation',
  664. 'link_path' => 'admin/reports/mandrill',
  665. 'router_path' => 'admin/reports',
  666. 'link_title' => 'Mandrill',
  667. 'options' => array(
  668. 'attributes' => array(),
  669. 'identifier' => 'navigation_mandrill:admin/reports/mandrill',
  670. ),
  671. 'module' => 'menu',
  672. 'hidden' => 0,
  673. 'external' => 0,
  674. 'has_children' => 0,
  675. 'expanded' => 0,
  676. 'weight' => -34,
  677. 'customized' => 1,
  678. 'language' => 'und',
  679. 'menu_links_customized' => 1,
  680. );
  681. // Exported menu link: navigation_materiau:node/add/materiau.
  682. $menu_links['navigation_materiau:node/add/materiau'] = array(
  683. 'menu_name' => 'navigation',
  684. 'link_path' => 'node/add/materiau',
  685. 'router_path' => 'node/add/materiau',
  686. 'link_title' => 'Materiau',
  687. 'options' => array(
  688. 'identifier' => 'navigation_materiau:node/add/materiau',
  689. ),
  690. 'module' => 'system',
  691. 'hidden' => 0,
  692. 'external' => 0,
  693. 'has_children' => 0,
  694. 'expanded' => 0,
  695. 'weight' => -49,
  696. 'customized' => 1,
  697. 'language' => 'und',
  698. 'menu_links_customized' => 1,
  699. 'parent_identifier' => 'navigation_add-content:node/add',
  700. );
  701. // Exported menu link: navigation_materio-newsletter:node/add/simplenews/6274.
  702. $menu_links['navigation_materio-newsletter:node/add/simplenews/6274'] = array(
  703. 'menu_name' => 'navigation',
  704. 'link_path' => 'node/add/simplenews/6274',
  705. 'router_path' => 'node/add/simplenews/6274',
  706. 'link_title' => 'materiO’ newsletter',
  707. 'options' => array(
  708. 'identifier' => 'navigation_materio-newsletter:node/add/simplenews/6274',
  709. ),
  710. 'module' => 'system',
  711. 'hidden' => 0,
  712. 'external' => 0,
  713. 'has_children' => 0,
  714. 'expanded' => 0,
  715. 'weight' => -47,
  716. 'customized' => 1,
  717. 'language' => 'und',
  718. 'menu_links_customized' => 1,
  719. 'parent_identifier' => 'navigation_simplenews-newsletter:node/add/simplenews',
  720. );
  721. // Exported menu link: navigation_members:admin/users/members.
  722. $menu_links['navigation_members:admin/users/members'] = array(
  723. 'menu_name' => 'navigation',
  724. 'link_path' => 'admin/users/members',
  725. 'router_path' => 'admin/users/members',
  726. 'link_title' => 'Members',
  727. 'options' => array(
  728. 'identifier' => 'navigation_members:admin/users/members',
  729. ),
  730. 'module' => 'system',
  731. 'hidden' => 1,
  732. 'external' => 0,
  733. 'has_children' => 0,
  734. 'expanded' => 0,
  735. 'weight' => -41,
  736. 'customized' => 1,
  737. 'language' => 'und',
  738. 'menu_links_customized' => 1,
  739. 'parent_identifier' => 'navigation_users:admin/users',
  740. );
  741. // Exported menu link: navigation_menus:admin/config/regional/translate/table/menu.
  742. $menu_links['navigation_menus:admin/config/regional/translate/table/menu'] = array(
  743. 'menu_name' => 'navigation',
  744. 'link_path' => 'admin/config/regional/translate/table/menu',
  745. 'router_path' => 'admin/config/regional/translate/table/menu',
  746. 'link_title' => 'Menus',
  747. 'options' => array(
  748. 'attributes' => array(),
  749. 'identifier' => 'navigation_menus:admin/config/regional/translate/table/menu',
  750. ),
  751. 'module' => 'menu',
  752. 'hidden' => 0,
  753. 'external' => 0,
  754. 'has_children' => 0,
  755. 'expanded' => 0,
  756. 'weight' => -47,
  757. 'customized' => 1,
  758. 'language' => 'und',
  759. 'menu_links_customized' => 1,
  760. 'parent_identifier' => 'navigation_translation:admin/config/regional/translate/translate',
  761. );
  762. // Exported menu link: navigation_merge-duplicates:admin/structure/taxonomy/tag_libres/merge/duplicates.
  763. $menu_links['navigation_merge-duplicates:admin/structure/taxonomy/tag_libres/merge/duplicates'] = array(
  764. 'menu_name' => 'navigation',
  765. 'link_path' => 'admin/structure/taxonomy/tag_libres/merge/duplicates',
  766. 'router_path' => 'admin/structure/taxonomy/%/merge/duplicates',
  767. 'link_title' => 'Merge Duplicates',
  768. 'options' => array(
  769. 'attributes' => array(),
  770. 'item_attributes' => array(
  771. 'id' => '',
  772. 'class' => '',
  773. 'style' => '',
  774. ),
  775. 'identifier' => 'navigation_merge-duplicates:admin/structure/taxonomy/tag_libres/merge/duplicates',
  776. ),
  777. 'module' => 'menu',
  778. 'hidden' => 0,
  779. 'external' => 0,
  780. 'has_children' => 0,
  781. 'expanded' => 0,
  782. 'weight' => -48,
  783. 'customized' => 1,
  784. 'language' => 'und',
  785. 'menu_links_customized' => 1,
  786. 'parent_identifier' => 'navigation_taxonomy:admin/structure/taxonomie/admin-taxo',
  787. );
  788. // Exported menu link: navigation_my-sessions:mysessions.
  789. $menu_links['navigation_my-sessions:mysessions'] = array(
  790. 'menu_name' => 'navigation',
  791. 'link_path' => 'mysessions',
  792. 'router_path' => 'mysessions',
  793. 'link_title' => 'My sessions',
  794. 'options' => array(
  795. 'identifier' => 'navigation_my-sessions:mysessions',
  796. ),
  797. 'module' => 'system',
  798. 'hidden' => 1,
  799. 'external' => 0,
  800. 'has_children' => 0,
  801. 'expanded' => 0,
  802. 'weight' => -40,
  803. 'customized' => 1,
  804. 'language' => 'und',
  805. 'menu_links_customized' => 1,
  806. );
  807. // Exported menu link: navigation_newletters:admin/content/simplenews.
  808. $menu_links['navigation_newletters:admin/content/simplenews'] = array(
  809. 'menu_name' => 'navigation',
  810. 'link_path' => 'admin/content/simplenews',
  811. 'router_path' => 'admin/content/simplenews',
  812. 'link_title' => 'Newletters',
  813. 'options' => array(
  814. 'attributes' => array(),
  815. 'identifier' => 'navigation_newletters:admin/content/simplenews',
  816. ),
  817. 'module' => 'menu',
  818. 'hidden' => 0,
  819. 'external' => 0,
  820. 'has_children' => 0,
  821. 'expanded' => 0,
  822. 'weight' => -46,
  823. 'customized' => 1,
  824. 'language' => 'und',
  825. 'menu_links_customized' => 1,
  826. 'parent_identifier' => 'navigation_content:admin/content/materiaux',
  827. );
  828. // Exported menu link: navigation_node-export-import:node/add/node_export.
  829. $menu_links['navigation_node-export-import:node/add/node_export'] = array(
  830. 'menu_name' => 'navigation',
  831. 'link_path' => 'node/add/node_export',
  832. 'router_path' => 'node/add/node_export',
  833. 'link_title' => 'Node export: import',
  834. 'options' => array(
  835. 'attributes' => array(
  836. 'title' => 'Import content using <em>Node export</em>.',
  837. ),
  838. 'identifier' => 'navigation_node-export-import:node/add/node_export',
  839. ),
  840. 'module' => 'system',
  841. 'hidden' => 0,
  842. 'external' => 0,
  843. 'has_children' => 0,
  844. 'expanded' => 0,
  845. 'weight' => -38,
  846. 'customized' => 1,
  847. 'language' => 'und',
  848. 'menu_links_customized' => 1,
  849. );
  850. // Exported menu link: navigation_onthologie:admin/structure/taxonomy/onthologie.
  851. $menu_links['navigation_onthologie:admin/structure/taxonomy/onthologie'] = array(
  852. 'menu_name' => 'navigation',
  853. 'link_path' => 'admin/structure/taxonomy/onthologie',
  854. 'router_path' => 'admin/structure/taxonomy/%',
  855. 'link_title' => 'Onthologie',
  856. 'options' => array(
  857. 'attributes' => array(),
  858. 'item_attributes' => array(
  859. 'id' => '',
  860. 'class' => '',
  861. 'style' => '',
  862. ),
  863. 'identifier' => 'navigation_onthologie:admin/structure/taxonomy/onthologie',
  864. ),
  865. 'module' => 'menu',
  866. 'hidden' => 0,
  867. 'external' => 0,
  868. 'has_children' => 0,
  869. 'expanded' => 0,
  870. 'weight' => -50,
  871. 'customized' => 1,
  872. 'language' => 'und',
  873. 'menu_links_customized' => 1,
  874. 'parent_identifier' => 'navigation_taxonomy:admin/structure/taxonomie/admin-taxo',
  875. );
  876. // Exported menu link: navigation_onthologie:admin/structure/taxonomy_manager/voc/onthologie.
  877. $menu_links['navigation_onthologie:admin/structure/taxonomy_manager/voc/onthologie'] = array(
  878. 'menu_name' => 'navigation',
  879. 'link_path' => 'admin/structure/taxonomy_manager/voc/onthologie',
  880. 'router_path' => 'admin/structure',
  881. 'link_title' => 'Onthologie',
  882. 'options' => array(
  883. 'attributes' => array(),
  884. 'identifier' => 'navigation_onthologie:admin/structure/taxonomy_manager/voc/onthologie',
  885. ),
  886. 'module' => 'menu',
  887. 'hidden' => 1,
  888. 'external' => 0,
  889. 'has_children' => 0,
  890. 'expanded' => 0,
  891. 'weight' => 0,
  892. 'customized' => 1,
  893. 'language' => 'und',
  894. 'menu_links_customized' => 1,
  895. 'parent_identifier' => 'navigation_taxonomy-manager:admin/structure/taxonomy_manager/voc',
  896. );
  897. // Exported menu link: navigation_orders:admin/store/orders/view.
  898. $menu_links['navigation_orders:admin/store/orders/view'] = array(
  899. 'menu_name' => 'navigation',
  900. 'link_path' => 'admin/store/orders/view',
  901. 'router_path' => 'admin/store/orders/view',
  902. 'link_title' => 'Orders',
  903. 'options' => array(
  904. 'attributes' => array(),
  905. 'identifier' => 'navigation_orders:admin/store/orders/view',
  906. ),
  907. 'module' => 'menu',
  908. 'hidden' => 0,
  909. 'external' => 0,
  910. 'has_children' => 0,
  911. 'expanded' => 0,
  912. 'weight' => -50,
  913. 'customized' => 1,
  914. 'language' => 'und',
  915. 'menu_links_customized' => 1,
  916. 'parent_identifier' => 'navigation_store:admin/store',
  917. );
  918. // Exported menu link: navigation_page:node/add/page.
  919. $menu_links['navigation_page:node/add/page'] = array(
  920. 'menu_name' => 'navigation',
  921. 'link_path' => 'node/add/page',
  922. 'router_path' => 'node/add/page',
  923. 'link_title' => 'Page',
  924. 'options' => array(
  925. 'attributes' => array(
  926. 'title' => 'Use this content type to add static pages like "about" "contact" etc',
  927. ),
  928. 'identifier' => 'navigation_page:node/add/page',
  929. ),
  930. 'module' => 'system',
  931. 'hidden' => 0,
  932. 'external' => 0,
  933. 'has_children' => 0,
  934. 'expanded' => 0,
  935. 'weight' => -46,
  936. 'customized' => 1,
  937. 'language' => 'und',
  938. 'menu_links_customized' => 1,
  939. 'parent_identifier' => 'navigation_add-content:node/add',
  940. );
  941. // Exported menu link: navigation_pages--didactique--faq:admin/content/pages.
  942. $menu_links['navigation_pages--didactique--faq:admin/content/pages'] = array(
  943. 'menu_name' => 'navigation',
  944. 'link_path' => 'admin/content/pages',
  945. 'router_path' => 'admin/content/pages',
  946. 'link_title' => 'Pages / didactique / faq',
  947. 'options' => array(
  948. 'attributes' => array(),
  949. 'identifier' => 'navigation_pages--didactique--faq:admin/content/pages',
  950. ),
  951. 'module' => 'menu',
  952. 'hidden' => 0,
  953. 'external' => 0,
  954. 'has_children' => 0,
  955. 'expanded' => 0,
  956. 'weight' => -47,
  957. 'customized' => 1,
  958. 'language' => 'und',
  959. 'menu_links_customized' => 1,
  960. 'parent_identifier' => 'navigation_content:admin/content/materiaux',
  961. );
  962. // Exported menu link: navigation_panneau:node/add/panel.
  963. $menu_links['navigation_panneau:node/add/panel'] = array(
  964. 'menu_name' => 'navigation',
  965. 'link_path' => 'node/add/panel',
  966. 'router_path' => 'node/add/panel',
  967. 'link_title' => 'Panneau',
  968. 'options' => array(
  969. 'attributes' => array(
  970. 'title' => 'Une mise en forme de panel divisée en lignes et colonnes.',
  971. ),
  972. 'identifier' => 'navigation_panneau:node/add/panel',
  973. ),
  974. 'module' => 'system',
  975. 'hidden' => 0,
  976. 'external' => 0,
  977. 'has_children' => 0,
  978. 'expanded' => 0,
  979. 'weight' => -35,
  980. 'customized' => 1,
  981. 'language' => 'und',
  982. 'menu_links_customized' => 1,
  983. );
  984. // Exported menu link: navigation_produit:node/add/product.
  985. $menu_links['navigation_produit:node/add/product'] = array(
  986. 'menu_name' => 'navigation',
  987. 'link_path' => 'node/add/product',
  988. 'router_path' => 'node/add/product',
  989. 'link_title' => 'Produit',
  990. 'options' => array(
  991. 'attributes' => array(
  992. 'title' => 'Utiliser les <em>produits</em> pour représenter les articles en vente sur le site web, incluant toute l\'information unique qui peut être attribuée à un numéro de modèle spécifique.',
  993. ),
  994. 'identifier' => 'navigation_produit:node/add/product',
  995. ),
  996. 'module' => 'system',
  997. 'hidden' => 0,
  998. 'external' => 0,
  999. 'has_children' => 0,
  1000. 'expanded' => 0,
  1001. 'weight' => -39,
  1002. 'customized' => 1,
  1003. 'language' => 'und',
  1004. 'menu_links_customized' => 1,
  1005. 'parent_identifier' => 'navigation_add-content:node/add',
  1006. );
  1007. // Exported menu link: navigation_publication:node/add/publication.
  1008. $menu_links['navigation_publication:node/add/publication'] = array(
  1009. 'menu_name' => 'navigation',
  1010. 'link_path' => 'node/add/publication',
  1011. 'router_path' => 'node/add/publication',
  1012. 'link_title' => 'Publication',
  1013. 'options' => array(
  1014. 'identifier' => 'navigation_publication:node/add/publication',
  1015. ),
  1016. 'module' => 'system',
  1017. 'hidden' => 0,
  1018. 'external' => 0,
  1019. 'has_children' => 0,
  1020. 'expanded' => 0,
  1021. 'weight' => -45,
  1022. 'customized' => 1,
  1023. 'language' => 'und',
  1024. 'menu_links_customized' => 1,
  1025. 'parent_identifier' => 'navigation_add-content:node/add',
  1026. );
  1027. // Exported menu link: navigation_reports:admin/store/reports.
  1028. $menu_links['navigation_reports:admin/store/reports'] = array(
  1029. 'menu_name' => 'navigation',
  1030. 'link_path' => 'admin/store/reports',
  1031. 'router_path' => 'admin/store/reports',
  1032. 'link_title' => 'Reports',
  1033. 'options' => array(
  1034. 'attributes' => array(),
  1035. 'identifier' => 'navigation_reports:admin/store/reports',
  1036. ),
  1037. 'module' => 'menu',
  1038. 'hidden' => 0,
  1039. 'external' => 0,
  1040. 'has_children' => 0,
  1041. 'expanded' => 0,
  1042. 'weight' => -47,
  1043. 'customized' => 1,
  1044. 'language' => 'und',
  1045. 'menu_links_customized' => 1,
  1046. 'parent_identifier' => 'navigation_store:admin/store',
  1047. );
  1048. // Exported menu link: navigation_shopping-cart:cart.
  1049. $menu_links['navigation_shopping-cart:cart'] = array(
  1050. 'menu_name' => 'navigation',
  1051. 'link_path' => 'cart',
  1052. 'router_path' => 'cart',
  1053. 'link_title' => 'Shopping cart',
  1054. 'options' => array(
  1055. 'attributes' => array(
  1056. 'title' => 'View/modify the contents of your shopping cart or proceed to checkout.',
  1057. ),
  1058. 'identifier' => 'navigation_shopping-cart:cart',
  1059. ),
  1060. 'module' => 'system',
  1061. 'hidden' => 1,
  1062. 'external' => 0,
  1063. 'has_children' => 0,
  1064. 'expanded' => 0,
  1065. 'weight' => -37,
  1066. 'customized' => 1,
  1067. 'language' => 'und',
  1068. 'menu_links_customized' => 1,
  1069. );
  1070. // Exported menu link: navigation_showroom:node/add/showroom.
  1071. $menu_links['navigation_showroom:node/add/showroom'] = array(
  1072. 'menu_name' => 'navigation',
  1073. 'link_path' => 'node/add/showroom',
  1074. 'router_path' => 'node/add/showroom',
  1075. 'link_title' => 'Showroom',
  1076. 'options' => array(
  1077. 'identifier' => 'navigation_showroom:node/add/showroom',
  1078. ),
  1079. 'module' => 'system',
  1080. 'hidden' => 0,
  1081. 'external' => 0,
  1082. 'has_children' => 0,
  1083. 'expanded' => 0,
  1084. 'weight' => -44,
  1085. 'customized' => 1,
  1086. 'language' => 'und',
  1087. 'menu_links_customized' => 1,
  1088. 'parent_identifier' => 'navigation_add-content:node/add',
  1089. );
  1090. // Exported menu link: navigation_showrooms:admin/content/showrooms.
  1091. $menu_links['navigation_showrooms:admin/content/showrooms'] = array(
  1092. 'menu_name' => 'navigation',
  1093. 'link_path' => 'admin/content/showrooms',
  1094. 'router_path' => 'admin/content/showrooms',
  1095. 'link_title' => 'Showrooms',
  1096. 'options' => array(
  1097. 'attributes' => array(),
  1098. 'item_attributes' => array(
  1099. 'id' => '',
  1100. 'class' => '',
  1101. 'style' => '',
  1102. ),
  1103. 'identifier' => 'navigation_showrooms:admin/content/showrooms',
  1104. ),
  1105. 'module' => 'menu',
  1106. 'hidden' => 0,
  1107. 'external' => 0,
  1108. 'has_children' => 0,
  1109. 'expanded' => 1,
  1110. 'weight' => -49,
  1111. 'customized' => 1,
  1112. 'language' => 'und',
  1113. 'menu_links_customized' => 1,
  1114. 'parent_identifier' => 'navigation_content:admin/content/materiaux',
  1115. );
  1116. // Exported menu link: navigation_simplenews-newsletter:node/add/simplenews.
  1117. $menu_links['navigation_simplenews-newsletter:node/add/simplenews'] = array(
  1118. 'menu_name' => 'navigation',
  1119. 'link_path' => 'node/add/simplenews',
  1120. 'router_path' => 'node/add/simplenews',
  1121. 'link_title' => 'Simplenews newsletter',
  1122. 'options' => array(
  1123. 'attributes' => array(
  1124. 'title' => 'A newsletter issue to be sent to subscribed email addresses.',
  1125. ),
  1126. 'identifier' => 'navigation_simplenews-newsletter:node/add/simplenews',
  1127. ),
  1128. 'module' => 'system',
  1129. 'hidden' => 0,
  1130. 'external' => 0,
  1131. 'has_children' => 1,
  1132. 'expanded' => 0,
  1133. 'weight' => -47,
  1134. 'customized' => 1,
  1135. 'language' => 'und',
  1136. 'menu_links_customized' => 1,
  1137. 'parent_identifier' => 'navigation_add-content:node/add',
  1138. );
  1139. // Exported menu link: navigation_spambot:admin/config/system/spambot.
  1140. $menu_links['navigation_spambot:admin/config/system/spambot'] = array(
  1141. 'menu_name' => 'navigation',
  1142. 'link_path' => 'admin/config/system/spambot',
  1143. 'router_path' => 'admin/config/system/spambot',
  1144. 'link_title' => 'SpamBot',
  1145. 'options' => array(
  1146. 'attributes' => array(),
  1147. 'item_attributes' => array(
  1148. 'id' => '',
  1149. 'class' => '',
  1150. 'style' => '',
  1151. ),
  1152. 'identifier' => 'navigation_spambot:admin/config/system/spambot',
  1153. ),
  1154. 'module' => 'menu',
  1155. 'hidden' => 0,
  1156. 'external' => 0,
  1157. 'has_children' => 0,
  1158. 'expanded' => 0,
  1159. 'weight' => -42,
  1160. 'customized' => 1,
  1161. 'language' => 'und',
  1162. 'menu_links_customized' => 1,
  1163. 'parent_identifier' => 'navigation_users:admin/users',
  1164. );
  1165. // Exported menu link: navigation_store:admin/store.
  1166. $menu_links['navigation_store:admin/store'] = array(
  1167. 'menu_name' => 'navigation',
  1168. 'link_path' => 'admin/store',
  1169. 'router_path' => 'admin/store',
  1170. 'link_title' => 'Store',
  1171. 'options' => array(
  1172. 'identifier' => 'navigation_store:admin/store',
  1173. 'attributes' => array(),
  1174. 'item_attributes' => array(
  1175. 'id' => '',
  1176. 'class' => '',
  1177. 'style' => '',
  1178. ),
  1179. ),
  1180. 'module' => 'menu',
  1181. 'hidden' => 0,
  1182. 'external' => 0,
  1183. 'has_children' => 1,
  1184. 'expanded' => 0,
  1185. 'weight' => -45,
  1186. 'customized' => 1,
  1187. 'language' => 'und',
  1188. 'menu_links_customized' => 1,
  1189. );
  1190. // Exported menu link: navigation_strings-search:admin/config/regional/translate/translate.
  1191. $menu_links['navigation_strings-search:admin/config/regional/translate/translate'] = array(
  1192. 'menu_name' => 'navigation',
  1193. 'link_path' => 'admin/config/regional/translate/translate',
  1194. 'router_path' => 'admin/config/regional/translate/translate',
  1195. 'link_title' => 'Strings search',
  1196. 'options' => array(
  1197. 'attributes' => array(),
  1198. 'identifier' => 'navigation_strings-search:admin/config/regional/translate/translate',
  1199. ),
  1200. 'module' => 'menu',
  1201. 'hidden' => 0,
  1202. 'external' => 0,
  1203. 'has_children' => 0,
  1204. 'expanded' => 0,
  1205. 'weight' => -50,
  1206. 'customized' => 1,
  1207. 'language' => 'und',
  1208. 'menu_links_customized' => 1,
  1209. 'parent_identifier' => 'navigation_translation:admin/config/regional/translate/translate',
  1210. );
  1211. // Exported menu link: navigation_students:admin/students.
  1212. $menu_links['navigation_students:admin/students'] = array(
  1213. 'menu_name' => 'navigation',
  1214. 'link_path' => 'admin/students',
  1215. 'router_path' => 'admin',
  1216. 'link_title' => 'Students',
  1217. 'options' => array(
  1218. 'identifier' => 'navigation_students:admin/students',
  1219. ),
  1220. 'module' => 'system',
  1221. 'hidden' => 1,
  1222. 'external' => 0,
  1223. 'has_children' => 0,
  1224. 'expanded' => 0,
  1225. 'weight' => -38,
  1226. 'customized' => 1,
  1227. 'language' => 'und',
  1228. 'menu_links_customized' => 1,
  1229. 'parent_identifier' => 'navigation_users:admin/users',
  1230. );
  1231. // Exported menu link: navigation_students:admin/users/students.
  1232. $menu_links['navigation_students:admin/users/students'] = array(
  1233. 'menu_name' => 'navigation',
  1234. 'link_path' => 'admin/users/students',
  1235. 'router_path' => 'admin/users/students',
  1236. 'link_title' => 'Students',
  1237. 'options' => array(
  1238. 'identifier' => 'navigation_students:admin/users/students',
  1239. ),
  1240. 'module' => 'system',
  1241. 'hidden' => 1,
  1242. 'external' => 0,
  1243. 'has_children' => 0,
  1244. 'expanded' => 0,
  1245. 'weight' => -40,
  1246. 'customized' => 1,
  1247. 'language' => 'und',
  1248. 'menu_links_customized' => 1,
  1249. 'parent_identifier' => 'navigation_users:admin/users',
  1250. );
  1251. // Exported menu link: navigation_subscriptions-newsletter:admin/people/simplenews.
  1252. $menu_links['navigation_subscriptions-newsletter:admin/people/simplenews'] = array(
  1253. 'menu_name' => 'navigation',
  1254. 'link_path' => 'admin/people/simplenews',
  1255. 'router_path' => 'admin/people/simplenews',
  1256. 'link_title' => 'Subscriptions newsletter',
  1257. 'options' => array(
  1258. 'attributes' => array(),
  1259. 'identifier' => 'navigation_subscriptions-newsletter:admin/people/simplenews',
  1260. ),
  1261. 'module' => 'menu',
  1262. 'hidden' => 0,
  1263. 'external' => 0,
  1264. 'has_children' => 0,
  1265. 'expanded' => 0,
  1266. 'weight' => -46,
  1267. 'customized' => 1,
  1268. 'language' => 'und',
  1269. 'menu_links_customized' => 1,
  1270. 'parent_identifier' => 'navigation_users:admin/users',
  1271. );
  1272. // Exported menu link: navigation_tag-libres:admin/structure/taxonomy/tag_libres.
  1273. $menu_links['navigation_tag-libres:admin/structure/taxonomy/tag_libres'] = array(
  1274. 'menu_name' => 'navigation',
  1275. 'link_path' => 'admin/structure/taxonomy/tag_libres',
  1276. 'router_path' => 'admin/structure/taxonomy/%',
  1277. 'link_title' => 'Tag libres',
  1278. 'options' => array(
  1279. 'attributes' => array(),
  1280. 'item_attributes' => array(
  1281. 'id' => '',
  1282. 'class' => '',
  1283. 'style' => '',
  1284. ),
  1285. 'identifier' => 'navigation_tag-libres:admin/structure/taxonomy/tag_libres',
  1286. ),
  1287. 'module' => 'menu',
  1288. 'hidden' => 0,
  1289. 'external' => 0,
  1290. 'has_children' => 0,
  1291. 'expanded' => 0,
  1292. 'weight' => -49,
  1293. 'customized' => 1,
  1294. 'language' => 'und',
  1295. 'menu_links_customized' => 1,
  1296. 'parent_identifier' => 'navigation_taxonomy:admin/structure/taxonomie/admin-taxo',
  1297. );
  1298. // Exported menu link: navigation_tag-libres:admin/structure/taxonomy_manager/voc/tag_libres.
  1299. $menu_links['navigation_tag-libres:admin/structure/taxonomy_manager/voc/tag_libres'] = array(
  1300. 'menu_name' => 'navigation',
  1301. 'link_path' => 'admin/structure/taxonomy_manager/voc/tag_libres',
  1302. 'router_path' => 'admin/structure',
  1303. 'link_title' => 'Tag Libres',
  1304. 'options' => array(
  1305. 'attributes' => array(),
  1306. 'identifier' => 'navigation_tag-libres:admin/structure/taxonomy_manager/voc/tag_libres',
  1307. ),
  1308. 'module' => 'menu',
  1309. 'hidden' => 1,
  1310. 'external' => 0,
  1311. 'has_children' => 0,
  1312. 'expanded' => 0,
  1313. 'weight' => 8,
  1314. 'customized' => 1,
  1315. 'language' => 'und',
  1316. 'menu_links_customized' => 1,
  1317. 'parent_identifier' => 'navigation_taxonomy-manager:admin/structure/taxonomy_manager/voc',
  1318. );
  1319. // Exported menu link: navigation_taxonomy-manager:admin/structure/taxonomy_manager/voc.
  1320. $menu_links['navigation_taxonomy-manager:admin/structure/taxonomy_manager/voc'] = array(
  1321. 'menu_name' => 'navigation',
  1322. 'link_path' => 'admin/structure/taxonomy_manager/voc',
  1323. 'router_path' => 'admin/structure',
  1324. 'link_title' => 'Taxonomy (manager)',
  1325. 'options' => array(
  1326. 'identifier' => 'navigation_taxonomy-manager:admin/structure/taxonomy_manager/voc',
  1327. 'attributes' => array(),
  1328. 'item_attributes' => array(
  1329. 'id' => '',
  1330. 'class' => '',
  1331. 'style' => '',
  1332. ),
  1333. ),
  1334. 'module' => 'menu',
  1335. 'hidden' => 1,
  1336. 'external' => 0,
  1337. 'has_children' => 0,
  1338. 'expanded' => 0,
  1339. 'weight' => -47,
  1340. 'customized' => 1,
  1341. 'language' => 'und',
  1342. 'menu_links_customized' => 1,
  1343. 'parent_identifier' => 'navigation_taxonomy:admin/structure/taxonomie/admin-taxo',
  1344. );
  1345. // Exported menu link: navigation_taxonomy:admin/config/regional/translate/table/taxonomy.
  1346. $menu_links['navigation_taxonomy:admin/config/regional/translate/table/taxonomy'] = array(
  1347. 'menu_name' => 'navigation',
  1348. 'link_path' => 'admin/config/regional/translate/table/taxonomy',
  1349. 'router_path' => 'admin/config/regional/translate/table/taxonomy',
  1350. 'link_title' => 'Taxonomy',
  1351. 'options' => array(
  1352. 'attributes' => array(),
  1353. 'identifier' => 'navigation_taxonomy:admin/config/regional/translate/table/taxonomy',
  1354. ),
  1355. 'module' => 'menu',
  1356. 'hidden' => 1,
  1357. 'external' => 0,
  1358. 'has_children' => 0,
  1359. 'expanded' => 0,
  1360. 'weight' => -46,
  1361. 'customized' => 1,
  1362. 'language' => 'und',
  1363. 'menu_links_customized' => 1,
  1364. 'parent_identifier' => 'navigation_translation:admin/config/regional/translate/translate',
  1365. );
  1366. // Exported menu link: navigation_taxonomy:admin/structure/taxonomie/admin-taxo.
  1367. $menu_links['navigation_taxonomy:admin/structure/taxonomie/admin-taxo'] = array(
  1368. 'menu_name' => 'navigation',
  1369. 'link_path' => 'admin/structure/taxonomie/admin-taxo',
  1370. 'router_path' => 'admin/structure/taxonomie/admin-taxo',
  1371. 'link_title' => 'Taxonomy',
  1372. 'options' => array(
  1373. 'attributes' => array(),
  1374. 'item_attributes' => array(
  1375. 'id' => '',
  1376. 'class' => '',
  1377. 'style' => '',
  1378. ),
  1379. 'identifier' => 'navigation_taxonomy:admin/structure/taxonomie/admin-taxo',
  1380. ),
  1381. 'module' => 'menu',
  1382. 'hidden' => 0,
  1383. 'external' => 0,
  1384. 'has_children' => 1,
  1385. 'expanded' => 1,
  1386. 'weight' => -48,
  1387. 'customized' => 1,
  1388. 'language' => 'und',
  1389. 'menu_links_customized' => 1,
  1390. );
  1391. // Exported menu link: navigation_test:node/add/simplenews/6585.
  1392. $menu_links['navigation_test:node/add/simplenews/6585'] = array(
  1393. 'menu_name' => 'navigation',
  1394. 'link_path' => 'node/add/simplenews/6585',
  1395. 'router_path' => 'node/add/simplenews/6585',
  1396. 'link_title' => 'test',
  1397. 'options' => array(
  1398. 'identifier' => 'navigation_test:node/add/simplenews/6585',
  1399. ),
  1400. 'module' => 'system',
  1401. 'hidden' => 0,
  1402. 'external' => 0,
  1403. 'has_children' => 0,
  1404. 'expanded' => 0,
  1405. 'weight' => -46,
  1406. 'customized' => 1,
  1407. 'language' => 'und',
  1408. 'menu_links_customized' => 1,
  1409. 'parent_identifier' => 'navigation_simplenews-newsletter:node/add/simplenews',
  1410. );
  1411. // Exported menu link: navigation_user-account:user.
  1412. $menu_links['navigation_user-account:user'] = array(
  1413. 'menu_name' => 'navigation',
  1414. 'link_path' => 'user',
  1415. 'router_path' => 'user',
  1416. 'link_title' => 'User account',
  1417. 'options' => array(
  1418. 'alter' => TRUE,
  1419. 'attributes' => array(),
  1420. 'identifier' => 'navigation_user-account:user',
  1421. ),
  1422. 'module' => 'system',
  1423. 'hidden' => 1,
  1424. 'external' => 0,
  1425. 'has_children' => 0,
  1426. 'expanded' => 0,
  1427. 'weight' => -50,
  1428. 'customized' => 1,
  1429. 'language' => 'und',
  1430. 'menu_links_customized' => 1,
  1431. );
  1432. // Exported menu link: navigation_users:admin/users.
  1433. $menu_links['navigation_users:admin/users'] = array(
  1434. 'menu_name' => 'navigation',
  1435. 'link_path' => 'admin/users',
  1436. 'router_path' => 'admin/users',
  1437. 'link_title' => 'Users',
  1438. 'options' => array(
  1439. 'identifier' => 'navigation_users:admin/users',
  1440. 'attributes' => array(),
  1441. 'item_attributes' => array(
  1442. 'id' => '',
  1443. 'class' => '',
  1444. 'style' => '',
  1445. ),
  1446. ),
  1447. 'module' => 'menu',
  1448. 'hidden' => 0,
  1449. 'external' => 0,
  1450. 'has_children' => 1,
  1451. 'expanded' => 1,
  1452. 'weight' => -46,
  1453. 'customized' => 1,
  1454. 'language' => 'und',
  1455. 'menu_links_customized' => 1,
  1456. );
  1457. // Exported menu link: navigation_webform:node/add/webform.
  1458. $menu_links['navigation_webform:node/add/webform'] = array(
  1459. 'menu_name' => 'navigation',
  1460. 'link_path' => 'node/add/webform',
  1461. 'router_path' => 'node/add/webform',
  1462. 'link_title' => 'Webform',
  1463. 'options' => array(
  1464. 'attributes' => array(
  1465. 'title' => 'Create a new form or questionnaire accessible to users. Submission results and statistics are recorded and accessible to privileged users.',
  1466. ),
  1467. 'identifier' => 'navigation_webform:node/add/webform',
  1468. ),
  1469. 'module' => 'system',
  1470. 'hidden' => 0,
  1471. 'external' => 0,
  1472. 'has_children' => 0,
  1473. 'expanded' => 0,
  1474. 'weight' => -40,
  1475. 'customized' => 1,
  1476. 'language' => 'und',
  1477. 'menu_links_customized' => 1,
  1478. 'parent_identifier' => 'navigation_add-content:node/add',
  1479. );
  1480. // Exported menu link: navigation_ze-daily-materio039:node/add/simplenews/6374.
  1481. $menu_links['navigation_ze-daily-materio039:node/add/simplenews/6374'] = array(
  1482. 'menu_name' => 'navigation',
  1483. 'link_path' => 'node/add/simplenews/6374',
  1484. 'router_path' => 'node/add/simplenews/6374',
  1485. 'link_title' => 'Ze Daily materiO&#039;',
  1486. 'options' => array(
  1487. 'identifier' => 'navigation_ze-daily-materio039:node/add/simplenews/6374',
  1488. ),
  1489. 'module' => 'system',
  1490. 'hidden' => 0,
  1491. 'external' => 0,
  1492. 'has_children' => 0,
  1493. 'expanded' => 0,
  1494. 'weight' => -48,
  1495. 'customized' => 1,
  1496. 'language' => 'und',
  1497. 'menu_links_customized' => 1,
  1498. 'parent_identifier' => 'navigation_simplenews-newsletter:node/add/simplenews',
  1499. );
  1500. // Translatables
  1501. // Included for use with string extractors like potx.
  1502. t('Add content');
  1503. t('Add user');
  1504. t('Adhésions');
  1505. t('Ajouter un tag libre');
  1506. t('Breve');
  1507. t('Companies');
  1508. t('Company');
  1509. t('Compose tips');
  1510. t('Content types');
  1511. t('Didactique');
  1512. t('Duplicate mails');
  1513. t('Duplicates');
  1514. t('FAQ');
  1515. t('Feedback');
  1516. t('Fields');
  1517. t('Formulaires d\'adhésion');
  1518. t('Frequently Asked Questions');
  1519. t('Gratuits');
  1520. t('IP address tracking');
  1521. t('Industriels');
  1522. t('Industriels-lite');
  1523. t('Mandrill');
  1524. t('Materiau');
  1525. t('Members');
  1526. t('Menus');
  1527. t('Merge Duplicates');
  1528. t('My sessions');
  1529. t('Newletters');
  1530. t('Node export: import');
  1531. t('Onthologie');
  1532. t('Orders');
  1533. t('Page');
  1534. t('Pages / didactique / faq');
  1535. t('Panneau');
  1536. t('Produit');
  1537. t('Publication');
  1538. t('Reports');
  1539. t('Shopping cart');
  1540. t('Showroom');
  1541. t('Showrooms');
  1542. t('Simplenews newsletter');
  1543. t('SpamBot');
  1544. t('Store');
  1545. t('Strings search');
  1546. t('Students');
  1547. t('Subscriptions newsletter');
  1548. t('Tag Libres');
  1549. t('Tag libres');
  1550. t('Taxonomy');
  1551. t('Taxonomy (manager)');
  1552. t('User account');
  1553. t('Users');
  1554. t('Webform');
  1555. t('Ze Daily materiO&#039;');
  1556. t('customers');
  1557. t('looping embed video');
  1558. t('materiO’ newsletter');
  1559. t('test');
  1560. return $menu_links;
  1561. }