Source for file class.filebrowser.php
Documentation is available at class.filebrowser.php
* Logique du navigateur de fichiers
* LODEL - Logiciel d'Edition ELectronique.
* Home page: http://www.lodel.org
* E-Mail: lodel@lodel.org
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
* @author Ghislain Picard
* @copyright 2001-2002, Ghislain Picard, Marin Dacos
* @copyright 2003, Ghislain Picard, Marin Dacos, Luc Santeramo, Nicolas Nutten, Anne Gentil-Beccot
* @copyright 2004, Ghislain Picard, Marin Dacos, Luc Santeramo, Anne Gentil-Beccot, Bruno Cénou
* @copyright 2005, Ghislain Picard, Marin Dacos, Luc Santeramo, Gautier Poupeau, Jean Lamy, Bruno Cénou
* @copyright 2006, Marin Dacos, Luc Santeramo, Bruno Cénou, Jean Lamy, Mikaël Cixous, Sophie Malafosse
* @copyright 2007, Marin Dacos, Bruno Cénou, Sophie Malafosse, Pierre-Alain Mignot
* @licence http://www.gnu.org/copyleft/gpl.html
* @since Fichier ajouté depuis la version 0.8
* @version CVS:$Id: class.filebrowser.php 4006 2007-10-05 11:53:41Z malafosse $
define("UPLOADDIR",SITEROOT. "upload");
* Classe de logique du navigateur de fichier
* @author Ghislain Picard
* @copyright 2001-2002, Ghislain Picard, Marin Dacos
* @copyright 2003, Ghislain Picard, Marin Dacos, Luc Santeramo, Nicolas Nutten, Anne Gentil-Beccot
* @copyright 2004, Ghislain Picard, Marin Dacos, Luc Santeramo, Anne Gentil-Beccot, Bruno Cénou
* @copyright 2005, Ghislain Picard, Marin Dacos, Luc Santeramo, Gautier Poupeau, Jean Lamy, Bruno Cénou
* @copyright 2006, Marin Dacos, Luc Santeramo, Bruno Cénou, Jean Lamy, Mikaël Cixous, Sophie Malafosse
* @copyright 2007, Marin Dacos, Bruno Cénou, Sophie Malafosse, Pierre-Alain Mignot
* @licence http://www.gnu.org/copyleft/gpl.html
* @since Classe ajouté depuis la version 0.8
if (!$GLOBALS['lodeluser']['redactor']) die("ERROR: you don't have the right to access this feature");
* @param array &$context le contexte passé par référence
* @param array &$error le tableau des erreurs éventuelles passé par référence
if ($_POST['resize'] && $_POST['newsize']) return $this->resizeAction($context,$error);
if ($_POST['delete']) return $this->deleteAction($context,$error);
* check Mail and store files in attachments
require_once("imapfunc.php");
if (!$dh) die("ERROR: can't open upload directory");
while( ($file= readdir($dh))!== false ) {
if (in_array($file,$selectedfiles)) { // quite safe way, not efficient !
require_once("images.php");
if (!$dh) die("ERROR: can't open upload directory");
while( ($file= readdir($dh))!== false ) {
if (in_array($file,$selectedfiles)) { // quite safe way, not efficient !
} // logic FileBrowserLogic
if (!$dh) { // create the dir if needed
if (!@mkdir(UPLOADDIR,0777 & octdec($GLOBALS['filemask']))) die("ERROR: unable to create the directory \"UPLOADDIR\"");
if (!$dh) die("ERROR: can't open \"UPLOADDIR\" dir");
while( ($file= readdir($dh))!== false ) {
$localcontext['imagesize']= "$w x $h";
$localcontext['name']= $file;
$localcontext['checked']= $context['file'][$file] ? "checked=\"checked\"" : "";
|