Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

coder_page

Definition

coder_page()
contributions/coder/coder.module, line 473

Description

Implementation of code review page.

Code

<?php
function coder_page() {
  $output  = '<div class="coder-disclaimer">'. coder_help('coder#disclaimer', array()) .'</div>';
  $output .= drupal_get_form('coder_page_form');
  return $output;
}
?>