mirror of
https://github.com/farmOS/farmOS.git
synced 2024-02-23 11:37:38 +01:00
21 lines
529 B
PHP
21 lines
529 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* farm_soil.strongarm.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_strongarm().
|
|
*/
|
|
function farm_soil_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_soil_names_pattern';
|
|
$strongarm->value = 'farm/soil/name/[term:name]';
|
|
$export['pathauto_taxonomy_term_farm_soil_names_pattern'] = $strongarm;
|
|
|
|
return $export;
|
|
}
|