You are here

function anonymous_publishing_cl_theme in Anonymous Publishing 7

Implements hook_theme().

Register the form data theme into a table for the tabs listed.

File

modules/cl/anonymous_publishing_cl.admin.inc, line 1081
Menu callbacks for the CL tabs on the module admin page.

Code

function anonymous_publishing_cl_theme() {
  return array(
    'anonymous_publishing_cl_admin_moderation' => array(
      'render element' => 'form',
    ),
    'anonymous_publishing_cl_admin_blocked' => array(
      'render element' => 'form',
    ),
    'anonymous_publishing_cl_admin_spam' => array(
      'render element' => 'form',
    ),
    'anonymous_publishing_cl_admin_unverified' => array(
      'render element' => 'form',
    ),
  );
}