An error occurred while loading the file. Please try again.
-
Côme Chilliet authored
Revert a change which was wrong in class pluglist. issue #6114
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003-2010 Cajus Pollmeier
Copyright (C) 2011-2019 FusionDirectory
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*!
* \file class_pluglist.inc
* Source code for the class pluglist
*/
/*!
* \brief This class contains all the function needed to make list
* of plugin and manage them
*
* \see class_plugin
*/
class pluglist
{
var $menu = '';
protected $iconmenu = '';
/*!
* \brief The plInfo result for all plugin, using class as key.
* Contains the plugin index in 'INDEX' and the path in 'PATH'
*/
var $info = [];
/*!
* \brief Foreign references on DNs
*/
var $dnForeignRefs = [];
/*!
* \brief Using the plugin index as a key, the class of the plugin.
*/
var $dirlist = [];
/*!
* \brief List plugin indexes of all plugin that the user have acl for
*/
protected $allowed_plugins = [];
protected $silly_cache = [];
/*!
* \brief List the plugins
*/
function __construct ()
{
global $class_mapping;
/* Fill info part of pluglist */
$classes = get_declared_classes();
/* To avoid plugins changing index when reloading */
sort($classes);