Files
@ f4e0e3085bf0
Branch filter:
Location: hot67beta/libraries/joomla/plugin/helper.php
f4e0e3085bf0
4.7 KiB
text/x-php
morepad
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | <?php
/**
* @version $Id: helper.php 10707 2008-08-21 09:52:47Z eddieajau $
* @package Joomla.Framework
* @subpackage Plugin
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();
/**
* Plugin helper class
*
* @static
* @package Joomla.Framework
* @subpackage Plugin
* @since 1.5
*/
class JPluginHelper
{
/**
* Get the plugin data of a specific type if no specific plugin is specified
* otherwise only the specific plugin data is returned
*
* @access public
* @param string $type The plugin type, relates to the sub-directory in the plugins directory
* @param string $plugin The plugin name
* @return mixed An array of plugin data objects, or a plugin data object
*/
function &getPlugin($type, $plugin = null)
{
$result = array();
$plugins = JPluginHelper::_load();
$total = count($plugins);
for($i = 0; $i < $total; $i++)
{
if(is_null($plugin))
{
if($plugins[$i]->type == $type) {
$result[] = $plugins[$i];
}
}
else
{
if($plugins[$i]->type == $type && $plugins[$i]->name == $plugin) {
$result = $plugins[$i];
break;
}
}
}
return $result;
}
/**
* Checks if a plugin is enabled
*
* @access public
* @param string $type The plugin type, relates to the sub-directory in the plugins directory
* @param string $plugin The plugin name
* @return boolean
*/
function isEnabled( $type, $plugin = null )
{
$result = &JPluginHelper::getPlugin( $type, $plugin);
return (!empty($result));
}
/**
* Loads all the plugin files for a particular type if no specific plugin is specified
* otherwise only the specific pugin is loaded.
*
* @access public
* @param string $type The plugin type, relates to the sub-directory in the plugins directory
* @param string $plugin The plugin name
* @return boolean True if success
*/
function importPlugin($type, $plugin = null, $autocreate = true, $dispatcher = null)
{
$result = false;
$plugins = JPluginHelper::_load();
$total = count($plugins);
for($i = 0; $i < $total; $i++) {
if($plugins[$i]->type == $type && ($plugins[$i]->name == $plugin || $plugin === null)) {
JPluginHelper::_import( $plugins[$i], $autocreate, $dispatcher );
$result = true;
}
}
return $result;
}
/**
* Loads the plugin file
*
* @access private
* @return boolean True if success
*/
function _import( &$plugin, $autocreate = true, $dispatcher = null )
{
static $paths;
if (!$paths) {
$paths = array();
}
$result = false;
$plugin->type = preg_replace('/[^A-Z0-9_\.-]/i', '', $plugin->type);
$plugin->name = preg_replace('/[^A-Z0-9_\.-]/i', '', $plugin->name);
$path = JPATH_PLUGINS.DS.$plugin->type.DS.$plugin->name.'.php';
if (!isset( $paths[$path] ))
{
if (file_exists( $path ))
{
//needed for backwards compatibility
global $_MAMBOTS, $mainframe;
jimport('joomla.plugin.plugin');
require_once( $path );
$paths[$path] = true;
if($autocreate)
{
// Makes sure we have an event dispatcher
if(!is_object($dispatcher)) {
$dispatcher = & JDispatcher::getInstance();
}
$className = 'plg'.$plugin->type.$plugin->name;
if(class_exists($className))
{
// load plugin parameters
$plugin =& JPluginHelper::getPlugin($plugin->type, $plugin->name);
// create the plugin
$instance = new $className($dispatcher, (array)($plugin));
}
}
}
else
{
$paths[$path] = false;
}
}
}
/**
* Loads the published plugins
*
* @access private
*/
function _load()
{
static $plugins;
if (isset($plugins)) {
return $plugins;
}
$db =& JFactory::getDBO();
$user =& JFactory::getUser();
if (isset($user))
{
$aid = $user->get('aid', 0);
$query = 'SELECT folder AS type, element AS name, params'
. ' FROM #__plugins'
. ' WHERE published >= 1'
. ' AND access <= ' . (int) $aid
. ' ORDER BY ordering';
}
else
{
$query = 'SELECT folder AS type, element AS name, params'
. ' FROM #__plugins'
. ' WHERE published >= 1'
. ' ORDER BY ordering';
}
$db->setQuery( $query );
if (!($plugins = $db->loadObjectList())) {
JError::raiseWarning( 'SOME_ERROR_CODE', "Error loading Plugins: " . $db->getErrorMsg());
return false;
}
return $plugins;
}
}
|