function content_display_devel
Search API
| 7.x content.module | content_display_devel($cid) | 
| 6.x content.module | content_display_devel($cid) | 
Simply returns the fpm() results for the supplied content.
File
- modules/content/ content.module, line 605 
Code
function content_display_devel($cid) {
  $rtn = "";
  $content = content_load($cid);
  $rtn .= "   ";
  fpm($content);
  return $rtn;
}
