PHP Classes

PHP Module Loader: Load modular classes by name

Recommend this page to a friend!
  Info   View files Example   View files View files (3)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 155 This week: 1All time: 9,021 This week: 560Up
Version Licenses PHP version Categories
module-loader 1.0BSD License, GNU ...5.0PHP 5, Language
Description 

Author

This class can load modular classes by name.

It can take the name of a given module and loads the respective class from the modules directory.

The module class object is instantiated and returned to the application.

The class can also unload loaded modules, as well return the list of available modules.

Picture of Nick Daniels
  Performance   Level  
Name: Nick Daniels <contact>
Classes: 13 packages by
Country: United States United States
Age: 34
All time rank: 1108160 in United States United States
Week rank: 34 Up5 in United States United States Up
Innovation award
Innovation award
Nominee: 4x

Winner: 1x

Example

<?php
/**
 * A simple Module loader.
 * --------------------
 * Devel: Nick Daniels
 * Twttr: @ManicSec
 */
 
require_once 'Module.class.php';

###
## Start an instance of ModuleLoader
$module = ModuleLoader::startInst();

###
## Load a module by name `example`
$example = $module->loadModule("example");

###
## Check if Module loaded `example`
if(is_object($example) &&
   
$example->module_loaded())
    echo
"\r\nModule loaded!\r\n";
print_r($module->listModules());

###
## Unload Module, check if unloaded
if($module->unloadModule("example"))
    echo
"\r\nModule unloaded!\r\n";
print_r($module->listModules());


  Files folder image Files  
File Role Description
Files folder imagemodules (1 directory)
Accessible without login Plain text file example.php Example Example Implementation
Plain text file Module.class.php Class A simple Module Loader

  Files folder image Files  /  modules  
File Role Description
Files folder imageexample (1 file)

  Files folder image Files  /  modules  /  example  
File Role Description
  Plain text file example.php Class Example Module File

 Version Control Unique User Downloads Download Rankings  
 0%
Total:155
This week:1
All time:9,021
This week:560Up