[Phpcms-plugins-cvs] admin4phpCMS/modules/webdav class.module_webdav.php,NONE,1.1
Brought to you by:
mjahn
From: Martin J. <mj...@us...> - 2004-12-07 06:34:57
|
Update of /cvsroot/phpcms-plugins/admin4phpCMS/modules/webdav In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13210/modules/webdav Added Files: class.module_webdav.php Log Message: prepration of first Alpha-Preview --- NEW FILE: class.module_webdav.php --- <?php /** * DAV access to phpCMS driven website * * This module is based on the package PEAR::HTTP_WebDAV_Server * * <b>License</b> * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Martin Jahn <mj...@us...> * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @copyright Copyright (c) 2004, Martin Jahn * @version $Id: class.module_webdav.php,v 1.1 2004/12/07 06:34:47 mjahn Exp $ * @package admin4phpCMS * @subpackage module_user **/ /* * $Log: class.module_webdav.php,v $ * Revision 1.1 2004/12/07 06:34:47 mjahn * prepration of first Alpha-Preview * */ /** * include the webdav-class **/ //include_once (dirname (__FILE__).'/class.webdav.php'); /** * * @package admin4phpCMS * @subpackage module_webdav * @todo Get the class work completly **/ class module_webdav extends module { /** * Initialization of the module * * The module registers its own events and connects his methods to some actions **/ function init () { // connect to actions $this->_registerAction ('doParseParam', 'parseParam'); return true; } /** * Parse the URI-params * * @param array $actiondata $actiondata contains the URI-param-arrays **/ function parseParam (&$actiondata) { return true; } } ?> |