mirror of
https://github.com/farmOS/farmOS.git
synced 2024-02-23 11:37:38 +01:00
20 lines
379 B
PHP
20 lines
379 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @file
|
||
|
* Farm crop quick forms.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Implements hook_farm_quick_forms().
|
||
|
*/
|
||
|
function farm_crop_farm_quick_forms() {
|
||
|
return array(
|
||
|
'planting' => array(
|
||
|
'label' => t('Planting'),
|
||
|
'permission' => 'create planting farm assets',
|
||
|
'form' => 'farm_crop_planting_quick_form',
|
||
|
'file' => 'farm_crop.farm_quick.planting.inc',
|
||
|
),
|
||
|
);
|
||
|
}
|