function signup_node_settings_form in Signup 7
Same name and namespace in other branches
- 5.2 signup.module \signup_node_settings_form()
- 6.2 includes/node_settings.inc \signup_node_settings_form()
- 6 includes/node_settings.inc \signup_node_settings_form()
Returns the form for the per-node signup settings.
This is shared by the settings page and the node edit page.
Parameters
stdClass $node: The fully loaded node object if we've got it.
string $node_type: The type of the node. When creating new content, the caller can know the node type, even if $node is NULL.
bool $has_date: Boolean flag indicating if this node (or site) has signup-aware date functionality, which is required for reminder emails to be in the form.
bool $include_buttons: Boolean flag indicating if the form should include its own submit buttons.
Return value
array The form array for the per-node signup settings.
1 call to signup_node_settings_form()
- signup_settings_form in includes/
admin.settings.inc - Form builder for the settings page under admin/config/people/signup
1 string reference to 'signup_node_settings_form'
- signup_node_settings_page in includes/
node_settings.inc - Page callback for the node/N/signups/settings subtab.
File
- includes/
node_settings.inc, line 28 - Code related to the per-node signup settings form.
Code
function signup_node_settings_form($form, $form_state, $node = NULL, $node_type = NULL, $has_date = FALSE, $include_buttons = FALSE) {
if (module_exists('token')) {
$signup_token_description = t('Supported string substitutions: %node_title, %node_url, %node_start_time, %user_name, %user_mail, %user_signup_info (additional information from the signup form), %cancel_signup_url (access to this link is denied to users without the "%cancel_own_signups" permission), and any tokens in the %replacement_tokens list.', array(
'%replacement_tokens' => t('Replacement tokens'),
'%cancel_own_signups' => t('cancel own signups'),
));
}
else {
$signup_token_description = t('Supported string substitutions: %node_title, %node_url, %node_start_time, %user_name, %user_mail, %user_signup_info (additional information from the signup form), and %cancel_signup_url (access to this link is denied to users without the "%cancel_own_signups" permission).', array(
'%cancel_own_signups' => t('cancel own signups'),
));
}
// Load the default admin form data for new nodes.
if (!$node || !$node->signup) {
$result = db_query("SELECT * FROM {signup} WHERE nid = :nid", array(
':nid' => 0,
))
->fetchObject();
// Instantiate a node object if necessary.
if (!is_object($node)) {
$node = new StdClass();
}
$node->signup_forwarding_email = $result->forwarding_email;
$node->signup_send_confirmation = $result->send_confirmation;
$node->signup_confirmation_email = $result->confirmation_email;
$node->signup_send_reminder = $result->send_reminder;
$node->signup_reminder_days_before = $result->reminder_days_before;
$node->signup_reminder_email = $result->reminder_email;
$node->signup_close_signup_limit = $result->close_signup_limit;
}
$form['signup_forwarding_email'] = array(
'#type' => 'textfield',
'#title' => t('Send signups to'),
'#default_value' => $node->signup_forwarding_email,
'#size' => 40,
'#maxlength' => 64,
'#description' => t('Email address where notification of new signups will be sent. Leave blank for no notifications.'),
);
$form['signup_send_confirmation'] = array(
'#type' => 'checkbox',
'#title' => t('Send confirmation'),
'#default_value' => $node->signup_send_confirmation,
);
$form['signup_confirmation_email'] = array(
'#type' => 'textarea',
'#title' => t('Confirmation email'),
'#default_value' => $node->signup_confirmation_email,
'#cols' => 40,
'#rows' => 6,
'#description' => t('Email sent to user upon signup. !token_description', array(
'!token_description' => $signup_token_description,
)),
);
if (module_exists('token')) {
module_load_include('inc', 'signup', 'includes/token_help');
_signup_token_help($form, 'signup_confirmation_token_fieldset');
}
if ($has_date) {
// Define a sub-tree to wrap the next 2 form elements together in an
// inline div for better display.
$form['signup_reminder'] = array(
'#prefix' => '<div class="container-inline">',
'#suffix' => '</div>',
);
$form['signup_reminder']['signup_send_reminder'] = array(
'#type' => 'checkbox',
'#title' => t('Send reminder'),
'#default_value' => $node->signup_send_reminder,
);
$options = array();
for ($i = 1; $i <= 60; $i++) {
$options[$i] = $i;
}
$node_type_name = isset($node_type) ? node_type_get_name($node_type) : '';
$form['signup_reminder']['signup_reminder_days_before'] = array(
'#type' => 'select',
'#default_value' => $node->signup_reminder_days_before,
'#options' => $options,
'#suffix' => !empty($node_type_name) ? t('day(s) before this %node_type', array(
'%node_type' => $node_type_name,
)) : t('day(s) before start time'),
);
$form['signup_reminder_email'] = array(
'#type' => 'textarea',
'#title' => t('Reminder email'),
'#default_value' => $node->signup_reminder_email,
'#cols' => 40,
'#rows' => 6,
'#description' => !empty($node_type_name) ? t('Email sent to user as a reminder before the %node_type starts. !token_description', array(
'%node_type' => $node_type_name,
'!token_description' => $signup_token_description,
)) : t('Email sent to user as a reminder before the start time. !token_description', array(
'!token_description' => $signup_token_description,
)),
);
if (module_exists('token')) {
module_load_include('inc', 'signup', 'includes/token_help');
_signup_token_help($form, 'signup_reminder_token_fieldset');
}
}
$form['signup_close_signup_limit'] = array(
'#type' => 'textfield',
'#title' => t('Signup limit'),
'#default_value' => $node->signup_close_signup_limit,
'#size' => 4,
'#maxlength' => 8,
'#description' => t('Maximum number of users who can sign up before signups are automatically closed. If set to 0, there is no limit.'),
'#prefix' => '<div id="signup-limit">',
'#suffix' => '</div>',
);
$form['signup'] = array(
'#type' => 'hidden',
'#value' => 1,
);
if ($include_buttons) {
$form['#node'] = $node;
$form['buttons']['submit'] = array(
'#type' => 'submit',
'#value' => t('Save configuration'),
);
$form['buttons']['reset'] = array(
'#type' => 'submit',
'#value' => t('Reset to defaults'),
);
$form['#submit'][] = 'signup_node_settings_form_submit';
}
return $form;
}