Skip to content
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.

Commit

Permalink
Merge branch '3.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
svenhoutmeyers committed Jul 10, 2015
2 parents 87c9299 + 3cc3c58 commit 43bdda8
Show file tree
Hide file tree
Showing 147 changed files with 8,353 additions and 2,330 deletions.
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
"description": "CultuurNet culturefeed Drupal module",
"license": "Apache-2.0",
"require": {
"cultuurnet/search": "~1.0",
"cultuurnet/cdb": "~2.0",
"cultuurnet/culturefeed-php": "~1.0"
"cultuurnet/search": "~1.2",
"cultuurnet/cdb": "~2.1",
"cultuurnet/culturefeed-php": "~1.5",
"cultuurnet/calendar-summary": "~1.0",
"cultuurnet/sitemap-xml": "~1.0"
},
"require-dev": {
"phing/phing": "~2.10"
Expand Down
160 changes: 100 additions & 60 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions culturefeed.admin.inc
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ function culturefeed_admin_settings() {
'#default_value' => variable_get('culturefeed_entry_api_path', CULTUREFEED_ENTRY_API_PATH),
);

$cdb_xml_versions = culturefeed_cdb_xml_versions();
$form['culturefeed_cdb_version'] = array(
'#default_value' => variable_get('culturefeed_cdb_version', CULTUREFEED_CDB_DEFAULT_VERSION),
'#description' => t('The culturefeed cdb schema version used by the entry API.'),
'#title' => t('Cdb schema version'),
'#type' => 'select',
'#options' => array_combine($cdb_xml_versions, $cdb_xml_versions),
);

$form['culturefeed_http_client_timeout'] = array(
'#type' => 'textfield',
'#title' => t('HTTP client timeout'),
Expand Down
Loading

0 comments on commit 43bdda8

Please sign in to comment.