Commit 4c7c489e57e6788526739c98a52c9a3884c41df1
1 parent
802e47c0
No longer used.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4489 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
0 additions
and
20 deletions
plugin-resources.php deleted
| 1 | -<?php | |
| 2 | - | |
| 3 | -require_once('config/dmsDefaults.php'); | |
| 4 | -require_once(KT_LIB_DIR . '/plugins/pluginutil.inc.php'); | |
| 5 | - | |
| 6 | -$sPath = KTUtil::arrayGet($_SERVER, 'PATH_INFO'); | |
| 7 | -if (empty($sPath)) { | |
| 8 | - print "Nothing there..."; | |
| 9 | - exit(1); | |
| 10 | -} | |
| 11 | - | |
| 12 | -if (!KTPluginUtil::resourceIsRegistered($sPath)) { | |
| 13 | - print "Accessing unregistered resource"; | |
| 14 | - exit(1); | |
| 15 | -} | |
| 16 | - | |
| 17 | -KTPluginUtil::readResource($sPath); | |
| 18 | -exit(0); | |
| 19 | - | |
| 20 | -?> |