gathercontent_admin.inc in GatherContent 7
Form builder function for module settings.
File
gathercontent_admin.incView source
<?php
/**
* @file
* Form builder function for module settings.
*/
/**
* Settings form builder.
*/
function gathercontent_api_admin() {
$account_name = variable_get('gathercontent_account_name');
$api_key = variable_get('gathercontent_api_key');
$project_id = variable_get('gathercontent_project_id');
// We use get_me() to ping the GatherContent API for now, since that is
// currently the fastest, according to GatherContent's devs.
// Since we want to display the API status everytime the user comes to this
// page, we're doing this here instead of the form's validation.
if (!empty($account_name) && !empty($api_key)) {
$resp = gathercontent_get_command('get_me');
if (isset($resp->is_error)) {
drupal_set_message(t('The GatherContent API could not be reached. Please verify your API credentials (Error message: %error_message)', array(
'%error_message' => $resp->error,
)), 'error', FALSE);
}
elseif ($resp->success == TRUE) {
drupal_set_message(t('We have succesfully contacted the GatherContent API.'), 'status', FALSE);
}
}
$form['gathercontent_account_name'] = array(
'#type' => 'textfield',
'#title' => t('GatherContent account name'),
'#default_value' => variable_get('gathercontent_account_name', ''),
'#description' => t("Your GatherContent account name. It's the first part of the GatherContent url when you're logged in, eg. https://[accountname].gathercontent.com."),
'#required' => TRUE,
);
$form['gathercontent_api_key'] = array(
'#type' => 'textfield',
'#title' => t('GatherContent API key'),
'#default_value' => variable_get('gathercontent_api_key', ''),
'#description' => t('Your GatherContent API key, required to fetch data from the GatherContent service. You can find it by clicking on the "API" tab of the GatherContent settings page.'),
'#required' => TRUE,
);
if (!empty($account_name) && !empty($api_key)) {
// Build an array of available GatherContent projects, if any.
$projects = gathercontent_get_command('get_projects');
$projects_list = gathercontent_projects_list($projects);
// Do some error checking first.
if (isset($projects->success) && $projects->success == TRUE) {
if (empty($project_id) || !array_key_exists($project_id, $projects_list)) {
drupal_set_message(t('Please select one of your available GatherContent projects.'), 'warning', FALSE);
}
elseif (!empty($project_id) && array_key_exists($project_id, $projects_list)) {
drupal_set_message(t('All set! Go ahead and <a href="/admin/config/content/gathercontent/nojs/import">import your GatherContent pages</a>.'), 'status', FALSE);
}
}
elseif (isset($projects->is_error) && $projects->is_error == TRUE) {
drupal_set_message(t('It looks like you didn\'t configure any GatherContent projects yet. <a href="@gc_link">Please do so first</a>, and then continue your import configuration here.', array(
'@gc_link' => 'https://' . $account_name . '.gathercontent.com/',
)), 'warning', FALSE);
}
$form['gathercontent_project_id'] = array(
'#title' => t('Select the GatherContent project from which you want to import pages:'),
'#type' => 'radios',
'#default_value' => !empty($project_id) && array_key_exists($project_id, $projects_list) ? $project_id : NULL,
'#options' => !empty($projects_list) ? $projects_list : NULL,
'#description' => isset($projects->is_error) && $projects->is_error == TRUE ? t('No projects found. ') : NULL,
'#required' => isset($projects->is_error) && $projects->is_error == TRUE ? FALSE : TRUE,
);
}
return system_settings_form($form);
}
Functions
Name | Description |
---|---|
gathercontent_api_admin | Settings form builder. |