mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-08 09:43:01 +02:00
Plugins:
- display author and and author url (if present) on plugin admin page - uniformized versions/authors... for all plugins in svn - security fix (html escape name, version, uri, author... to avoid javascript injection which could automatically simulate click on Install) - added confirmation for install/uninstall plugins Web services: - web service explorer now caches method details in order to avoid unnecessary web calls - web service explorer can now send parameters as arrays - web service explorer uses now prototype.js version 1.5 - small improvements - added and use function bad_request (sends http status code 400) git-svn-id: http://piwigo.org/svn/trunk@1852 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
<?php
|
||||
/*
|
||||
<?php /*
|
||||
Plugin Name: Add Index
|
||||
Version: 1.1.0.0
|
||||
Version: 1.0
|
||||
Description: Add file index.php file on all sub-directories of local galleries pictures. / Ajoute le fichier index.php sur les sous-répertoires de galeries d'images locales.
|
||||
Plugin URI: http://www.phpwebgallery.net
|
||||
Author: PhpWebGallery team
|
||||
Author URI: http://www.phpwebgallery.net
|
||||
*/
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | PhpWebGallery - a PHP based picture gallery |
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<?php /*
|
||||
Plugin Name: Admin Advices !
|
||||
Version: 1.0.0
|
||||
Author: PhpWebGallery team
|
||||
Plugin Name: Admin Advices
|
||||
Version: 1.0
|
||||
Description: Give you an advice on the administration page.
|
||||
Plugin URI: http://www.phpwebgallery.net
|
||||
Author: PhpWebGallery team
|
||||
Author URI: http://www.phpwebgallery.net
|
||||
*/
|
||||
|
||||
add_event_handler('loc_end_page_header', 'set_admin_advice_add_css' );
|
||||
|
||||
@@ -3,6 +3,8 @@ Plugin Name: Multi view
|
||||
Version: 1.0
|
||||
Description: Allows administrators to view gallery as guests and/or change the language and/or theme on the fly. Practical to debug changes ...
|
||||
Plugin URI: http://www.phpwebgallery.net
|
||||
Author: PhpWebGallery team
|
||||
Author URI: http://www.phpwebgallery.net
|
||||
*/
|
||||
|
||||
add_event_handler('user_init', 'multiview_user_init' );
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<?php
|
||||
/*
|
||||
<?php /*
|
||||
Plugin Name: Event tracer
|
||||
Version: 1.0
|
||||
Description: For developers. Shows all calls to trigger_event.
|
||||
Plugin URI: http://www.phpwebgallery.net
|
||||
Author: PhpWebGallery team
|
||||
Author URI: http://www.phpwebgallery.net
|
||||
*/
|
||||
if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
|
||||
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
<?php /*
|
||||
Plugin Name: Hello World !
|
||||
Author: PhpWebGallery team
|
||||
Plugin Name: Hello World
|
||||
Version: 1.0
|
||||
Description: This example plugin changes the page banner for the administration page.
|
||||
Plugin URI: http://www.phpwebgallery.net
|
||||
Author: PhpWebGallery team
|
||||
Author URI: http://www.phpwebgallery.net
|
||||
*/
|
||||
|
||||
add_event_handler('loc_begin_page_header', 'hello_world_begin_header' );
|
||||
|
||||
Reference in New Issue
Block a user