Removed plugin-core functions.
| | |
| | | global $app,$conf; |
| | | |
| | | $subPath = 'plugins-enabled'; |
| | | if ($type == 'core') $subPath = 'plugins-core'; |
| | | //if ($type == 'core') $subPath = 'plugins-core'; |
| | | |
| | | $plugins_dir = $conf['rootpath'].$conf['fs_div'].$subPath.$conf['fs_div']; |
| | | $tmp_plugins = array(); |
| | |
| | | $app->uses('modules,plugins,file,services'); |
| | | // Load the modules that are im the mods-core folder |
| | | $app->modules->loadModules('core'); |
| | | // Load the plugins that are in the plugins-core folder |
| | | $app->plugins->loadPlugins('core'); |
| | | // Load the plugins that are in the f folder |
| | | //$app->plugins->loadPlugins('core'); |
| | | } |
| | | |
| | | |