summaryrefslogtreecommitdiff
path: root/requirements_graph.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2008-10-31 08:12:24 +0000
committerMax Kremmel <xing@synapse.plus.com>2008-10-31 08:12:24 +0000
commit8df459d14d565c30a62611dcf8bbdc79bc7f1b03 (patch)
tree23ceea4e8d11f7fc16b63ed51737129690036f68 /requirements_graph.php
parentbb28a558c6a7642ef2b7e4aa2a6e2d4db1149044 (diff)
downloadkernel-8df459d14d565c30a62611dcf8bbdc79bc7f1b03.tar.gz
kernel-8df459d14d565c30a62611dcf8bbdc79bc7f1b03.tar.bz2
kernel-8df459d14d565c30a62611dcf8bbdc79bc7f1b03.zip
renamed dep stuff to requirement stuff, clean up schema_inc files, move version info from info hash to registerPackageVersion90, move requirements to registerRequirements()
Diffstat (limited to 'requirements_graph.php')
-rw-r--r--requirements_graph.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/requirements_graph.php b/requirements_graph.php
new file mode 100644
index 0000000..5812120
--- /dev/null
+++ b/requirements_graph.php
@@ -0,0 +1,8 @@
+<?php
+require_once( '../bit_setup_inc.php' );
+$gBitSystem->verifyPermission( 'p_admin' );
+global $gBitInstaller;
+$gBitInstaller = &$gBitSystem;
+$gBitInstaller->verifyInstalledPackages();
+$gBitInstaller->drawRequirementsGraph( !empty( $_REQUEST['install_version'] ), ( !empty( $_REQUEST['format'] ) ? $_REQUEST['format'] : 'png' ), ( !empty( $_REQUEST['command'] ) ? $_REQUEST['command'] : 'dot' ));
+?>