fgcf.features.inc 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. );
  38. return $items;
  39. }
  40. /**
  41. * Implementation of hook_node_info().
  42. */
  43. function fgcf_node_info() {
  44. $items = array(
  45. 'fgcf_fiche' => array(
  46. 'name' => t('FG: Fiche de formation'),
  47. 'module' => 'features',
  48. 'description' => t('Une fiche de formation décrit de manière structurée une formation proposée au personnel France Galop'),
  49. 'has_title' => '1',
  50. 'title_label' => t('Titre'),
  51. 'has_body' => '0',
  52. 'body_label' => '',
  53. 'min_word_count' => '0',
  54. 'help' => '',
  55. ),
  56. 'fgcf_prestataire' => array(
  57. 'name' => t('FG: Prestataire de formation'),
  58. 'module' => 'features',
  59. 'description' => t('Un prestataire est une entité proposant des cours au catalogue de France Galop'),
  60. 'has_title' => '1',
  61. 'title_label' => t('Entité'),
  62. 'has_body' => '1',
  63. 'body_label' => t('Description'),
  64. 'min_word_count' => '0',
  65. 'help' => '',
  66. ),
  67. 'fgcf_thematique' => array(
  68. 'name' => t('FG Thématique de formation'),
  69. 'module' => 'features',
  70. 'description' => t('Thématique de formation, correspondant à un terme de premier niveau du vocabulaire des thématiques.'),
  71. 'has_title' => '1',
  72. 'title_label' => t('Titre'),
  73. 'has_body' => '1',
  74. 'body_label' => t('Description'),
  75. 'min_word_count' => '0',
  76. 'help' => '',
  77. ),
  78. );
  79. return $items;
  80. }