Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

permit core classes override #860

Closed
wants to merge 1 commit into from
Closed

permit core classes override #860

wants to merge 1 commit into from

Commits on Mar 21, 2013

  1. permit core classes override

    with this modification it is possible to write plugins that overrides most joomla core classes, for example JAccess, with a simple plugins like
    ```php
    <?php 
    	defined('_JEXEC') or die;
    
    
    
    
    	// include_once JPATH_SITE.'/overrides/access.php';
    	JLoader::register('JAccess', JPATH_SITE.'/overrides/access.php');
    
    
    
    
    		
    ?>
    ```
    G3z committed Mar 21, 2013
    Configuration menu
    Copy the full SHA
    64c5c4f View commit details
    Browse the repository at this point in the history