$accion_especifica_inserts['field_name'], 'type_name' => $accion_especifica_inserts['type_name'] )); if (count($instances)) { $remove_field = TRUE; // Only add the field if it doesn't exist. Don't overwrite any changes. content_field_instance_delete($accion_especifica_inserts['field_name'], $accion_especifica_inserts['type_name']); drupal_set_message(t("Removed field %typefield in content type %typecontent", array('%typefield' => $accion_especifica_inserts['label'], '%typecontent' => $accion_especifica_inserts['type_name']))); } } } if ($remove_field) { content_clear_type_cache(TRUE); menu_rebuild(); } } /* * _accion_especifica_install_type_create_field * Crear los tipos de contenidos necesarios para el funcionamiento del modulo */ function _accion_especifica_install_type_create_field() { // Load fields. $accion_especifica_fields = _accion_especifica_load_fields(); $create_field = FALSE; if (count($accion_especifica_fields['fields'])) { foreach ($accion_especifica_fields['fields'] as $accion_especifica_inserts) { $instances = content_field_instance_read(array( 'field_name' => $accion_especifica_inserts['field_name'], 'type_name' => $accion_especifica_inserts['type_name'] )); if (count($instances) < 1) { $create_field = TRUE; // Only add the field if it doesn't exist. Don't overwrite any changes. $field_create = content_field_instance_create($accion_especifica_inserts, FALSE); drupal_set_message(t("Saved field %typefield in content type %typecontent", array('%typefield' => $accion_especifica_inserts['label'], '%typecontent' => $accion_especifica_inserts['type_name']))); } } } if ($create_field) { content_clear_type_cache(TRUE); menu_rebuild(); } } /* * _accion_especifica_load_fields * Campos */ function _accion_especifica_load_fields() { $content = array(); $content['fields'] = array(); // accion especifica $content['fields'][] = array ( 'label' => 'Nombre de la Acción Específica', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_titulo', 'type' => 'text', 'widget_type' => 'text_textarea', 'change' => 'Change basic information', 'weight' => '6', 'rows' => '5', 'size' => 60, 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_titulo][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_bien' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_titulo][0][value', ), ), ), 'required' => 1, 'multiple' => '0', 'text_processing' => '0', 'max_length' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'text', 'widget_module' => 'text', 'columns' => array ( 'value' => array ( 'type' => 'text', 'size' => 'big', 'not null' => false, 'sortable' => true, 'views' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Fecha de Inicio', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_fechai', 'type' => 'datetime', 'widget_type' => 'date_popup', 'change' => 'Change basic information', 'weight' => '3', 'default_value' => 'now', 'default_value2' => 'same', 'default_value_code' => '', 'default_value_code2' => '', 'input_format' => 'd/m/Y', 'input_format_custom' => '', 'year_range' => '-4:+1', 'increment' => '1', 'advanced' => array ( 'label_position' => 'above', 'text_parts' => array ( 'year' => 0, 'month' => 0, 'day' => 0, 'hour' => 0, 'minute' => 0, 'second' => 0, ), ), 'label_position' => 'above', 'text_parts' => array ( ), 'description' => '', 'required' => 1, 'multiple' => '0', 'repeat' => 0, 'todate' => '', 'granularity' => array ( 'year' => 'year', 'month' => 'month', 'day' => 'day', ), 'default_format' => 'medium', 'tz_handling' => 'none', 'timezone_db' => '', 'op' => 'Save field settings', 'module' => 'date', 'widget_module' => 'date', 'columns' => array ( 'value' => array ( 'type' => 'datetime', 'not null' => false, 'sortable' => true, 'views' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Fecha de Fin', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_fechaf', 'type' => 'datetime', 'widget_type' => 'date_popup', 'change' => 'Change basic information', 'weight' => '4', 'default_value' => 'now', 'default_value2' => 'same', 'default_value_code' => '', 'default_value_code2' => '', 'input_format' => 'd/m/Y', 'input_format_custom' => '', 'year_range' => '-4:+1', 'increment' => '1', 'advanced' => array ( 'label_position' => 'above', 'text_parts' => array ( 'year' => 0, 'month' => 0, 'day' => 0, 'hour' => 0, 'minute' => 0, 'second' => 0, ), ), 'label_position' => 'above', 'text_parts' => array ( ), 'description' => '', 'required' => 1, 'multiple' => '0', 'repeat' => 0, 'todate' => '', 'granularity' => array ( 'year' => 'year', 'month' => 'month', 'day' => 'day', ), 'default_format' => 'medium', 'tz_handling' => 'none', 'timezone_db' => 'UTC', 'op' => 'Save field settings', 'module' => 'date', 'widget_module' => 'date', 'columns' => array ( 'value' => array ( 'type' => 'datetime', 'not null' => false, 'sortable' => true, 'views' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Ejecutor', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_ejecutor', 'type' => 'text', 'widget_type' => 'text_textfield', 'change' => 'Change basic information', 'weight' => '5', 'rows' => 5, 'size' => '60', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_ejecutor][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_ejecutor' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_ejecutor][0][value', ), ), ), 'required' => 1, 'multiple' => '0', 'text_processing' => '0', 'max_length' => '200', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'text', 'widget_module' => 'text', 'columns' => array ( 'value' => array ( 'type' => 'varchar', 'length' => '200', 'not null' => false, 'sortable' => true, 'views' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Descripción del Bien o Servicio', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_bien', 'type' => 'text', 'widget_type' => 'text_textarea', 'change' => 'Change basic information', 'weight' => '6', 'rows' => '5', 'size' => 60, 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_bien][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_bien' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_bien][0][value', ), ), ), 'required' => 1, 'multiple' => '0', 'text_processing' => '0', 'max_length' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'text', 'widget_module' => 'text', 'columns' => array ( 'value' => array ( 'type' => 'text', 'size' => 'big', 'not null' => false, 'sortable' => true, 'views' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Unidad de Medida', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_unidadm', 'type' => 'content_taxonomy', 'widget_type' => 'content_taxonomy_select', 'change' => 'Change basic information', 'weight' => '7', 'show_depth' => 1, 'group_parent' => '0', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_unidadm' => array ( 'value' => '', ), ), 'required' => 1, 'multiple' => '0', 'save_term_node' => 0, 'vid' => variable_get('proyectos_operativos_extra_unidad', 0), 'parent' => '0', 'parent_php_code' => '', 'depth' => '', 'op' => 'Save field settings', 'module' => 'content_taxonomy', 'widget_module' => 'content_taxonomy_options', 'columns' => array ( 'value' => array ( 'type' => 'int', 'not null' => false, 'sortable' => false, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Ponderación de Importancia de la AE', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_ponderacion', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '8', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_ponderacion][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_ponderacion' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_ponderacion][0][value', ), ), ), 'required' => 1, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '%', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Distribución de Meta Fisíca', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_metaf', 'type' => 'cck_plan_fields_simple_field', 'widget_type' => 'cck_plan_fields_simple_elements', 'change' => 'Change basic information', 'weight' => '9', 'min' => '0', 'max' => '', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '0', 'value_1' => '0', 'value_2' => '0', 'value_3' => '0', 'value_4' => '0', 'value_5' => '0', 'value_6' => '0', 'value_7' => '0', 'value_8' => '0', 'value_9' => '0', 'value_10' => '0', 'value_11' => '0', 'total' => '0', '_error_element' => 'value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_metaf' => array ( 0 => array ( 'value' => 0, 'value_1' => 0, 'value_2' => 0, 'value_3' => 0, 'value_4' => 0, 'value_5' => 0, 'value_6' => 0, 'value_7' => 0, 'value_8' => 0, 'value_9' => 0, 'value_10' => 0, 'value_11' => 0, 'total' => 0, '_error_element' => 'value', ), ), ), 'required' => 1, 'multiple' => '0', 'cck_plan_fields_simple_type' => 'int', 'op' => 'Save field settings', 'module' => 'cck_plan_fields_simple', 'widget_module' => 'cck_plan_fields_simple', 'columns' => array ( 'value' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_1' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_2' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_3' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_4' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_5' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_6' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_7' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_8' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_9' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_10' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value_11' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Programación Financiera', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_programacion', 'type' => 'cck_plan_fields_field', 'widget_type' => 'cck_plan_fields_elements', 'change' => 'Change basic information', 'weight' => '11', 'min' => '0', 'max' => '', 'description' => '', 'default_value' => array ( 0 => array ( 'tid' => '', 'value' => '0', 'value_1' => '0', 'value_2' => '0', 'value_3' => '0', 'value_4' => '0', 'value_5' => '0', 'value_6' => '0', 'value_7' => '0', 'value_8' => '0', 'value_9' => '0', 'value_10' => '0', 'value_11' => '0', 'total' => '0', '_error_element' => 'value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_programacion' => array ( 0 => array ( 'tid' => '', 'value' => 0, 'value_1' => 0, 'value_2' => 0, 'value_3' => 0, 'value_4' => 0, 'value_5' => 0, 'value_6' => 0, 'value_7' => 0, 'value_8' => 0, 'value_9' => 0, 'value_10' => 0, 'value_11' => 0, 'total' => 0, '_error_element' => 'value', ), ), ), 'required' => 1, 'multiple' => '1', 'vid' => variable_get('proyectos_operativos_extra_partacc', 0), 'vtid' => array ( 9 => '9', 195 => '195', 284 => '284', 380 => '380', 490 => '490', 609 => '609', ), 'op' => 'Save field settings', 'module' => 'cck_plan_fields', 'widget_module' => 'cck_plan_fields', 'columns' => array ( 'tid' => array ( 'type' => 'int', 'not null' => false, 'sortable' => true, 'views' => true, ), 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_1' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_2' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_3' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_4' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_5' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_6' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_7' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_8' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_9' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_10' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), 'value_11' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Transferencias', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_transferencias', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '12', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_transferencias][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_transferencias' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_transferencias][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Créditos Adicionales', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_creditosa', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '13', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_creditosa][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_creditosa' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_creditosa][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'MCTI', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_mcti', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '14', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_mcti][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_mcti' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_mcti][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Venta de Activos', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_venta_act', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '15', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_venta_act][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_venta_act' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_venta_act][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Servicios', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_activos', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '16', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_activos][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_activos' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_activos][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Flujo de caja', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_flujocaja', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '17', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_flujocaja][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_flujocaja' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_flujocaja][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Venta de Productos', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_ventapro', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '18', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_ventapro][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_ventapro' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_ventapro][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Donaciones', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_donaciones', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '19', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_donaciones][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_donaciones' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_donaciones][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Gobernaciones', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_gobernacion', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '20', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_gobernacion][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_gobernacion' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_gobernacion][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Misión Ciencia', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_misionc', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '21', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_misionc][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_misionc' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_misionc][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'BID-FONACIT', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_bid_fona', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '22', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_bid_fona][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_bid_fona' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_bid_fona][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'FONACIT', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_fonacit', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '23', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_fonacit][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_fonacit' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_fonacit][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'FONDEN', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_fonden', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '24', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_fonden][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_fonden' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_fonden][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'LOCTI', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_locti', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '25', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_locti][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_locti' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_locti][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Fondo IDI', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_fondoidi', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '26', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_fondoidi][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_fondoidi' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_fondoidi][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Capital de Riesgo', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_capitalrie', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '27', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_capitalrie][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_capitalrie' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_capitalrie][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Infocentro', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_infocentro', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '28', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_infocentro][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_infocentro' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_infocentro][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Fidetel', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_fidetel', 'type' => 'number_decimal', 'widget_type' => 'number', 'change' => 'Change basic information', 'weight' => '29', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_fidetel][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_fidetel' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_fidetel][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'min' => '0', 'max' => '', 'precision' => '32', 'scale' => '0', 'decimal' => '.', 'prefix' => '', 'suffix' => '', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'number', 'widget_module' => 'number', 'columns' => array ( 'value' => array ( 'type' => 'numeric', 'precision' => '32', 'scale' => '0', 'not null' => false, 'sortable' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Ente', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_ente', 'type' => 'nodereference', 'widget_type' => 'nodereference_select', 'change' => 'Change basic information', 'weight' => '30', 'autocomplete_match' => 'contains', 'size' => 60, 'description' => '', 'default_value' => array ( 0 => array ( 'nid' => '', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_ente' => array ( 0 => array ( 'nid' => '', ), 'nid' => array ( 'nid' => '', ), ), ), 'required' => 0, 'multiple' => '0', 'referenceable_types' => array ( 'ente_planificador' => 'ente_planificador', 'accion_especifica' => 0, 'causas' => 0, 'situacion_ideal' => 0, 'descriptores' => 0, 'foda' => 0, 'ente_funciones' => 0, 'ente_institucional' => 0, 'objetivos_entes' => 0, 'objetivos_estrategicos' => 0, 'page' => 0, 'proyecto_estrategico' => 0, 'proyectos_operativos' => 0, 'direccionales' => 0, 'story' => 0, 'situacion_actual_preliminar' => 0, 'fdf' => 0, ), 'advanced_view' => '--', 'advanced_view_args' => '', 'op' => 'Save field settings', 'module' => 'nodereference', 'widget_module' => 'nodereference', 'columns' => array ( 'nid' => array ( 'type' => 'int', 'unsigned' => true, 'not null' => false, 'index' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'type_name' => 'accion_especifica', 'label' => 'Localización Geográfica', 'field_name' => 'field_accion_esp_localizacion', 'type' => 'content_taxonomy', 'widget_type' => 'content_taxonomy_select', 'change' => 'Change basic information', 'weight' => '31', 'show_depth' => 1, 'group_parent' => '0', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_localizacion' => array ( 'value' => '', ), ), 'required' => 1, 'multiple' => '0', 'save_term_node' => 0, 'vid' => variable_get('proyectos_operativos_extra_entidad', 0), 'parent' => '0', 'parent_php_code' => '', 'depth' => '', 'op' => 'Save field settings', 'module' => 'content_taxonomy', 'widget_module' => 'content_taxonomy_options', 'columns' => array ( 'value' => array ( 'type' => 'int', 'not null' => false, 'sortable' => false, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Latitud', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_latitud', 'type' => 'text', 'widget_type' => 'text_textfield', 'change' => 'Change basic information', 'weight' => '32', 'rows' => 5, 'size' => '30', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_latitud][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_latitud' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_latitud][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'text_processing' => '0', 'max_length' => '30', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'text', 'widget_module' => 'text', 'columns' => array ( 'value' => array ( 'type' => 'varchar', 'length' => '30', 'not null' => false, 'sortable' => true, 'views' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); $content['fields'][] = array ( 'label' => 'Longitud', 'type_name' => 'accion_especifica', 'field_name' => 'field_accion_esp_longitud', 'type' => 'text', 'widget_type' => 'text_textfield', 'change' => 'Change basic information', 'weight' => '33', 'rows' => 5, 'size' => '20', 'description' => '', 'default_value' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_longitud][0][value', ), ), 'default_value_php' => '', 'default_value_widget' => array ( 'field_accion_esp_longitud' => array ( 0 => array ( 'value' => '', '_error_element' => 'default_value_widget][field_accion_esp_longitud][0][value', ), ), ), 'required' => 0, 'multiple' => '0', 'text_processing' => '0', 'max_length' => '20', 'allowed_values' => '', 'allowed_values_php' => '', 'op' => 'Save field settings', 'module' => 'text', 'widget_module' => 'text', 'columns' => array ( 'value' => array ( 'type' => 'varchar', 'length' => '20', 'not null' => false, 'sortable' => true, 'views' => true, ), ), 'display_settings' => array ( 'label' => array ( 'format' => 'above', 'exclude' => 0, ), 'teaser' => array ( 'format' => 'default', 'exclude' => 0, ), 'full' => array ( 'format' => 'default', 'exclude' => 0, ), 4 => array ( 'format' => 'default', 'exclude' => 0, ), 'inline' => array ( 'format' => 'default', 'exclude' => 0, ), 'modal' => array ( 'format' => 'default', 'exclude' => 0, ), 'token' => array ( 'format' => 'default', 'exclude' => 0, ), ), ); return $content; }