2016-12-10 18:30:03 +01:00

58 lines
1.1 KiB
PHP

<?php
/**
* @file
* materio_publications.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function materio_publications_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "strongarm" && $api == "strongarm") {
return array("version" => "1");
}
}
/**
* Implements hook_image_default_styles().
*/
function materio_publications_image_default_styles() {
$styles = array();
// Exported image style: publication-couv.
$styles['publication-couv'] = array(
'label' => 'publication-couv',
'effects' => array(
15 => array(
'name' => 'image_scale',
'data' => array(
'width' => 480,
'height' => 480,
'upscale' => 1,
),
'weight' => 1,
),
),
);
return $styles;
}
/**
* Implements hook_node_info().
*/
function materio_publications_node_info() {
$items = array(
'publication' => array(
'name' => t('Publication'),
'base' => 'node_content',
'description' => '',
'has_title' => '1',
'title_label' => t('Titre'),
'help' => '',
),
);
drupal_alter('node_info', $items);
return $items;
}