farmOS/modules/farm/farm_livestock/farm_livestock.features.inc

66 lines
1.5 KiB
PHP

<?php
/**
* @file
* farm_livestock.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function farm_livestock_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "field_group" && $api == "field_group") {
return array("version" => "1");
}
if ($module == "strongarm" && $api == "strongarm") {
return array("version" => "1");
}
}
/**
* Implements hook_views_api().
*/
function farm_livestock_views_api($module = NULL, $api = NULL) {
return array("api" => "3.0");
}
/**
* Implements hook_default_farm_asset_type().
*/
function farm_livestock_default_farm_asset_type() {
$items = array();
$items['animal'] = entity_import('farm_asset_type', '{
"type" : "animal",
"label" : "Animal",
"weight" : 0,
"inventory" : { "enabled" : "1", "individual" : "1" },
"rdf_mapping" : []
}');
return $items;
}
/**
* Implements hook_default_log_type().
*/
function farm_livestock_default_log_type() {
$items = array();
$items['farm_birth'] = entity_import('log_type', '{
"type" : "farm_birth",
"label" : "Birth",
"weight" : 0,
"name_pattern" : "Birth: [log:field-farm-asset]",
"name_edit" : "0",
"done" : "1",
"rdf_mapping" : []
}');
$items['farm_medical'] = entity_import('log_type', '{
"type" : "farm_medical",
"label" : "Medical",
"weight" : 0,
"name_pattern" : "Medical [log:timestamp:short] [log:field-farm-asset]",
"name_edit" : "1",
"done" : "1",
"rdf_mapping" : []
}');
return $items;
}