Dokumentations- und Codestylearbeiten sowie Funktionserweiterung
* Die Funktion getGalleryLinks() in includes/galleryfunctions.php liefert die Menüeinträge und in index.php werden diese gerendert (fixes #16) * Der PHP-Code wurde so formatiert, dass phpcs --standard=Zend keine Fehler mehr findet (fixes #3) * Der PHP-Code wurde vollständig mit Doxygen dokumentiert und eine Doxygen-Konfiguration in doc/doxygen.conf hinterlegt (fixes #27)
This commit is contained in:
		
							parent
							
								
									e06f95874b
								
							
						
					
					
						commit
						a86aa84b6b
					
				
					 5 changed files with 1663 additions and 89 deletions
				
			
		|  | @ -1,31 +1,37 @@ | |||
| <?php | ||||
| /** | ||||
|  * Diese Datei behandelt AJAX-Requests. | ||||
|  * | ||||
|  * Copyright (c) 2007, 2008 Jan Dittberner <jan@dittberner.info> | ||||
|  * Jan Dittberner IT-Consulting & -Solutions, | ||||
|  * Cottbuser Str. 1, D-01129 Dresden | ||||
|  * | ||||
|  * This file is part of the ScrollingJQueryGallery component of the | ||||
|  * gnuviech-server.de Websitetools | ||||
|  * | ||||
|  * ScrollingJQueryGallery 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 3 of the | ||||
|  * License, or (at your option) any later version. | ||||
|  * | ||||
|  * ScrollingJQueryGallery 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 ScrollingJQueryGallery.  If not, see | ||||
|  * <http://www.gnu.org/licenses/>. | ||||
|  * | ||||
|  * Version: $Id$ | ||||
|  */ | ||||
| include("includes/galleryfunctions.php"); | ||||
|   /** | ||||
|    * @file | ||||
|    * Behandlung von AJAX-Requests. | ||||
|    * | ||||
|    * @author Jan Dittberner <jan@dittberner.info> | ||||
|    * @version \$Id$ | ||||
|    * | ||||
|    * Copyright (c) 2007, 2008 Jan Dittberner <jan@dittberner.info> | ||||
|    * Jan Dittberner IT-Consulting & -Solutions, | ||||
|    * Cottbuser Str. 1, D-01129 Dresden | ||||
|    * | ||||
|    * This file is part of the ScrollingJQueryGallery component of the | ||||
|    * gnuviech-server.de Websitetools | ||||
|    * | ||||
|    * ScrollingJQueryGallery 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 3 of the License, or (at your option) any later version. | ||||
|    * | ||||
|    * ScrollingJQueryGallery 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 ScrollingJQueryGallery.  If not, see | ||||
|    * <http://www.gnu.org/licenses/>. | ||||
|    */ | ||||
| 
 | ||||
|   /** | ||||
|    * Inkludiert die Funktionsbibliothek. | ||||
|    */ | ||||
| require 'includes/galleryfunctions.php'; | ||||
| 
 | ||||
| if (isset($_GET["imagename"]) && isset($_GET["galleryname"]) && | ||||
|     preg_match('/^[\w\d _-]+\.jp(e|)g$/', $_GET["imagename"]) && | ||||
|  |  | |||
		Reference in a new issue