3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00
farmOS/modules/farm/farm_fields/farm_fields.strongarm.inc
2017-08-22 12:59:09 -04:00

21 lines
544 B
PHP

<?php
/**
* @file
* farm_fields.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function farm_fields_strongarm() {
$export = array();
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'pathauto_taxonomy_term_farm_log_categories_pattern';
$strongarm->value = 'farm/log/category/[term:name]';
$export['pathauto_taxonomy_term_farm_log_categories_pattern'] = $strongarm;
return $export;
}