node_content_form

Versions
5
node_content_form($node)
6 – 7
node_content_form($node, $form_state)

Implement hook_form().

Related topics

Code

modules/node/node.module, line 2940

<?php
function node_content_form($node, $form_state) {
  // It is impossible to define a content type without implementing hook_form()
  // so simply return an empty array().
  // @todo: remove this requirement.
  return array();
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.