debut_media.features.field.inc 55 KB

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