WARNING: This module created to develop custom structure appearance and requires PHP knowledge.

Installation

You need to apply included category.diff file patch to modify existing category module.
Or you can make needed changes yourself.
In function theme_category_view($node) added strings marked with +:

+    $use_phpview = FALSE;
    $use_views = FALSE;

+    if (module_exist('category_phpview')) {
+      $use_phpview = category_phpview_is_visible($node, $type);
+    }
    if (module_exist('category_views')) {
      $use_views = category_views_is_visible($node, $type);
    }
    
+    if ($use_phpview) {
+      $node->body .= category_phpview_render_nodes($node);
+    } else
    if ($use_views) {
      $node->body .= category_views_render_nodes($node);
    }
    else {
      $node->body .= category_render_nodes($nodes);
    }

Next, put category_phpview directory into modules/category.
Enable module in adminster/modules. 
At this moment there is no global configuration settings.
