Skip to content

Instantly share code, notes, and snippets.

@Bodge-IT
Forked from dongilbert/config.php
Created November 23, 2018 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bodge-IT/e4a6cd4a236520cef243bd2b5ec5134c to your computer and use it in GitHub Desktop.
Save Bodge-IT/e4a6cd4a236520cef243bd2b5ec5134c to your computer and use it in GitHub Desktop.
Override Core Joomla! Classes
<?php
/**
* @package Joomla.Plugin
* @subpackage System.Overrides
*
* @copyright Copyright (C) 2012 Don Gilbert. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
define('OVERRIDES', dirname(__FILE__).'/overrides');
// Use JLoader to register all the classes you want to override
JLoader::register('JClassToOverride', OVERRIDES.'/libraries/joomla/class/to/override.php', true);
silence is golden
<?php
/**
* @package Joomla.Plugin
* @subpackage System.Overrides
*
* @copyright Copyright (C) 2012 Don Gilbert. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('JPATH_BASE') or die;
/**
* System plugin to override core classes terms.
*
* @package Joomla.Plugin
* @subpackage System.Overrides
* @since 2.5
*/
class PlgSystemOverrides extends JPlugin
{
/* We do our thing in the __construct method
* so that our overridden classes will be
* available everywhere
*/
public function __construct(&$subject, $config)
{
parent::__construct($subject, $config);
include_once 'config.php';
}
}
<?xml version="1.0" encoding="utf-8"?>
<extension version="2.5" type="plugin" group="system" method="upgrade">
<name>plg_system_overrides</name>
<author>Don Gilbert</author>
<creationDate>Aug 2012</creationDate>
<copyright>(C) 2012 Don Gilbert. All rights reserved.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<authorEmail>don@electriceasel.com</authorEmail>
<authorUrl>www.electriceasel.com</authorUrl>
<version>2.5.6</version>
<description>This plugin will override classes contained in the included config file.</description>
<files>
<filename plugin="overrides">overrides.php</filename>
<filename>config.php</filename>
<filename>index.html</filename>
<folder>overrides</folder>
</files>
</extension>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment