An error occurred while loading the file. Please try again.
-
Côme Chilliet authored
Fixes of spaces by php-cs-fixer issue #5955
43447205
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003-2010 Cajus Pollmeier
Copyright (C) 2011-2016 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 = "";
var $iconmenu = "";
var $current = "";
/*!
* \brief The plInfo result for all plugin, using class as key.
* Contains the plugin index in 'INDEX' and the path in 'PATH'
*/
var $info = array();
/*!
* \brief Foreign references on DNs
*/
var $dnForeignRefs = array();
/*!
* \brief Using the plugin index as a key, the class of the plugin.
*/
var $dirlist = array();
/*!
* \brief List plugin indexes of all plugin that the user have acl for
*/
var $allowed_plugins = array();
var $silly_cache = array();
/*!
* \brief List the plugins
*/
function __construct ()
{
global $class_mapping;
/* Fill info part of pluglist */
$classes = get_declared_classes();