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_log/farm_log.module

319 lines
9.2 KiB
Plaintext
Raw Normal View History

<?php
/**
* @file
* Code for the Farm Log feature.
*/
// Include Features code.
include_once 'farm_log.features.inc';
/**
* Implements hook_form_alter().
*/
function farm_log_form_alter(&$form, &$form_state, $form_id) {
// If this is a log form...
if ($form_id == 'log_form') {
2017-06-12 21:58:57 +02:00
// If there is an asset(s) reference field, try to prepopulate it.
if (!empty($form['field_farm_asset'])) {
farm_log_form_prepopulate_asset($form);
}
2017-06-12 21:58:57 +02:00
// If there is an area(s) reference field, try to prepopulate it.
if (!empty($form['field_farm_area'])) {
farm_log_form_prepopulate_area($form);
}
// If there is an owner reference field, try to prepopulate it.
if (!empty($form['field_farm_log_owner'])) {
farm_log_form_prepopulate_owner($form);
}
}
}
/**
* Implements hook_entity_presave().
*/
function farm_log_entity_presave($entity, $type) {
// When a log entity is being saved, populate the geometry field from areas.
if ($type == 'log') {
farm_log_populate_geometry($entity);
}
}
/**
* Helper function for creating log categories. Terms will only be added if
* they don't already exist.
*
* @param array $categories
* An array of strings that will be added as terms to the Farm Log Categories
* vocabulary.
*/
function farm_log_categories_create($categories) {
// If the categories is not an array, bail.
if (!is_array($categories)) {
return;
}
// Define the vocabulary machine name.
$vocabulary_machine_name = 'farm_log_categories';
// Load the vocabulary.
$vocabulary = taxonomy_vocabulary_machine_name_load($vocabulary_machine_name);
// If the vocabulary doesn't exist, bail.
if (empty($vocabulary->vid)) {
return;
}
// Iterate through the categories.
foreach ($categories as $category) {
// First, check to see if the term already exists. If it does, skip it.
$terms = taxonomy_get_term_by_name($category, $vocabulary_machine_name);
if (!empty($terms)) {
continue;
}
// Translate the category name.
$term_name = t($category);
// Create the new term.
$term = new stdClass();
$term->name = $term_name;
$term->vid = $vocabulary->vid;
taxonomy_term_save($term);
}
// Always reset the categories to alphabetical order.
/**
* @see taxonomy_vocabulary_confirm_reset_alphabetical_submit()
*/
db_update('taxonomy_term_data')
->fields(array('weight' => 0))
->condition('vid', $vocabulary->vid)
->execute();
}
/**
* Create log categories on behalf of all modules that provide them.
*/
function farm_log_categories_create_all() {
$categories = module_invoke_all('farm_log_categories');
if (!empty($categories)) {
farm_log_categories_create($categories);
}
}
/**
* Helper function for populating a log's geometry from an area reference field.
*
* @param Entity $entity
* The entity to act upon.
*
* @see farm_log_entity_movement_presave().
*/
function farm_log_populate_geometry($entity) {
// Define the area field name.
$area_field = 'field_farm_area';
// If the log doesn't have an area reference field, bail.
if (!isset($entity->{$area_field})) {
return;
}
// If a geometry is already defined, bail.
if (!empty($entity->field_farm_geofield[LANGUAGE_NONE][0]['geom'])) {
return;
}
2016-06-10 16:26:16 +02:00
// Load the area(s) referenced by the area reference field.
$area_ids = array();
if (!empty($entity->{$area_field}[LANGUAGE_NONE])) {
foreach ($entity->{$area_field}[LANGUAGE_NONE] as $area_reference) {
if (!empty($area_reference['tid'])) {
$area_ids[] = $area_reference['tid'];
}
}
}
// Extract geometries from the areas.
$geoms = farm_area_extract_geoms($area_ids);
// Populate the geofield.
farm_map_geofield_populate($entity, $geoms);
}
/**
* Helper function for enabling asset prepopulation in log forms.
*
2015-04-13 22:49:57 +02:00
* @param array $form
* The form array to modify, passed by reference.
*/
function farm_log_form_prepopulate_asset(&$form) {
// Load assets from the ?farm_asset query parameter.
$assets = farm_asset_load_assets_from_url();
// If there are no assets, bail.
if (empty($assets)) {
return;
}
// Load the field instance definition.
$entity_type = $form['#entity_type'];
$bundle = $form['#bundle'];
$field_instance = field_info_instance($entity_type, 'field_farm_asset', $bundle);
// If the widget type is "radios/checkboxes" or "select list"...
if (in_array($field_instance['widget']['type'], array('options_buttons', 'options_select'))) {
// Build a list of asset ID.
$asset_ids = array();
foreach ($assets as $asset) {
$asset_ids[] = $asset->id;
}
// Use the array of asset IDs as the field's default value.
if (empty($form['field_farm_asset'][LANGUAGE_NONE]['#default_value'])) {
$form['field_farm_asset'][LANGUAGE_NONE]['#default_value'] = $asset_ids;
}
}
// If the widget type is "autocomplete" or "autocomplete tags"...
elseif (in_array($field_instance['widget']['type'], array('entityreference_autocomplete', 'entityreference_autocomplete_tags'))) {
// Build a list of asset labels in the format that the widget expects.
$asset_labels = array();
foreach ($assets as $asset) {
$asset_labels[] = entity_label('farm_asset', $asset) . ' (' . $asset->id . ')';
}
// For "autocomplete", add each one as a separate field.
if ($field_instance['widget']['type'] == 'entityreference_autocomplete') {
foreach ($asset_labels as $key => $label) {
// If the item isn't empty, skip it.
if (!empty($form['field_farm_asset'][LANGUAGE_NONE][$key]['target_id']['#default_value'])) {
continue;
}
/**
* @todo
* This seems to be the easiest way to autopopulate entityreference_autocomplete
* widgets, but it is MESSY! If anyone can figure out a better way, I will buy
* you a beer.
*/
// Copy the initial array structure from the first element.
$form['field_farm_asset'][LANGUAGE_NONE][$key] = $form['field_farm_asset'][LANGUAGE_NONE][0];
// Set the default, delta, and weight values.
$form['field_farm_asset'][LANGUAGE_NONE][$key]['target_id']['#default_value'] = $label;
$form['field_farm_asset'][LANGUAGE_NONE][$key]['target_id']['#delta'] = $key;
$form['field_farm_asset'][LANGUAGE_NONE][$key]['target_id']['#weight'] = $key;
// Only make the first one required.
if ($key > 0) {
$form['field_farm_asset'][LANGUAGE_NONE][$key]['target_id']['#required'] = 0;
}
$form['field_farm_asset'][LANGUAGE_NONE]['#max_delta'] = $key;
$form['field_farm_asset'][LANGUAGE_NONE][$key]['_weight']['#delta'] = $key;
$form['field_farm_asset'][LANGUAGE_NONE][$key]['_weight']['#default_value'] = $key;
}
}
// For "autocomplete tags", implode them all into one comma-separated list.
elseif ($field_instance['widget']['type'] == 'entityreference_autocomplete_tags') {
if (empty($form['field_farm_asset'][LANGUAGE_NONE]['#default_value'])) {
$form['field_farm_asset'][LANGUAGE_NONE]['#default_value'] = implode(', ', $asset_labels);
}
}
}
// If the widget type is "entity reference view widget"...
elseif ($field_instance['widget']['type'] == 'entityreference_view_widget') {
// Add a set of checkbox form elements, as the entityreference_view_widget
// module expects...
foreach ($assets as $key => $asset) {
// If the item isn't empty, skip it.
if (!empty($form['field_farm_asset'][LANGUAGE_NONE][$key]['target_id'])) {
continue;
}
// Add the checkbox element.
$form['field_farm_asset'][LANGUAGE_NONE][$key]['target_id'] = array(
'#type' => 'checkbox',
'#return_value' => $asset->id,
'#value' => $asset->id,
'#title_display' => 'after',
'#attributes' => array(
'checked' => 'checked',
),
'#title' => entity_label('farm_asset', $asset),
);
}
}
2014-12-01 03:49:46 +01:00
}
/**
* Helper function for enabling area prepopulation in log forms.
*
2015-04-13 22:49:57 +02:00
* @param array $form
2014-12-01 03:49:46 +01:00
* The form array to modify, passed by reference.
*/
function farm_log_form_prepopulate_area(&$form) {
2014-12-01 03:49:46 +01:00
// Alias for the field's default value.
$field_value = &$form['field_farm_area'][LANGUAGE_NONE]['#default_value'];
2014-12-01 03:49:46 +01:00
// If the "farm_area" query parameter is set...
$params = drupal_get_query_parameters();
if (!empty($params['farm_area'])) {
// Verify that the farm_area is valid.
$area = taxonomy_term_load($params['farm_area']);
if ($area) {
// Prepopulate the area reference field.
if (empty($field_value)) {
$field_value = $area->tid;
2014-12-01 03:49:46 +01:00
}
}
}
}
/**
* Helper function for enabling owner prepopulation in log forms.
*
* @param array $form
* The form array to modify, passed by reference.
*/
function farm_log_form_prepopulate_owner(&$form) {
// Alias for the field's default value.
$field_value = &$form['field_farm_log_owner'][LANGUAGE_NONE]['#default_value'];
// Only proceed if the field is empty.
if (!empty($field_value)) {
return;
}
// Load the current authenticated user.
global $user;
// If the user id is empty for whatever reason, bail.
if (empty($user->uid)) {
return;
}
// Add the user's id to the list of log owners.
$field_value = array($user->uid);
}