Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
coder_admin_settings()
contributions/coder/coder.module, line 422
Implementation of settings page for Drupal 5.
<?php
function coder_admin_settings() {
$settings = _coder_get_default_settings();
$form = _coder_settings_form($settings, $system, $files);
$form['help'] = array(
'#type' => 'markup',
'#value' => t('After setting these defaults, use <a href="@url">coder</a> to perform code reviews.', array('@url' => url('coder'))),
'#weight' => -1,
);
$form['#submit'][] = 'coder_settings_form_submit';
return system_settings_form($form);
}
?>