value = static::getIncrementedFieldValue(); } /** * Gets an incremented field value. * * @return int * The incremented field value. */ private static function getIncrementedFieldValue() { $current_value = &drupal_static(__METHOD__, 0); return ++$current_value; } }