home | career | drupal | java | mac | mysql | perl | php | scala | uml | unix

Drupal example source code file (list.devel_generate.inc)

This example Drupal source code file (list.devel_generate.inc) is included in the DevDaily.com "Drupal Source Code Warehouse" project. The intent of this project is to help you "Learn Drupal by Example".

PHP - Drupal tags/keywords

_list_devel_generate, allowed_values, array, bundle, else, field, function, if, instance, keys, object, object_field, php, return

The list.devel_generate.inc Drupal example source code

<?php
// Id$

function list_devel_generate($object, $field, $instance, $bundle) {
  if (field_behaviors_widget('multiple values', $instance) == FIELD_BEHAVIOR_CUSTOM) {
    return devel_generate_multiple('_list_devel_generate', $object, $field, $instance, $bundle);
  }
  else {
    return _list_devel_generate($object, $field, $instance, $bundle);
  }
}

function _list_devel_generate($object, $field, $instance, $bundle) {
  $object_field = array();
  if ($allowed_values = list_allowed_values($field)) {
    $keys = array_keys($allowed_values);
    $object_field['value'] = $keys[mt_rand(0, count($allowed_values) - 1)];
  }
  return $object_field;
}

Other Drupal examples (source code examples)

Here is a short list of links related to this Drupal list.devel_generate.inc source code file:

new blog posts

"Drupal" is a registered trademark of Dries Buytaert.

my drupal tutorials and examples  

Copyright 1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.

Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.