first import
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
// This file is deprecated and can be removed.
|
||||
// Please remove include_once('popsu_taxonomies.features.inc') in popsu_taxonomies.module as well.
|
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* popsu_taxonomies.features.taxonomy.inc
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_taxonomy_default_vocabularies().
|
||||
*/
|
||||
function popsu_taxonomies_taxonomy_default_vocabularies() {
|
||||
return array(
|
||||
'popsu_popsu' => array(
|
||||
'name' => 'POPSU',
|
||||
'machine_name' => 'popsu_popsu',
|
||||
'description' => 'Liste des POPSU',
|
||||
'hierarchy' => '1',
|
||||
'module' => 'taxonomy',
|
||||
'weight' => '-10',
|
||||
'language' => 'und',
|
||||
'i18n_mode' => '0',
|
||||
'rdf_mapping' => array(
|
||||
'rdftype' => array(
|
||||
0 => 'skos:ConceptScheme',
|
||||
),
|
||||
'name' => array(
|
||||
'predicates' => array(
|
||||
0 => 'dc:title',
|
||||
),
|
||||
),
|
||||
'description' => array(
|
||||
'predicates' => array(
|
||||
0 => 'rdfs:comment',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
'popsu_villes' => array(
|
||||
'name' => 'Villes',
|
||||
'machine_name' => 'popsu_villes',
|
||||
'description' => 'Liste des villes',
|
||||
'hierarchy' => '0',
|
||||
'module' => 'taxonomy',
|
||||
'weight' => '-9',
|
||||
'language' => 'und',
|
||||
'i18n_mode' => '0',
|
||||
'rdf_mapping' => array(
|
||||
'rdftype' => array(
|
||||
0 => 'skos:ConceptScheme',
|
||||
),
|
||||
'name' => array(
|
||||
'predicates' => array(
|
||||
0 => 'dc:title',
|
||||
),
|
||||
),
|
||||
'description' => array(
|
||||
'predicates' => array(
|
||||
0 => 'rdfs:comment',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
@@ -0,0 +1,494 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* popsu_taxonomies.features.uuid_term.inc
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_uuid_features_default_terms().
|
||||
*/
|
||||
function popsu_taxonomies_uuid_features_default_terms() {
|
||||
$terms = array();
|
||||
|
||||
$terms[] = array(
|
||||
'name' => 'Strasbourg',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '12e6b6e0-ce67-451d-b268-47187d919e91',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/strasbourg',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Lille',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '15f4f785-d93d-41d3-a1cc-cb0e72ec83cc',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/lille',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Londres',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '18a859f3-6d0b-44c8-9bbd-1b7c6717071a',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/londres',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Vienne',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '2a022b49-e37f-49b5-ac17-37e56241fe94',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/vienne',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Barcelone',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '2c6cf2ca-12df-491d-8137-8069b703e3cc',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/barcelone',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Copenhague',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '30c56d94-6b8e-4462-a82d-42bdd2dec750',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/copenhague',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Bordeaux',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '3444e1b8-5a47-42a4-8a2d-d712bcd2ca5c',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/bordeaux',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Berlin',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '3c5a2869-2a4d-4582-83ef-10d3022f971a',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/berlin',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Nantes',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '44dff50d-a518-4739-ac62-1601df24421f',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/nantes',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Rennes',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '599ff601-6b11-4aa0-9a8c-15c3690c9722',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/rennes',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Amsterdam',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '5eca18a8-2f4d-4da6-9413-fbddf4441a96',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/amsterdam',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Turin',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '6153f802-cc2d-40f4-8206-608678980a2d',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/turin',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Paris',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '64088697-550c-484e-83ee-a3b0a8765612',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/paris',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Montpellier',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '7b9733a5-9e97-4681-8708-5bd19095c68a',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/montpellier',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'POPSU Europe',
|
||||
'description' => 'POPSU Europe',
|
||||
'format' => 'plain_text',
|
||||
'weight' => '4',
|
||||
'uuid' => '8876ad0a-c924-47f0-a244-7799d0e159ba',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_popsu',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'popsu/popsu-europe',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'POPSU E2',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '1',
|
||||
'uuid' => '90af57ff-9699-4767-ac94-2bc1cc5142d4',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_popsu',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'popsu/popsu-e2',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'POPSU E1',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => '9a271cc8-f4c3-4a19-9853-34a339153cfb',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_popsu',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'popsu/popsu-e1',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Toulouse',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'a6ee93cc-618f-469c-82c3-31e39a5df176',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/toulouse',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Lausanne',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'aa978480-235f-4228-9bd6-d9e363897e3f',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/lausanne',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Birmingham',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'b11cb388-b24f-4492-8e38-4c5d52b2610e',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/birmingham',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Montréal',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'b54155e1-2026-4614-9a79-20324defe863',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/montreal',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Malaga',
|
||||
'description' => '',
|
||||
'format' => 'full_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'c47fc0eb-64d6-43ba-90e4-04c8f75c9271',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/malaga',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Lyon',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'c5c21729-23f8-4ea7-8e53-d4781f609661',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/lyon',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'POPSU1',
|
||||
'description' => 'POPSU France 1',
|
||||
'format' => 'plain_text',
|
||||
'weight' => '0',
|
||||
'uuid' => 'da0652f3-308a-420c-9a58-1a356542994b',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_popsu',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'popsu/popsu1',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Rotterdam',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'e00aaee2-26f4-42f2-b5ae-21c34a55aa07',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/rotterdam',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Grenoble',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'e54dddd0-0f64-41b9-9efe-53f91f57af87',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/grenoble',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Bruxelles',
|
||||
'description' => '',
|
||||
'format' => 'full_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'ed4a9bed-4172-499a-93bf-554e5480f50f',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/bruxelles',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'POPSU2',
|
||||
'description' => 'POPSU France 2',
|
||||
'format' => 'plain_text',
|
||||
'weight' => '2',
|
||||
'uuid' => 'f23660ef-e6c4-4661-920b-01e0b1824d1c',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_popsu',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'popsu/popsu2',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Marseille',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'f6f848f5-38c9-4877-82f1-642e599aa3c4',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/marseille',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
$terms[] = array(
|
||||
'name' => 'Toulon',
|
||||
'description' => '',
|
||||
'format' => 'filtered_html',
|
||||
'weight' => '0',
|
||||
'uuid' => 'fe313bba-bd51-47d5-9307-1b6b92259d22',
|
||||
'language' => 'und',
|
||||
'i18n_tsid' => '0',
|
||||
'vocabulary_machine_name' => 'popsu_villes',
|
||||
'url_alias' => array(
|
||||
0 => array(
|
||||
'alias' => 'villes/toulon',
|
||||
'language' => 'und',
|
||||
),
|
||||
),
|
||||
);
|
||||
return $terms;
|
||||
}
|
@@ -0,0 +1,248 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* popsu_taxonomies.field_group.inc
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_field_group_info().
|
||||
*/
|
||||
function popsu_taxonomies_field_group_info() {
|
||||
$export = array();
|
||||
|
||||
$field_group = new stdClass();
|
||||
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
|
||||
$field_group->api_version = 1;
|
||||
$field_group->identifier = 'group_popsu_colloque_basic|node|popsu_colloque|form';
|
||||
$field_group->group_name = 'group_popsu_colloque_basic';
|
||||
$field_group->entity_type = 'node';
|
||||
$field_group->bundle = 'popsu_colloque';
|
||||
$field_group->mode = 'form';
|
||||
$field_group->parent_name = '';
|
||||
$field_group->data = array(
|
||||
'label' => 'Informations essentielles',
|
||||
'weight' => '0',
|
||||
'children' => array(
|
||||
0 => 'field_popsu_colloque_subtitle',
|
||||
1 => 'field_popsu_colloque_popsu',
|
||||
2 => 'field_popsu_colloque_ville',
|
||||
3 => 'title',
|
||||
),
|
||||
'format_type' => 'tab',
|
||||
'format_settings' => array(
|
||||
'formatter' => 'closed',
|
||||
'instance_settings' => array(
|
||||
'description' => '',
|
||||
'classes' => '',
|
||||
'required_fields' => 1,
|
||||
),
|
||||
),
|
||||
);
|
||||
$export['group_popsu_colloque_basic|node|popsu_colloque|form'] = $field_group;
|
||||
|
||||
$field_group = new stdClass();
|
||||
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
|
||||
$field_group->api_version = 1;
|
||||
$field_group->identifier = 'group_popsu_page_basic|node|popsu_page|form';
|
||||
$field_group->group_name = 'group_popsu_page_basic';
|
||||
$field_group->entity_type = 'node';
|
||||
$field_group->bundle = 'popsu_page';
|
||||
$field_group->mode = 'form';
|
||||
$field_group->parent_name = '';
|
||||
$field_group->data = array(
|
||||
'label' => 'Informations essentielles',
|
||||
'weight' => '0',
|
||||
'children' => array(
|
||||
0 => 'field_popsu_page_popsu',
|
||||
1 => 'title',
|
||||
),
|
||||
'format_type' => 'tab',
|
||||
'format_settings' => array(
|
||||
'formatter' => 'closed',
|
||||
'instance_settings' => array(
|
||||
'description' => '',
|
||||
'classes' => '',
|
||||
'required_fields' => 1,
|
||||
),
|
||||
),
|
||||
);
|
||||
$export['group_popsu_page_basic|node|popsu_page|form'] = $field_group;
|
||||
|
||||
$field_group = new stdClass();
|
||||
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
|
||||
$field_group->api_version = 1;
|
||||
$field_group->identifier = 'group_popsu_projet_basic|node|popsu_projet|form';
|
||||
$field_group->group_name = 'group_popsu_projet_basic';
|
||||
$field_group->entity_type = 'node';
|
||||
$field_group->bundle = 'popsu_projet';
|
||||
$field_group->mode = 'form';
|
||||
$field_group->parent_name = '';
|
||||
$field_group->data = array(
|
||||
'label' => 'Informations essentielles',
|
||||
'weight' => '0',
|
||||
'children' => array(
|
||||
0 => 'field_popsu_projet_popsu',
|
||||
1 => 'field_popsu_projet_ville',
|
||||
2 => 'field_popsu_projet_commune',
|
||||
3 => 'title',
|
||||
),
|
||||
'format_type' => 'tab',
|
||||
'format_settings' => array(
|
||||
'formatter' => 'closed',
|
||||
'instance_settings' => array(
|
||||
'description' => '',
|
||||
'classes' => '',
|
||||
'required_fields' => 1,
|
||||
),
|
||||
),
|
||||
);
|
||||
$export['group_popsu_projet_basic|node|popsu_projet|form'] = $field_group;
|
||||
|
||||
$field_group = new stdClass();
|
||||
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
|
||||
$field_group->api_version = 1;
|
||||
$field_group->identifier = 'group_popsu_publication_basic|node|popsu_publication|form';
|
||||
$field_group->group_name = 'group_popsu_publication_basic';
|
||||
$field_group->entity_type = 'node';
|
||||
$field_group->bundle = 'popsu_publication';
|
||||
$field_group->mode = 'form';
|
||||
$field_group->parent_name = '';
|
||||
$field_group->data = array(
|
||||
'label' => 'Informations essentielles',
|
||||
'weight' => '0',
|
||||
'children' => array(
|
||||
0 => 'field_popsu_publication_popsu',
|
||||
1 => 'field_popsu_publication_ville',
|
||||
2 => 'field_popsu_publication_soustitr',
|
||||
3 => 'title',
|
||||
),
|
||||
'format_type' => 'tab',
|
||||
'format_settings' => array(
|
||||
'formatter' => 'closed',
|
||||
'instance_settings' => array(
|
||||
'description' => '',
|
||||
'classes' => '',
|
||||
'required_fields' => 1,
|
||||
),
|
||||
),
|
||||
);
|
||||
$export['group_popsu_publication_basic|node|popsu_publication|form'] = $field_group;
|
||||
|
||||
$field_group = new stdClass();
|
||||
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
|
||||
$field_group->api_version = 1;
|
||||
$field_group->identifier = 'group_popsu_special_basic|node|popsu_special|form';
|
||||
$field_group->group_name = 'group_popsu_special_basic';
|
||||
$field_group->entity_type = 'node';
|
||||
$field_group->bundle = 'popsu_special';
|
||||
$field_group->mode = 'form';
|
||||
$field_group->parent_name = '';
|
||||
$field_group->data = array(
|
||||
'label' => 'Informations essentielles',
|
||||
'weight' => '0',
|
||||
'children' => array(
|
||||
0 => 'field_popsu_special_popsu',
|
||||
1 => 'field_popsu_special_typetaxo',
|
||||
2 => 'title',
|
||||
),
|
||||
'format_type' => 'tab',
|
||||
'format_settings' => array(
|
||||
'formatter' => 'closed',
|
||||
'instance_settings' => array(
|
||||
'description' => '',
|
||||
'classes' => '',
|
||||
'required_fields' => 1,
|
||||
),
|
||||
),
|
||||
);
|
||||
$export['group_popsu_special_basic|node|popsu_special|form'] = $field_group;
|
||||
|
||||
$field_group = new stdClass();
|
||||
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
|
||||
$field_group->api_version = 1;
|
||||
$field_group->identifier = 'group_popsu_themloc_basic|node|popsu_theme_local|form';
|
||||
$field_group->group_name = 'group_popsu_themloc_basic';
|
||||
$field_group->entity_type = 'node';
|
||||
$field_group->bundle = 'popsu_theme_local';
|
||||
$field_group->mode = 'form';
|
||||
$field_group->parent_name = '';
|
||||
$field_group->data = array(
|
||||
'label' => 'Informations essentielles',
|
||||
'weight' => '0',
|
||||
'children' => array(
|
||||
0 => 'field_popsu_themloc_popsu',
|
||||
1 => 'field_popsu_themloc_ville',
|
||||
2 => 'title',
|
||||
),
|
||||
'format_type' => 'tab',
|
||||
'format_settings' => array(
|
||||
'formatter' => 'closed',
|
||||
'instance_settings' => array(
|
||||
'description' => '',
|
||||
'classes' => '',
|
||||
'required_fields' => 1,
|
||||
),
|
||||
),
|
||||
);
|
||||
$export['group_popsu_themloc_basic|node|popsu_theme_local|form'] = $field_group;
|
||||
|
||||
$field_group = new stdClass();
|
||||
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
|
||||
$field_group->api_version = 1;
|
||||
$field_group->identifier = 'group_popsu_themtrans_basic|node|popsu_theme_trans|form';
|
||||
$field_group->group_name = 'group_popsu_themtrans_basic';
|
||||
$field_group->entity_type = 'node';
|
||||
$field_group->bundle = 'popsu_theme_trans';
|
||||
$field_group->mode = 'form';
|
||||
$field_group->parent_name = '';
|
||||
$field_group->data = array(
|
||||
'label' => 'Informations essentielles',
|
||||
'weight' => '0',
|
||||
'children' => array(
|
||||
0 => 'field_popsu_themtrans_popsu',
|
||||
1 => 'field_popsu_themtrans_villes',
|
||||
2 => 'title',
|
||||
),
|
||||
'format_type' => 'tab',
|
||||
'format_settings' => array(
|
||||
'formatter' => 'closed',
|
||||
'instance_settings' => array(
|
||||
'description' => '',
|
||||
'classes' => '',
|
||||
'required_fields' => 1,
|
||||
),
|
||||
),
|
||||
);
|
||||
$export['group_popsu_themtrans_basic|node|popsu_theme_trans|form'] = $field_group;
|
||||
|
||||
$field_group = new stdClass();
|
||||
$field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
|
||||
$field_group->api_version = 1;
|
||||
$field_group->identifier = 'group_popsu_ville_basic|node|popsu_ville|form';
|
||||
$field_group->group_name = 'group_popsu_ville_basic';
|
||||
$field_group->entity_type = 'node';
|
||||
$field_group->bundle = 'popsu_ville';
|
||||
$field_group->mode = 'form';
|
||||
$field_group->parent_name = '';
|
||||
$field_group->data = array(
|
||||
'label' => 'Informations essentielles',
|
||||
'weight' => '0',
|
||||
'children' => array(
|
||||
0 => 'field_popsu_ville_popsu',
|
||||
1 => 'field_popsu_ville_ville',
|
||||
2 => 'title',
|
||||
),
|
||||
'format_type' => 'tab',
|
||||
'format_settings' => array(
|
||||
'formatter' => 'closed',
|
||||
'instance_settings' => array(
|
||||
'description' => '',
|
||||
'classes' => '',
|
||||
'required_fields' => 1,
|
||||
),
|
||||
),
|
||||
);
|
||||
$export['group_popsu_ville_basic|node|popsu_ville|form'] = $field_group;
|
||||
|
||||
return $export;
|
||||
}
|
@@ -0,0 +1,63 @@
|
||||
name = POPSU Taxonomies
|
||||
description = POPSU - Vocabulaires de Taxonomy et champs
|
||||
core = 7.x
|
||||
package = POPSU
|
||||
php = 5.2.4
|
||||
version = 7.x-1.0-beta9
|
||||
project = popsu_taxonomies
|
||||
dependencies[] = features
|
||||
dependencies[] = i18n_taxonomy
|
||||
dependencies[] = options
|
||||
dependencies[] = taxonomy
|
||||
dependencies[] = uuid
|
||||
dependencies[] = uuid_features
|
||||
features[features_api][] = api:1
|
||||
features[field][] = node-popsu_colloque-field_popsu_colloque_popsu
|
||||
features[field][] = node-popsu_colloque-field_popsu_colloque_ville
|
||||
features[field][] = node-popsu_page-field_popsu_page_popsu
|
||||
features[field][] = node-popsu_point_ville-field_popsu_positionville_popsu
|
||||
features[field][] = node-popsu_point_ville-field_popsu_positionville_ville
|
||||
features[field][] = node-popsu_projet-field_popsu_projet_popsu
|
||||
features[field][] = node-popsu_projet-field_popsu_projet_ville
|
||||
features[field][] = node-popsu_projet_europe-field_popsu_projeteur_ville
|
||||
features[field][] = node-popsu_publication-field_popsu_publication_popsu
|
||||
features[field][] = node-popsu_publication-field_popsu_publication_ville
|
||||
features[field][] = node-popsu_special-field_popsu_special_popsu
|
||||
features[field][] = node-popsu_theme_local-field_popsu_themloc_popsu
|
||||
features[field][] = node-popsu_theme_local-field_popsu_themloc_ville
|
||||
features[field][] = node-popsu_theme_trans-field_popsu_themtrans_popsu
|
||||
features[field][] = node-popsu_theme_trans-field_popsu_themtrans_villes
|
||||
features[field][] = node-popsu_ville-field_popsu_ville_popsu
|
||||
features[field][] = node-popsu_ville-field_popsu_ville_ville
|
||||
features[taxonomy][] = popsu_popsu
|
||||
features[taxonomy][] = popsu_villes
|
||||
features[uuid_term][] = 12e6b6e0-ce67-451d-b268-47187d919e91
|
||||
features[uuid_term][] = 15f4f785-d93d-41d3-a1cc-cb0e72ec83cc
|
||||
features[uuid_term][] = 18a859f3-6d0b-44c8-9bbd-1b7c6717071a
|
||||
features[uuid_term][] = 2a022b49-e37f-49b5-ac17-37e56241fe94
|
||||
features[uuid_term][] = 2c6cf2ca-12df-491d-8137-8069b703e3cc
|
||||
features[uuid_term][] = 30c56d94-6b8e-4462-a82d-42bdd2dec750
|
||||
features[uuid_term][] = 3444e1b8-5a47-42a4-8a2d-d712bcd2ca5c
|
||||
features[uuid_term][] = 3c5a2869-2a4d-4582-83ef-10d3022f971a
|
||||
features[uuid_term][] = 44dff50d-a518-4739-ac62-1601df24421f
|
||||
features[uuid_term][] = 599ff601-6b11-4aa0-9a8c-15c3690c9722
|
||||
features[uuid_term][] = 5eca18a8-2f4d-4da6-9413-fbddf4441a96
|
||||
features[uuid_term][] = 6153f802-cc2d-40f4-8206-608678980a2d
|
||||
features[uuid_term][] = 64088697-550c-484e-83ee-a3b0a8765612
|
||||
features[uuid_term][] = 7b9733a5-9e97-4681-8708-5bd19095c68a
|
||||
features[uuid_term][] = 8876ad0a-c924-47f0-a244-7799d0e159ba
|
||||
features[uuid_term][] = 90af57ff-9699-4767-ac94-2bc1cc5142d4
|
||||
features[uuid_term][] = 9a271cc8-f4c3-4a19-9853-34a339153cfb
|
||||
features[uuid_term][] = a6ee93cc-618f-469c-82c3-31e39a5df176
|
||||
features[uuid_term][] = aa978480-235f-4228-9bd6-d9e363897e3f
|
||||
features[uuid_term][] = b11cb388-b24f-4492-8e38-4c5d52b2610e
|
||||
features[uuid_term][] = b54155e1-2026-4614-9a79-20324defe863
|
||||
features[uuid_term][] = c47fc0eb-64d6-43ba-90e4-04c8f75c9271
|
||||
features[uuid_term][] = c5c21729-23f8-4ea7-8e53-d4781f609661
|
||||
features[uuid_term][] = da0652f3-308a-420c-9a58-1a356542994b
|
||||
features[uuid_term][] = e00aaee2-26f4-42f2-b5ae-21c34a55aa07
|
||||
features[uuid_term][] = e54dddd0-0f64-41b9-9efe-53f91f57af87
|
||||
features[uuid_term][] = ed4a9bed-4172-499a-93bf-554e5480f50f
|
||||
features[uuid_term][] = f23660ef-e6c4-4661-920b-01e0b1824d1c
|
||||
features[uuid_term][] = f6f848f5-38c9-4877-82f1-642e599aa3c4
|
||||
features[uuid_term][] = fe313bba-bd51-47d5-9307-1b6b92259d22
|
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* Drupal needs this blank file.
|
||||
*/
|
Reference in New Issue
Block a user