Welcome Guest, Not a member yet? Register   Sign In
HMVC Modules
#10

[eluser]InsiteFX[/eluser]
You can use this one:
Code:
/*
| -------------------------------------------------------------------------
| Native spl_autoload_register() - by Kenneth Vogt
| -------------------------------------------------------------------------
|
| Here is an updated version of Phil Sturgeon’s code:
|
| Thanks to Phil Sturgeon and Kenneth Vogt.
|
| NOTE:
| Requires PHP 5.3.+
| -------------------------------------------------------------------------
| MODIFIED by InsiteFX
| As of CI 3.0 Dev - The constant EXT has been removed modified
| to use '.php' now instead of EXT.
| should work for all version of CI and PHP 5.3
| -------------------------------------------------------------------------
| Place at the bottom of your ./application/config/config.php file.
| -------------------------------------------------------------------------
*/
spl_autoload_register(function($class)
{
if (strpos($class, 'CI_') !== 0)
{
  if (file_exists($file = APPPATH . 'core/' . $class . '.php'))
  {
   include $file;
  }
  elseif (file_exists($file = APPPATH . 'libraries/' . $class . '.php'))
  {
   include $file;
  }
}
});

./application/core/
Code:
MY_Controller.php
Admin_Controller.php
Public_Controller.php


Messages In This Thread
HMVC Modules - by El Forum - 01-11-2012, 04:06 AM
HMVC Modules - by El Forum - 05-01-2012, 12:22 AM
HMVC Modules - by El Forum - 05-01-2012, 01:49 AM
HMVC Modules - by El Forum - 05-01-2012, 05:46 AM
HMVC Modules - by El Forum - 05-01-2012, 03:15 PM
HMVC Modules - by El Forum - 06-20-2012, 12:18 AM
HMVC Modules - by El Forum - 12-14-2012, 09:22 AM
HMVC Modules - by El Forum - 12-14-2012, 07:58 PM
HMVC Modules - by El Forum - 12-14-2012, 08:31 PM
HMVC Modules - by El Forum - 12-14-2012, 08:57 PM
HMVC Modules - by El Forum - 12-14-2012, 10:57 PM
HMVC Modules - by El Forum - 12-14-2012, 11:50 PM
HMVC Modules - by El Forum - 12-15-2012, 01:30 AM



Theme © iAndrew 2016 - Forum software by © MyBB