fgcf.features.inc 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. /**
  3. * Implementation of hook_imagecache_default_presets().
  4. */
  5. function fgcf_imagecache_default_presets() {
  6. $items = array(
  7. 'prestataire_logo_full' => array(
  8. 'presetname' => 'prestataire_logo_full',
  9. 'actions' => array(
  10. '0' => array(
  11. 'weight' => '0',
  12. 'module' => 'imagecache',
  13. 'action' => 'imagecache_scale',
  14. 'data' => array(
  15. 'width' => '200',
  16. 'height' => '200',
  17. 'upscale' => 1,
  18. ),
  19. ),
  20. ),
  21. ),
  22. 'prestataire_logo_liste' => array(
  23. 'presetname' => 'prestataire_logo_liste',
  24. 'actions' => array(
  25. '0' => array(
  26. 'weight' => '0',
  27. 'module' => 'imagecache',
  28. 'action' => 'imagecache_scale',
  29. 'data' => array(
  30. 'width' => '160',
  31. 'height' => '48',
  32. 'upscale' => 1,
  33. ),
  34. ),
  35. ),
  36. ),
  37. 'fgcf_theme_logo_liste' => array (
  38. 'presetname' => 'fgcf_theme_logo_liste',
  39. 'actions' =>
  40. array (
  41. 0 =>
  42. array (
  43. 'weight' => '0',
  44. 'module' => 'imagecache',
  45. 'action' => 'imagecache_scale',
  46. 'data' =>
  47. array (
  48. 'width' => '60',
  49. 'height' => '60',
  50. 'upscale' => 1,
  51. ),
  52. ),
  53. ),
  54. ),
  55. );
  56. return $items;
  57. }
  58. /**
  59. * Implementation of hook_node_info().
  60. */
  61. function fgcf_node_info() {
  62. $items = array(
  63. 'fgcf_fiche' => array(
  64. 'name' => t('FG: Fiche de formation'),
  65. 'module' => 'features',
  66. 'description' => t('Une fiche de formation décrit de manière structurée une formation proposée au personnel France Galop'),
  67. 'has_title' => '1',
  68. 'title_label' => t('Titre'),
  69. 'has_body' => '0',
  70. 'body_label' => '',
  71. 'min_word_count' => '0',
  72. 'help' => '',
  73. ),
  74. 'fgcf_prestataire' => array(
  75. 'name' => t('FG: Prestataire de formation'),
  76. 'module' => 'features',
  77. 'description' => t('Un prestataire est une entité proposant des cours au catalogue de France Galop'),
  78. 'has_title' => '1',
  79. 'title_label' => t('Entité'),
  80. 'has_body' => '1',
  81. 'body_label' => t('Description'),
  82. 'min_word_count' => '0',
  83. 'help' => '',
  84. ),
  85. 'fgcf_thematique' => array(
  86. 'name' => t('FG Thème de formation'),
  87. 'module' => 'features',
  88. 'description' => t('Théme de formation, correspondant à un terme de premier niveau du vocabulaire des thèmes.'),
  89. 'has_title' => '1',
  90. 'title_label' => t('Titre'),
  91. 'has_body' => '1',
  92. 'body_label' => t('Description'),
  93. 'min_word_count' => '0',
  94. 'help' => '',
  95. ),
  96. );
  97. return $items;
  98. }